Search results

  1. N

    [solved] Server keeps restarting?

    the message is INFO, not error at all and not restart. you can increase the log level from INFO to NOTICE, then these message won't go into log file. lsws admin console->Server->Log ->Log Level:NOTICE in admin console->Actions->Real-Time Stats, you can check "Uptime", that tell you...
  2. N

    PHP LsPCI and APC ? ==> PHP LSAPI and APC ?

    sorry for confusion. should add lsphp suEXEC daemon mode: lsphp suEXEC daemon mode + xcache will meet the requirement closely. however, it's close, not exactly as 2) + 3). since it's per user; while for lsphp + suEXEC daemon, all users share one lsphp parent process. assume there are...
  3. N

    PHP LsPCI and APC ? ==> PHP LSAPI and APC ?

    xcache has opcode cache as well as variable cache, like apc. xcache is popular and famous enough, no less than apc. how can they communicate with each other (account?), can you give example? it's like all accounts may store php session in /tmp, but it's regarded safe enough - php script...
  4. N

    File uploads time out after random times

    so looks like an headache issue. can you post real-time stats and command line "top -c" result, see if we can get some clue from that.
  5. N

    File uploads time out after random times

    looks like it's default settings. please refer this wiki page: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:php_run_without_timeout see if helps with your case.
  6. N

    Litespeed vs Apache

    the main issue looks to be issues related to cloudlinux. since we're discussed on forum for some days, I'd like to review and summarize your case after a further investigation. I can ssh to your server to help you identify all the issues if it's ok at your side.
  7. N

    File uploads time out after random times

    take a screenshot of lsws admin console->Server->Tuning->Connection part see if can adjust some settings. also screenshot of server->External App->lsphp5
  8. N

    Can web Run multiple instances of LSAPI with the same PHP version ?

    please refer: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:multiple_phps_in_control_panel_lsws litespeed itslef is ok and ready for the question now is if it co-operates cloud linux well. maybe php-selector is the solution. --- looks like this has become our high...
  9. N

    PHP LsPCI and APC ? ==> PHP LSAPI and APC ?

    in lsws admin console, Server->General->Cloud Linux there are 4 choices: Disabled LVE CageFS CageFS without suEXEC "CaseFS" can meet your requirement 1) however 2) 3) is not possible in shared host environment which may have thousands of user accounts -- at the time being. there is a...
  10. N

    H-Sphere traffic_log not updating

    %%% I did some tests for"%v" under pure apache, it acts like litespeed: virtualhost's server name not showing there --- since my test env not good today, it may be wrong. it's best you can work out a test case which I can reproduce it. according...
  11. N

    H-Sphere traffic_log not updating

    agree. you may have to put CustomLog /hsphere/local/var/httpd/logs/traffic_log combinedio in every virtual host's configuration.
  12. N

    H-Sphere traffic_log not updating

    for a quick test, how about change to Log Format %{%s}t %{Host}i %I %O
  13. N

    H-Sphere traffic_log not updating

    got this link: http://www.psoft.net/HSdocumentation/sysadmin/web_traffic_calculation.html#built-in_traffic so the 2nd field should be domain name instead of IP address, do you know where and what the log format is defined ?
  14. N

    [solved] Locale

    then what's the memory_limit value in phpinfo() ?
  15. N

    [solved] Locale

    this suggested me a default setting for lsphp5 external app: lsws admin console->Server->External App->lsphp5-> Memory Soft Limit (bytes):250M Memory Hard Limit (bytes):300M can you increase the soft/hard limit to 300M/350M and see if working for apc.shm_size = 256M ?
  16. N

    [solved] Locale

    good point ... then I tried to enable APC, but result is same:
  17. N

    htaccess + auto_prepend_file failuere

    either of them may have that setting. refer http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride and http://www.litespeedtech.com/docs/webserver/config/general/#allowOverride
  18. N

    Page Load is very Slow

    if it's 1st request is slow, 2nd,3rd ... is fast, may due to "database warming up" issue. please refer this post: http://www.litespeedtech.com/support/forum/showthread.php?t=6533
  19. N

    htaccess + auto_prepend_file failuere

    /usr/local/lsws/DEFAULT/html>cat .htaccess php_value auto_prepend_file ../design/header.php php_value auto_append_file ../design/footer.php /usr/local/lsws/DEFAULT/html/callback>cat .htaccess php_value auto_prepend_file none php_value auto_append_file none...
  20. N

    htaccess + auto_prepend_file failuere

    here's testing source code: /test.php <script type="text/javascript" src="jquery.js"> </script> <div id="show"></div> <script type="text/javascript"> jQuery(function($) { $("#show").load("callback/list.php"); interval_stats = setInterval("$('#show').load('callback/list.php');", 5000)...
Top