Search results

  1. N

    [close] who can i reset lsws console web admin via ssh ?

    $SERVER_ROOT is where you install litespeed. e.g., if litespeed binary is /usr/local/lsws/bin/litespeed, then $SERVER_ROOT=/usr/local/lsws
  2. N

    FLV Streaming

    please refer wiki page: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed:wiki:feature:flv_streaming Flash Video (FLV) Streaming
  3. N

    [solved] Seo 301

    be sure "FileInfo" is allowed overridden at server and vhost level. in detail: Server->General->Allow Override: check FileInfo Virtual Hosts->your vhost->General->Allow Override: check FileInfo
  4. N

    [solved] Seo 301

    using rewriterule can achieve the goal, but not sure if it's the perfect way or not :) in the document root/.htaccess, add: RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.domain1\.com$ [OR] RewriteCond %{HTTP_HOST} ^domain1\.com$ [OR] RewriteCond %{HTTP_HOST}...
  5. N

    EAProc WaitQ Problem

    1. please take a screen shot of real-time stats 2.try manually install 4.0.20(auto update not enabled yet)
  6. N

    EAProc WaitQ Problem

    lsws can be used as shared hosting. in that case there may be thousands of accounts and websites are running under lsws. in that case php suExec is necessary for better security. but php non-suExec mode has better performance. since only 3 websites are hosted in your case, should choose php...
  7. N

    EAProc WaitQ Problem

    since only 3 websites, php non-suExec mode may be better for higher performance and not sure if you're experiencing ddos.
  8. N

    Anti-DDoS Blocked IP list?

    currently, you can search error.log with following pattern: reached per client soft connection limit reached per client hard connection limit to know IPs being banned by lsws, and the time stamp.
  9. N

    Fatal error: out of dynamic memory in yy_create_buffer

    2. no, should be not related. steps: 1.what's memory_limit value in phpinfo()? 2.increase memory_limit in php.ini. restart lsws, check phpinfo() again, if it increase as expected. 3.does the error disappear? 4. if not yet, increase lsphp5 's Memory Soft Limit (bytes) Memory Hard...
  10. N

    Set open_basedir directive per user

    I think no such dynamic way like php-cgi you showed in first post. while in .htaccess, you can put php_value open_basedir /home/mydomain/public_html:/tmp in lsws + lsphp, but not available in php-cgi way. also in lsws php suExec mode, each account can have its own unique php.ini, to set...
  11. N

    Lisence problem

    please follow this wiki: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:apache:ezcpanel How to convert your cPanel server to LiteSpeed in 20 minutes
  12. N

    [solved] Retry with new instance.

    in firefox's URL, keyin: about:config then search retry,I got 2 settings: network.proxy.autoconfig_retry_interval_max;300 network.proxy.autoconfig_retry_interval_min;5 not sure if it's related.
  13. N

    [Solved] xCache Error

    looks you run php in suExec mode, it's not a good idea to enable xcache/apc for it. how many lsphp processes are running? can estimate it with "ps -e|grep lsphp5|wc" each lsphp5 process will consume 70M+70M=140M xcache memory, and lsphp5 process will only run a short time once no more...
  14. N

    [Solved] xCache Error

    please set xcache.readonly_protection = on in php.ini I installed xcache 1.3.1, no 503 error when xcache.mmap_path = "/tmp/xcache" however I only did tests on phpinfo(). your 503 error is random, right? per my understanding, set xcache.mmap_path other than "/dev/zero", you must...
  15. N

    [Solved] xCache Error

    how about disable xcache, if 503 error disappear?
  16. N

    Opcode Cache

    right - "The key and content cache and the session functions have been removed" from http://eaccelerator.net/wiki/Release-0.9.6 however, read above release note of 0.9.6, 0.9.5.3 not support php 5.3 yet. not bad to try 0.9.5.3 as long as it's working well with your applications.
  17. N

    [Solved] xCache Error

    how much is current memory soft/hard limit of lsphp5? Server->External App->lsphp5-> Memory Soft Limit (bytes) Memory Hard Limit (bytes) increase it to 700M/750M(for example) and try again
  18. N

    [solved] Retry with new instance.

    I tried to set LSAPI_MAX_PROCESS_TIME (default value: 300 seconds) "In Self Managed Mode, LSAPI_MAX_PROCESS_TIME controls the maximum processing time allowed when processing a request. If a child process can not finish processing of a request in the given time period, it will be killed by the...
  19. N

    [Solved] xCache Error

    per xcache document: http://xcache.lighttpd.net/wiki/XcacheIni "xcache.mmap_path is a file path, not directory" but both the 2 examples you tried are directories.
Top