Search results

  1. M

    408.shtml, then lshttpd crashes

    It happens during a graceful restart, it was initiated by some one, grep "restart" you should find it.
  2. M

    Chroot and php.ini

    Changing the MYSQL socket location wont make MySQL to fail. I think it is not a easy task to install MySQL in chroot, and it is not necessary.
  3. M

    lsphp5 is using too much CPU

    make sure the /dev/shm is not full, have a cron job clean it every 5-10 minutes.
  4. M

    HTTP 403 for any PHP pages

    looks like PHP 4 is still being used. check the lsws/fcgi-bin/lsphp5 and the file it points, usually lsws/fcgi-bin/lsphp-5.2.9 .
  5. M

    Upgrading 3 to 4: mod_security rules need changing?

    Yes, both are supported.
  6. M

    HTTP 403 for any PHP pages

    double check your lsphp5 external application configuration from LSWS console.
  7. M

    How do I create a reverse proxy like Apache?

    You need to have your shared server admin to create a "Web Server" external application with name "127.0.0.1 : port" exactly match the address used in ProxyPass at server level, then comment out "ProxyPass", "ProxyPassReverse", add rewrite rule instead RewriteRule /(.*) http://127.0.0.1:port/$1 [p]
  8. M

    HTTP 403 for any PHP pages

    something wrong lsphp5 external application, check the log file when server start. Have you made any configuration change or to lsws/fcgi-bin/lsphp5 ?
  9. M

    HTTP 403 for any PHP pages

    You probably removed the script handler for .php5 from LSWS server configuration.
  10. M

    [AutoUpdate] Failed, updateagent exit code: 3

    Are you using 32bit binary for a 64 bit linux server?
  11. M

    Which php.ini?

    That's correct.
  12. M

    lsphp5 is using too much CPU

    You need to check those php process using too much CPU see if anything wrong. "strace" should help. Is /dev/shm mounted as tempfs?
  13. M

    xcache is not caching

    cross check the other thread.
  14. M

    lsphp5 is using too much CPU

    In suexec mode is each PHP instance uses its own independent in memory cache, not shared among PHP processes. I currently recommend eAccelerator with disk cache in /dev/shm .
  15. M

    upgrade to 4.0.1

    Yes, it is recommended to upgrade to 4.0.1, please download and run the installer.
  16. M

    .htaccess Deny From All Not working

    should not use both Deny from all allow from all only use one.
  17. M

    .htaccess Deny From All Not working

    You can try change it to Order deny, allow
  18. M

    suphpec?

    search the forum first, have been discussed before.
  19. M

    Works in Apache but not in litespeed

    It does not work LSWS now, you can change it to use rewrite for the same result like Rewrite ^(.*\.(htm|html))$ /cgi/tt_handler.pl/$1
  20. M

    Using SSL

    You need to check the configuration why HTTPS uses PHP4. search the forum on how to switch between PHP 4 and 5.
Top