Search results

  1. M

    Cannot compile PHP5 with CURL

    It is in "gcc-c++" package. Just try "g++" from command line see if it works. Make sure you have installed 64bit curl-devel package
  2. M

    Cannot compile PHP5 with CURL

    You can also try adding "--with-libdir=lib64" configuration option.
  3. M

    Cannot compile PHP5 with CURL

    Have you installed "g++"?
  4. M

    PHP 6 compilation problem

    We will update LiteSpeed SAPI code to address this as well.
  5. M

    xCache: Multiple SHM issue

    Yes, it should work. each lshttpd process will start its own group of lsphp processes.
  6. M

    mod_headers/files compatibility

    <Files> should work in .htaccess as well.
  7. M

    Often restarted

    "core" or "core.*"
  8. M

    PHP 6 compilation problem

    sorry, should be php_output_end_all()
  9. M

    PHP 6 compilation problem

    Should replace php_end_ob_buffers() with php_end_ob_buffers() for PHP 6.
  10. M

    mod_headers/files compatibility

    Try header add in .htaccess, if the whole directory hold wmv, get rid of the "<files...>"
  11. M

    Often restarted

    Is there any core file under /tmp/lshttpd? send them to us.
  12. M

    mod_headers/files compatibility

    The configuration in the first post should work with latest 3.3.16 build. The "Header" directive was not supported.
  13. M

    awstats errors

    The kernel will apply the limit to a process by counting the total number of processes running as that user. The process limits configured at server level is using with start awstats process.
  14. M

    after upgrade, httpd_ls_bak error

    The problem is mainly caused by high I/O wait due to more than 20,000 core files under /usr/local/apache/htdoc/mrtg/ directory. After removing those core files, the server run pretty smooth. If notice more problem just let me know.
  15. M

    awstats errors

    Maybe you need to increase the "Process Soft/Hard limit", it may cause fork() to fail.
  16. M

    rewrite for missing files

    The same rule works with LSWS.
  17. M

    Often restarted

    Core file generated by non-debug build of lshttpd is not useful, should delete those core files after switching to the debug build. Debug build has the debug symbol, have negligible impact on performance of the server.
  18. M

    Often restarted

    switch to the debug build, then check core file under /tmp/lshttpd/ or /tmp/lshttpd/bak_cores/, send us the core file. Let us know which version of MacOS are you using.
  19. M

    after upgrade, httpd_ls_bak error

    We have noticed the "failed to start listener on address *:7080" problem on one server, we will have it addressed in 3.3.16. But the 100% cpu of lshttpd is something else, if you notice that again, please strace it, then "kill -USR2 <pid_of_100%_CPU_lshttpd>" to turn on debug logging, let it...
  20. M

    detect loop redirection?

    It is because the request has been redirect to /error404.html twice. Does /error404.html exist? Maybe create a /error403.html exactly same as the 404 page, and set 403 error page to that one.
Top