Search results

  1. M

    How use httpd.conf

    LiteSpeed should work well with httpd.conf generated by plesk.
  2. M

    How use httpd.conf

    Is that different from Plesk? Or Plesk is part of it?
  3. M

    How use httpd.conf

    Whether to use httpd.conf is configured in httpd_config.xml. The configurations need to changed in httpd_config.xml is minimum. Are you using a hosting control panel?
  4. M

    PHP question

    No, it will not.
  5. M

    [lsphp]ssh2.so lib

    Can you start "lsphp -i" from command line? If you do, ssh2.so may require special environment variables, set those environment variables in the lsphp external app configuration.
  6. M

    Use of already installed php

    No, you can rebuild the PHP with "--with-lsapi" plus other configuration entries, excluding "--with-apxs"
  7. M

    General performance tuning

    Set it too high may not help with performance, but make it worse. It could make your server weaker when fighting a DoS attack.
  8. M

    best way to set up environment variables??

    The rewrite rule works with both standard and Enterprise edition, we verified that. "SetEnv VAR1 10" is not supported, so it does not work with either edition.
  9. M

    Ruby on Rails, Litespeed, Fedora Core 4

    Please take a look at PickleOnion's tutorials, link is in our wiki.
  10. M

    How can I assign all scripts in a directory to perl?

    Make sure to make those scripts executable "chmod a+x *". And you can try "ForceType application/x-httpd-cgi" as well, should have the same effect.
  11. M

    Problems uploading file from Textpattern CMS with lLitespeed

    Please check you PHP configurations from a phpinfo() page. file_upload is not enabled, I guess. Just update your /usr/local/litespeed/php/php.ini
  12. M

    vhconf charecter limit or number of lines limit?

    Take a look at the vhost configuration xml file, the maximum length of the value of each xml tag was limited to 64KB, the total length of those rewrite rules exceed the limit. The limit will be lifted to 1MB in next release, should be large enough.
  13. M

    How can I assign all scripts in a directory to perl?

    You must add a script handler for "pl" file using the CGI handler at server level using our web admin console, it will added MIME type application/x-httpd-pl behind the scene. If you explicitly added that MIME type some where, it is not going to work.
  14. M

    How can I assign all scripts in a directory to perl?

    Define a script handler for "pl" at server level using CGI handler. In that directory, add "ForceType application/x-httpd-pl" configuration in .htaccess under that directory.
  15. M

    make virtual hosts

    If you really want to do that, just create a listener bind to individual IP and port 80, then add your vhost configutration. I do not recommend doing this when used litepseed together with cPanel or other control panel, unless you want to manage the vhost completely from LSWS web console and...
  16. M

    Wow, Litespeed is a bad boy against ddos

    To check if you get DDoS, you should check the total connections in use from the real time statistics page. if it is higher than normal, you may get attacked. Your server has 8-Cores, so load around 8 is the perfect value which is equivalent to load around 1 on a uni-processor server.
  17. M

    General performance tuning

    20 should be enough, you can monitor the realtime statistic report, to make sure the "WaitQ" is at zero for the most of time.
Top