Search results

  1. M

    1 VHost Goes down?!

    I think it is a issue with the disk system of the host server, the disk I/O wait is too high on that server. you got bad neighbors that keep the disk too busy. If static files wont load fast, it should be the case. when you do strace use "-T -tt" option to print timestamps.
  2. M

    [Resolved] phpmotion lscgid: execve() cgi-bin/uu_upload.pl permission denied

    It is likely a permission problem with your perl interpreter. check ls -l /usr/bin/perl
  3. M

    Out of swapping space while reading request body!

    Can it be reliably reproduced? If yes, we can take a closer look at it.
  4. M

    PHP Stalls before loading page fast

    That looks like a MySQL DB connection, you should investigate why. Maybe try different version of MySQL driver and socket type (TCP/Domain).
  5. M

    PHP Stalls before loading page fast

    let truss print out timestamps, and the amount of time each system call. I can do that with strace, not sure about truss. Then, send a request that show the stall problem. from truss output, you can catch some pauses matching the stall period, log in that period is what you should pay...
  6. M

    PHP Stalls before loading page fast

    Try strace/truss/ktrace the lsphp5 process, it should show what stall PHP. Sometimes, it is a issue with DNS.
  7. M

    Latest litespeed version and jvideodirect

    It should be a issue with PHP, check if PHP has all required modules. check error log and stderr.log for errors.
  8. M

    [Resolved] Check LiteSpeed version from PHP

    if you can execute "/usr/local/lsws/bin/lshttpd -v" from PHP or command line, it will tell you which version of LSWS is installed.
  9. M

    503 errors with FireFox only

    The easiest way is to let PHP dump core files. set LSAPI_ALLOW_CORE_DUMP http://www.litespeedtech.com/php-litespeed-sapi.html for lsphp5 external app, then run "ulimit -a" from PHP script, make sure core limit is high enough. Make sure the directory holding the script has the correct...
  10. M

    Litespeed, Kloxo, CentoOS [Need help]

    Please try a rebuild of PHP, there is a bug in LSAPI 5.4 being addressed today. The default location of LSWS installation should be /usr/local/lsws, maybe /root/litespeed-version/ is the expanded LSWS package, you can remove it after installation.
  11. M

    [resolved] lsws not starting

    Sorry about that. It is usually the case when people cannot start LSWS. Please send your external IP to sales@... for verification.
  12. M

    [resolved] lsws not starting

    Then, you have tried the NULLed LSWS, and got black listed.
  13. M

    PHP Error Logging

    PHP crashed when serving that request. You can try load ionCube from php.ini instead of loading dynamically. check stderr.log as well, see if there is any related error message. you can also try to enable PHP core dump with LSAPI_ALLOW_CORE_DUMP env...
  14. M

    LS sets arbitrary limit on numb of htaccess rewrite rules

    There is a size limit of single rewrite rule. The limit has been increased in 4.0.16 build, you can download it by changing the version number in the download link.
  15. M

    [resolved] lsws not starting

    Are you using a trial key? maybe this IP has used trial a while ago, so it is not allowed, have to be cleared in our trial tracking DB. Please contact sales.
  16. M

    Apache 2 to litespeed

    try to execute "/usr/local/lsws/fcgi-bin/lsphp5 -i" from command line, see if you get any error and fix it.
  17. M

    [Resolved] Problems with large file uploads

    When upload the 300MB file, have you noticed that LSWS storing the request body in the swap directory? If you do, it means LSWS accepts and receives the request. You can turn on debug logging and check if LSWS send the request body to PHP successfully or not. There might be a problem on PHP side...
  18. M

    [Resolved] Compiling PHP through LS Web Interface

    Just create a symbolic link from bash to /bin/sh, it is not about account shell login configuration in /etc/passwd.
  19. M

    [Resolved] Compiling PHP through LS Web Interface

    Likely a problem with shell interpret coming with Solaris 10. Can you install bash, and make it default shell?
  20. M

    IonCube error

    your need to install curl-devel rpm in order to compile PHP with curl.
Top