Search results

  1. M

    Latest Version Error on Install

    sudo aptitude install ia32-libs
  2. M

    Php Lsapi 4.7

    You need to build your own through the web console. Make sure the 3.3.10 package is latest.
  3. M

    file_get_contents external URL

    Mabye you need to raise the Memory/Process limits for the lsphp external application. The earlier version does not really enforce those limits.
  4. M

    Latest Version Error on Install

    install the 32bit compatible library.
  5. M

    4.0b1 packages

    Please check the response header for "Cache-Control".
  6. M

    file_get_contents external URL

    have you upgrade PHP as well? LSWS won't affect a PHP internal function.
  7. M

    New benchmarks?

    How about create your own, after all, your own results should make most sense to you. ;)
  8. M

    managing vhosts

    add that feature request to our 4.0 release section for better tracking.
  9. M

    4.0b1 packages

    OK. the request rate throttling bug has been fixed in current 4.0b1 package. The litespeed is powered by 4.0b1 now, For the cache, you can try http://store.litespeedtech.com/, the page are cached for 5 minutes, the first access is slow, the subsequent access is instant. cache is not a...
  10. M

    entries in error_log

    That's normal, more likely caused by network problem when browser send the request. Like a modem drops the connection or something.
  11. M

    Awstats and webalizer

    Please check if the access log is there and the permission is OK.
  12. M

    entries in error_log

    It is normal.
  13. M

    entries in error_log

    "Process soft limit" could be the cause. You need to count the number of processes running as "nobody" during peak time. if it anywhere close to the limit, you should increase the limit.
  14. M

    entries in error_log

    Get rid of the trialling 'M', 250/300 should be enough for your setup.
  15. M

    entries in error_log

    You can try set PHP_LSAPI_CHILDREN a little higher than "Max Conn", sometimes, a PHP children process could be not responding due to canceled requests or something. like "max conn = 40", "PHP_LSAPI_CHILDREN=50".
  16. M

    php 5 config tuning

    2-CPU license may double the number. You can try increase maxconn with lsphp external app see if it helps or not. Just do not over tune it. 500 probably is the maximum. You need find out where is the bottle neck. some suggestions here...
  17. M

    Just a question regarding wrapper script and cPanel

    I think it is a better solution than the httpd wrapper. we are going to implement this. Next thing need to be done to make cPanel user easier to some how to patch easyapache to build PHP binary with LiteSpeed SAPI automatically whenever user rebuild Apache mod_php.
  18. M

    High load problems - please help

    OK. Just make sure they do not rate limiting the Gb port if a switch is used instead of a cross over cable. Is your site custom coded or some standard package like vB? Have you installed a PHP opcode cache? Is the PHP code and SQL optimized? Has MySQL being optimized? turn on thread cache and...
  19. M

    High load problems - please help

    What is connection between mysql and web server? It should be private Gb link. have you checked packet retransmission on your DB server? it should be very close to 0.0000%
  20. M

    CPU usage consumption

    Storing cache files on disk is not that bad if you server is not disk I/O bound or have shortage on disk space. PHP can load the cache from disk faster when PHP is restarted. Storing cache file in memory only when you have enough memory to spare, otherwise, it will cause problem, especially for...
Top