Search results

  1. M

    Question About Actions->Compile PHP

    You have to set configuration options manually when you use the Actions->Compile PHP, you can make it matches the configuration options used by "Build matching PHP". If there is an option in Easy Apache for Mail headers option, you should update it with EasyApache, then "Build matching PHP".
  2. M

    [uds://tmp/lshttpd/lsphp5.sock] Request in process stage, fail with 503

    Initial build of 4.0.7 may have 503 error problem. latest one should be fixed, can you try again?
  3. M

    Licensing Curiosity

    I do not know how you came up with that conclusion, let's put it simple. Total cost of 1-CPU for two years: Owned license: $499+$99 = $598 Yearly license: $349 + $349 = $698 Monthly license: $32 * 24 = $768 Conclusion: Owned license save your money if you use it for more than two years.
  4. M

    LSWS 4.1RC1 release

    Available now.
  5. M

    error with PHP compiled with Suhosin

    http://www.hardened-php.net/suhosin/configuration.html
  6. M

    LSWS 4.0.7 has been released

    LiteSpeed Web Server 4.0.7 has been released Download LiteSpeed Web Server View Version History AutoUpdate will be activated later this week, if we do not receive serious bug report about this release. :)
  7. M

    poor compression (gzip - png)

    nginx uses chunked encoding, so the total length could be mis-calculated for some reason. It is not difficult to get the real response body length with command line tools. You can also try GZIP compress the png file from command line see what you can get.
  8. M

    kernel: Bad page state in process 'lshttpd'

    Never debugged a kernel bug, so I am not sure either. but I think it is should be a kernel configuration to let kernel dump a backtrace like the one I posted. The RHEL5 kernel should be stable, otherwise, we will be flooded with bug reports like yours. Is there any kernel parameter, tuning...
  9. M

    poor compression (gzip - png)

    gzip compression has no effect from both result, as expected. Checked with YSlow.
  10. M

    poor compression (gzip - png)

    Have you checked the response header with firebug for "Content-encode: gzip"? Is a png file compressed, just like a gif file? If it is compressed already, compress again wont make it any smaller.
  11. M

    Media wiki install problem

    I have no clue either. Maybe you can do some experiment with mediawiki code, like checking the return value with "var_dump".
  12. M

    kernel: Bad page state in process 'lshttpd'

    I think it is a kernel bug, find this http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.28.3 If you can, you should provide the kernel backtrace to help identify the problem.
  13. M

    poor compression (gzip - png)

    For static file, the compressed results are cached, http://www.litespeedtech.com/docs/webserver/config/tuning/#gzipCacheDir clear the cache directory, or touch the png file to trigger cache invalidation.
  14. M

    Media wiki install problem

    Syntax error in you code, following works for me.
  15. M

    poor compression (gzip - png)

    You can try increase the compression level, litespeed uses "1" as the default, you can try "9".
  16. M

    Site that works on Apache but not LiteSpeed - Need assistance

    .htaccess can only override certain configuration, not all of them, http://www.php.net/manual/en/ini.list.php directive with changeable "PHP_INI_SYSTEM" cannot be changed in .htaccess.
  17. M

    Site that works on Apache but not LiteSpeed - Need assistance

    suphp uses php.ini under user's directory, while LiteSpeed is like mod_php, uses global php.ini + .htaccess . LiteSpeed can be configured to use php.ini under user's directory, however, I think php.ini + .htaccess is more secure as the server admin can control which PHP feature is allowed, which...
  18. M

    Site that works on Apache but not LiteSpeed - Need assistance

    I think there was a PHP error, please try to let PHP output the error to the log file or the web browser. It is not a rewrite rule problem since you access the rewritten URL directly got the same result. Those rewrite rules in .htaccess does not rewrite URL "/gallery", if gallery directory does...
  19. M

    how to install Mod_Security

    If you use cPanel, you just enable mod_security for cPanel, if you manage Apache httpd.conf yourself, you can check modsecurity documentation for configuration directives.
  20. M

    Having problems with ffmpeg/mailparse.

    I think it will fix it. those modules were built for thread safe version of PHP. lsphp uses non-thread-safe version.
Top