Search results

  1. M

    PHP 5.3 LSAPI Support

    Yeah, LiteSpeed LSAPI is included with 5.3 release. Just do "./configure --with-litespeed"
  2. M

    Auto Index Question

    check the value of http://www.litespeedtech.com/docs/webserver/config/general/#autoIndexURI the create alias with Alias /<autoIndexURI> <path_to_directory_with_customized_auto_index_script>
  3. M

    LSW 4.0 upgraded failed CentOS 64 bits

    under /usr/local/lsws/bin/ or /opt/lsws/bin, do ./lshttpd.dbg.4.0 -d You have to install 4.0 first. core file will either under /tmp/lshttpd/bak_cores/ or current directory.
  4. M

    4.0 upgrade

    the vmstats error will be addressed in 4.0.1 release. For the /whm-server-status error, just create a empty file at /usr/local/apache/htdocs/whm-server-status, it will be addressed when we add support for apache style server status page. I cannot turn off 404 error log as it is required for...
  5. M

    Rewrite problem

    1. you need to use a regular expression only match to what you want and filter the others. like, exclude all string with "." in it. ^/([^\.]+)$ 2. it should work, maybe you need to append a slash to the target URL.
  6. M

    LSW 4.0 upgraded failed CentOS 64 bits

    try ./lshttpd.4.0.dbg -d from command line, if it crashed, send us the core file.
  7. M

    Auto Index Question

    If you use LSWS native configuration, you can customize "Auto Index URI" http://www.litespeedtech.com/docs/webserver/config/vhostgeneral/#autoIndexURI pointing to different script under each vhost. If use Apache configuration, have to use "Alias" directive to match different script to the...
  8. M

    Build Matching PHP Binary - Help required please.

    Try a "forced" update with rpm like rpm -Uvh --force ...
  9. M

    Rewrite problem

    That rewrite rule is for .htaccess, to use it at vhost level you need to add leading '/'. RewriteRule ^/example$ /example.html
  10. M

    I get this error every time I try to build matching php

    PM me a temp root login, I can take a look.
  11. M

    I get this error every time I try to build matching php

    Yes, just copy paste. it should increase the memory limit.
  12. M

    I get this error every time I try to build matching php

    try the following: try build PHP again.
  13. M

    Build Matching PHP Binary - Help required please.

    Maybe your VPS is out of memory when try to build it. So, you may need to stop Apache or other memory hungry processes before start building it.
  14. M

    Will there be official support for Rails >= 2.3

    Just replace the RailsRunner.rb with the one from LS 4.0. it should work with 3.3.24 release as well.
  15. M

    Build Matching PHP Binary - Help required please.

    gzip is not available on this server?
  16. M

    High Load & Startup Errors Galore!

    Please check "top" output find out which process using too much CPU cycles. More likely a problem with PHP.
  17. M

    4.0 upgrade

    download 4.0 package again, should be fixed.
  18. M

    .NET support

    .NET support is not in 4.0 release. maybe will be in 4.1, it has lower priority than some of other important features. 4.0 auto update will be enabled later when ready.
  19. M

    How to clear server log automatically?

    You can remove the error log file anytime you want. You can have LSWS create a new error log for each restart. http://www.litespeedtech.com/docs/webserver/config/general/#disableInitLogRotation set it to no.
Top