Search results

  1. M

    Upgrade to 4.0.11

    Actually, there is no downtime as Litespeed does graceful restart.
  2. M

    postgresql

    Yes, just compile PHP with PostgreSQL support.
  3. M

    Do I still need safe_mode with LiteSpeed?

    If you use it with Apache, you should keep it.
  4. M

    Upgrade to 4.0.11

    Yes, just upgrade manually to 4.0.11, once upgraded, you can upgrade from web console for future releases.
  5. M

    Try to install Atmail - how to configure LSWS?

    Just use a CGI context, it is like a ScriptAlias in Apache httpd.conf .
  6. M

    Rack 1.0.1 don't works god with litespeed

    It is a bad idea to use both RewindableInput and StringIO. StringIO buffer the POST body in memory (in a string, bad for large post). RewindableInput buffer POST body in a temp file, which is very slow. Using both is like getting the worse part from both. what error message do you get with...
  7. M

    Try to install Atmail - how to configure LSWS?

    Are you using LSWS with httpd.conf? or configure everything natively from web console?
  8. M

    LSWS Rails App MySQL Connection Errors

    For Rails 2.3.4, ActiveRecord::Base.disconnect! disappeared. so, I end up with ActiveRecord::Base.connection_pool.disconnect! Looks like it is enough, no need to call clear_active_connections! , please let us know if you find it is not true.
  9. M

    SetEnv alternative

    It is in the "_SERVER[]" arrary, you wont see it in "Environment" list.
  10. M

    Trying to set up a FastCGI app using Python/Django and getting nowhere...

    If LSWS cannot fire up the application automatically, you may have to start the application manually, and set "Auto Start" to false in LSWS external app configuration.
  11. M

    SetEnv alternative

    Well, the rewrite rule wont execute for phpinfo.php, try add a rule like RewriteRule . - [E=FLOW3_CONTEXT:Development] at the beginning of .htaccess
  12. M

    Ioncube + PHP 5.3 + Litespeed 4.11 = 503 On all ioncube encoded apps

    It should be ioncube issue. You can enable PHP core dump with the special environment variable in lsphp5 configuration, http://www.litespeedtech.com/php-litespeed-sapi.html you can check the core file with GDB, it can tell you which function crash PHP, then you can file a bug report to the...
  13. M

    Apache default page and more...

    You can update /usr/local/apache/htdocs/index.html for the default page. cPanel wont show LiteSpeed, as they do not officially support LiteSpeed yet, we wrote our plugin to support cPanel.
  14. M

    SetEnv alternative

    It should work, you can check a phpinfo() page.
  15. M

    new package has some bad installation problems

    PaX in grsecurity kernel causes some trouble, can be addressed with paxctl command.
Top