Search results

  1. N

    Litespeed + Cpanel + Tomcat

    please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:other-ext-apps:servlet-engine-setup see if it works for your case.
  2. N

    problem with setting http headers

    yes. looks same test result as mine this 2 looks most useful ones than others(within mod_headers)
  3. N

    [Resolved] Connection reset by peer and 503 error

    great. so your lsphp5 are running as a single user(say nobody)? can determine this by #ps -ef|grep lsphp5 in non-suEXEC mode, opcode cache(xcache etc)will work well since the cache is kept in memory as long as the parent lsphp5 is running.
  4. N

    [Resolved] Connection reset by peer and 503 error

    I'd suggest to comment out extension="xcache.so" extension=pdo_sqlite.so extension="memcache.so" if possible. see if any difference on performance and stability(number of 503 errors in error log) if you run php in normal suEXEC mode(suEXEC Worker), no much benefit to enable opcode cache...
  5. N

    [Resolved] Connection reset by peer and 503 error

    have you installed ClouldLinux ? 2-3 days ago I experienced 503 errors on a user's server, some domains(wordpress) can't work at all while some others works. Server->General->Cloud Linux: Not Set when I changed it to "Disabled", the 503 errors gone. also I removed a few php...
  6. N

    problem with setting http headers

    good research work done, thanks. will benefit for other users who search to here. lsws may improve Header RequestHeader (http://httpd.apache.org/docs/2.2/mod/mod_headers.html) function in future release.
  7. N

    [Resolved] Connection reset by peer and 503 error

    does this 503 error happen on a particular domain only(or not)? does it have any relation to "HEAD" request ?
  8. N

    problem with setting http headers

    can you give a example how to add headers to ColdFusion in apache ? so make the issue more clear.
  9. N

    problem with setting http headers

    set these headers in php script: http://www.php.net/manual/en/function.header.php this should be same behavior under apache.
  10. N

    problem when switch webserver to litespeed on directadmin

    have you done "build matching php for litespeed" i.e. lsphp5? if done, how did you build it ?
  11. N

    problem when switch webserver to litespeed on directadmin

    this looks correct. can you put phpinfo.php somewhere and check the value of session.save-path ? the document: php.net/manual/en/session.configuration.php#ini.session.save-path
  12. N

    [Resolved] Urgent: my server host says litespeed free trial has disabled my site

    check if /usr/local/apache/bin/httpd_ls_bak exists if exist, #mv /usr/local/apache/bin/httpd_ls_bak /usr/local/apache/bin/httpd see if back to normal
  13. N

    problem when switch webserver to litespeed on directadmin

    what's the setting of lsws web admin->Server->General->PHP suEXEC ?
  14. N

    Occasional 500 Internal Server Errors

    for php 5.4.x and 5.5.x, please try Zend OPCache: http://php.net/manual/en/opcache.installation.php
  15. N

    Document Root Home Directory

    should be permission problem. check which user litespeed process is running as: #ps -ef|grep litespeed default is nobody if nobody user has no permission to access /home/{my_usernames_here}/html/, will return 404 Not Found.
  16. N

    Question about Keep-Alive:timeout=5, max=100

    I thought it can be set via lsws web admin->Server->Tuning Max Keep-Alive Requests Keep-Alive Timeout (secs) after testing, it looks like Keep-Alive:timeout=5, max=100 no change
  17. N

    cmd_buildmatchingphp.php Error

    can reproduce same error on our lab's WHM/cPanel. tried to trace it, but no result yet ... will inform our staff to look into it
  18. N

    Help diagnosing slient PHP error

    >Some multiple domain registrations are failing silently, without anything being logged anywhere. then how do you know the failures, are there any entries in access log ?
  19. N

    Help diagnosing slient PHP error

    this may help: lsws web admin -> Actions -> Toggle Debug Logging
  20. N

    lshttpd "nobody" process

    when the process take up 99% CPU, you can strace it #strace -p pid-of-the-process for a while, to know about what it's doing. paste the output here if not long.
Top