Search results

  1. N

    disbale php

    did tests on apache virtual host. the result is a bit of different with yours. my result is: php_value engine on/off not work at all when put in .htaccess look at http://php.net/manual/en/configuration.changes.php again, should be php_admin_value engine on/off but php_admin_value not...
  2. N

    Slow Respond

    the real-time stats looks normal. the speed looks normal too. have you compared with the speed under apache ? and the traffic looks low by the real-time stats. what's your expectation how fast it should be ? since it's PHP powered site, you've to optimize php, mysql etc. lsws...
  3. N

    Slow Respond

    currently it's 10. increase to 15 or 20 or even higher ... then watch Real-Time Stats
  4. N

    Slow Respond

    External Application first APVH_xxx_Suphp: Eff Max:10 Pool:10 In Use:10 WaitQ:1 in this case, please increase Server->General->PHP suEXEC Max Conn:10 and restart lsws
  5. N

    Slow Respond

    need more info to give any advice. can you take a screenshot of lsws web admin console ->Actions->Real-Time Stats when you feel the site slow
  6. N

    disbale php

    http://php.net/manual/en/configuration.changes.php " You will need "AllowOverride Options" or "AllowOverride All" privileges to do so." tested on a native virtual host, when set AllowOverride -Options and in vhost's reriterule, php_flag engine off then in .htaccess php_flag engine...
  7. N

    Occasional 500 Internal Server Errors

    please try to disable APC or use xcache. APC latest stable version may not work well with php 5.4 is it lsapi 6.6(latest) ? /usr/local/lsws/fcgi-bin/lsphp5 -i |head can tell the version
  8. N

    [Resolved] Moving licences between servers

    this wiki page https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:licenses:transfer-or-release-a-license should address the issue you mentioned. if not, please point out so we can improve the document. the steps should be 1. on Server A, run /usr/local/lsws/bin/lshttpd -m 2. on...
  9. N

    Problems with LiteSpeed private cache

    in fact, cache for magento already in our develop todo list, and maybe in next 1 or 2 release. your suggestion, like which cache feature is most wanted, may help our developer to decide the top priority of various cache options.
  10. N

    Litespeed + varnish

    lsws webadmin -> Server -> General -> Use Client IP in Header
  11. N

    Litespeed cache not obeying .htaccess rules

    yes. through CacheEnable private or RewriteRule /a-b-c-d.php - [E=Cache-Control:private] or RewriteRule /a-b-c-d.php - [E=Cache-Control:max-age=60] #for public cache also disable particular URL's public cache by RewriteRule /a-b-c.php - [E=Cache-Control:no-cache] and not possible...
  12. N

    Problems with LiteSpeed private cache

    RewriteRule .* - [E=Cache-Control:private,L] Since you've enabled private cache globally, this directive is not required. and, this "L" may break magento logic. without "L" will be better. I've more experience with public cache. As of I know, quite a few busy production servers have been...
  13. N

    Litespeed cache not obeying .htaccess rules

    Sorry for reply late. today have time to test with private cache following this thread. >Question 1: how do you purge the private cache copy? same way to purge public cache. both public and private cache have a common cache root. the easy way to purge cache is 1)delete all sub folders /...
  14. N

    Wrong Permission

    what's the output if run the script under command line: #/usr/local/lsws/fcgi-bin/lsphp5 test.php #/usr/local/lsws/fcgi-bin/lsphp4 test.php
  15. N

    [Resolved] xcache resetting cache every 36 seconds if left idle

    so the root cause is parent lsphp5 process killed and started a new one. your setting Max Idle Time 1200 not work. I think it's related to cloulinux php.
  16. N

    [Resolved] xcache resetting cache every 36 seconds if left idle

    received. can you modify the test script, to print posix_getppid() posix_getpid() posix_getpgid() posix_getuid ()
  17. N

    Wrong Permission

    then can you try lsphp-5.3.27 ? #cd /usr/local/lsws/fcgi-bin #ln -sf lsphp-5.3.27 lsphp5 restart lsws, should back to 5.3.27
  18. N

    Wrong Permission

    not sure if this test script helps to trace the issue: <?php echo exec('umask'); ?> run it under apache and litespeed, if the output same or not?
  19. N

    [Resolved] Workergroup - Keeping parent processes alive

    now I think I'm clear about your issues. trying to reproduce it.... I've set up a simplest test env -- only 1 apache vhost. the test script is in this thread http://www.litespeedtech.com/support/forum/showthread.php?t=7831 it meets the 2 goals you mentioned after I set "Max Idle Time"...
  20. N

    [Resolved] xcache resetting cache every 36 seconds if left idle

    the settings looks ok. can you put a phpinfo() along with the test php script in 1st post of this thread, to confirm it's lsapi 6.6 ? the test script is working as expected under my simplest test env (only 1 apache vhost) . if not working with your much complicated env, maybe it's relating...
Top