Search results

  1. M

    [Resolved] 4.0.14 Breaks cPanel HTTP bandwidth tracking

    Can you send a sample log file to bug@litespeed... ?
  2. M

    [RESOLVED] Core dumps not generated in PHP 5.3

    check http://linux.die.net/man/5/core also check lsws/fcgi-bin/ directory for core files.
  3. M

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    just try running lsws/bin/lshttpd directly, check log files under lsws/logs/
  4. M

    [RESOLVED] Core dumps not generated in PHP 5.3

    You can run "ulimit -a" from PHP see if you get none-zero "core file size". If it is non-zero, you should check the permission of the directory that core dump file should be created in.
  5. M

    request: control of chunk size and forcing Transfer-Encoding chunked

    Chunked encoding should be avoided when possible, it is slow. And I doubt it will make the page rendered faster over regular response with content-length header.
  6. M

    Java/Flash Upload file

    It is possible to assign dedicate PHP group for upload scripts. Your batch job problem is not related to LiteSpeed, maybe somehow to make sure the first batch is finished then start the second.
  7. M

    request: control of chunk size and forcing Transfer-Encoding chunked

    chunked encoding cannot be control in any way.
  8. M

    How to convert custom Apache module?

    How about a LSAPI application? pretty much like a FastCGI application.
  9. M

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    The shell script is not compatible with the shell of the linux in your NAS, can you install bash? You can ignore the lswsctrl script, just run lshttpd directly.
  10. M

    [Resolved] DirectoryMatch and Directory causes all 404s to become 403s

    How was <Directory ...> directives are added? If you add those via Apache Style configuration in LSWS web console, it wont work properly, you should use LSWS native Context configuration instead.
  11. M

    Java/Flash Upload file

    Just set log level to "DEBUG", debug level to "HIGH" from LSWS web console, restart LSWS, then try one upload. you can track the upload progress in the log, see if it really fully uploaded. If it is, it must be the backend processing script issue, if you process the upload with PHP, make sure...
  12. M

    [Resolved] LSWS latest with PHP 5.2.13

    You need to explicitly turn on "register_long_arrays" by set register_long_arrays On in php.ini
  13. M

    Java/Flash Upload file

    You need to find out that it is a problem with Flash/Java-script or server side. For trouble shooting server side issue, you can try different web server, like Apache, you can enable debug logging of LSWS, etc. For client side issue, we cannot do anything about it.
  14. M

    Licensing Issue on new VPS

    Just try lsws/bin/lshttpd -r with the serial number from command line. http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:license:all_about_licenses#purchase_license_and_install_enterprise_version
  15. M

    [Resolved] One VH with Different PHP Version

    It does not save resources, but provide some kind of isolation, one vhost does not affect another one.
  16. M

    Installation failed on FreeBSD 8.0

    Are you using the 64bit freebsd package?
  17. M

    Installation failed on FreeBSD 8.0

    Please install freebsd 6 compatible libraries, it is under ports/misc/compat6x.
  18. M

    [Resolved] One VH with Different PHP Version

    Yes, if you want to change PHP version VH-wide, you can do that. If you only change it for certain PHP script, you need to play with the MIME types.
  19. M

    [Resolved] One VH with Different PHP Version

    Are you using LSWS with Apache httpd.conf or just configure everything natively from LSWS web console? Basically, you assign PHP version with MIME type application/x-httpd-php4 , application/x-httpd-php5 , etc. Those MIME types are added by LSWS with you define a script handler for suffix php4...
Top