Search results

  1. M

    Standard 2.2.5 + LSAPI + Rails uses up all processes

    Also, please make sure the latest ruby-lsapi has been used. If you have installed it manually, then switch to gem installation, you need to remove the file installed manually.
  2. M

    cPanel migration - .htaccess (sus.page)

    We implement something similar to the rewrite rules you suggested in 3.0 release.
  3. M

    Standard 2.2.5 + LSAPI + Rails uses up all processes

    Maybe the ruby processes gets into a state that cannot be killed by normal SIGTERM signal. Can you "truss" or "ktrace" those ruby processes to check the state of those hanging processes. It would be best if we can logon to your server to check though ruby processes when it happenes.
  4. M

    Installing with Cpanel

    See if there is a "shop" directory accessible through FTP, and upload .htaccess file there. You can also try to change the .htaccess file under public_html/, it will affect all php scripts in your site though.
  5. M

    Directory Protection works "too good" (Apache migration)

    Which directory was protected exactly? <web2-domain>/webalizer/ and all other subdirs under <web2-domain>/, except <web2-domain>/ itself?
  6. M

    cPanel migration - .htaccess (sus.page)

    LiteSpeed has its own status/ realtime report page in the admin page, not sure how to make it available. It just a php script parses /tmp/lshttpd/.rtreprot file. 7. We can hard code those rules into vhosts configured via httpd.conf, when bandwidth logging is set for that vhost. if there is no...
  7. M

    ERROR when I'm trying to compile PHP5 with Litespeed

    We had this problem on some OS as well, seems the Makefile generated by PHP on some system want to install "mod_php.so" or something. We are not exactly sure why and have not got time to investigate. If you need to install php libraries and other files, you can build a simple CLI version then...
  8. M

    Authentication Error with 3.0 on FreeBSD 6

    Jetro, I tried a fresh installation of 3.0beta on FreeBSD6.1 under vmware, works fine. The binary is built on FreeBSD 6.1, are you using FreeBSD 6.0?
  9. M

    DELETE request not working

    Fix will be in 2.2.6. If you want to try rewrite, you can add rewrite rules in public/.htaccess to the Rails Context.
  10. M

    Litespeed and aWstats: friend or foe?

    Spaces in VH name issue will be addressed in 3.0 release. Thanks for the links. Should be helpful.
  11. M

    Litespeed and aWstats: friend or foe?

    If you want to awstats on a specific log file, you need to run it manually, or copy your full log file to the current log file. LiteSpeed automate the whole process, so the awstats will get overwritten during the update.
  12. M

    DELETE request not working

    OK, this is fixed. that because of the 404 handler used for Rails requests. If you use rewrite rule to dispatch rails requests, it will not happen. Thanks for the bug report.
  13. M

    I followed everything twice, cannot get SSL to work

    Download the ca_new_2018.txt from their web site, use it as "CA Certificate File" Set "Chained Certificate" to "No", leave "CA Certificate Path" unset, restart the server, it should work.
  14. M

    I followed everything twice, cannot get SSL to work

    Check this page out http://www.instantssl.com/ssl-certificate-support/cert_installation/ssl-certificate-index.html
  15. M

    I followed everything twice, cannot get SSL to work

    I am pretty sure it is your configuration problem, when you check the certificate details, there is only one certificate in "Certification Path". make sure you get the CA certifcation and set http://www.litespeedtech.com/docs/webserver/config/listeners/#CACertFile You should be able to copy...
  16. M

    recommended rails performance tuning

    That's normal, because LiteSpeed start Rails application on demand, and stop it if it not in use. Rails framework has very high startup cost, that's why you get a few seconds delay for the first request. You can have the app started when LiteSpeed starts, and increase the max idle time.
  17. M

    I followed everything twice, cannot get SSL to work

    That probably because the CA certificate has not been loaded. That's the certificate you get from commando which should be used for SSL certificate they issued. Check your apache configuration and have the CA certificate installed on LiteSpeed the same way.
  18. M

    lsapi processes not being used, build up to > max_connections

    You need to find out what exactly causes he bad select(), I think it is in ruby or your rails app, not in LSAPI code. You can try "lsof" or start "strace" at beginning of a request. Ruby always resume a function call if it is interrupted (EINTR) by a signal, so sometime it becomes very...
  19. M

    litespeed stop responding

    It is a php problem, you need to build your own lsphp binary if you are using our prebuilt lsphp binary. Checkout our Wiki.
  20. M

    lsapi processes not being used, build up to > max_connections

    Is the server doing OK now?
Top