Search results

  1. M

    Litespeed is not running...

    then try killall -9 lshttpd Then ./lswsctrl start
  2. M

    Rewrite broken

    The execution of the rewrite looks correct. When result is 1 or 2, means the pattern has been matched. /100-laine-vierge was rewritten to "/". Have you configured those rewrite rules at vhost level? It will affect some PHP _SERVER[] variables as we made some change to match Apache's behavior...
  3. M

    Litespeed is not running...

    Please do ./lswsctrl stop ./lswsctrl start or ./lswsctrl restart
  4. M

    cPanel+Litespeed+Proxied mod_perl

    You can use rewrite rule to tell LSWS to proxy request to the target Apache instance. What you need to do is to define a "Web Server" external application from LSWS web console, with name of "127.0.0.1:82". Then define a rewrite rule like RewriteRule (.*)\.cgi$ http://127.0.0.1:82/$1 [P]
  5. M

    Rewrite broken

    Check lsws/autoupdate/ fold see if the 3.3.15 package is still there. It is available on our web site as well.
  6. M

    Rewrite broken

    litespeedtech.com has been on 3.3.18, our joomla installation still works.
  7. M

    Rewrite broken

    Can you turn on RewriteLog and check the error.log? Actually, there is a change in 3.3.17 which affect PHP environment variables, PHP_SELF, SCRIPT_NAME. It should not affect rewrite rules.
  8. M

    New install, can't access admin interface

    Where did you install LSWS to? you may have permission problem if you install to a user's home directory and did not choose to run web server on behalf of that user. Install it to /opt/lsws or /usr/local/lsws if you can.
  9. M

    New install, can't access admin interface

    What is your OS? 32bit? 64bit? The updateagent is not directly related to admin interface. Which version of LSWS are you using?
  10. M

    cPanel+Litespeed+Proxied mod_perl

    LiteSpeed can pass certain request to backend Apache running on a different port. http://www.litespeedtech.com/docs/webserver/config/general/#apacheHandledContent For example, you have Apache run on port 78, in LiteSpeed, "Apache Port Offset" is set to "2", so LiteSpeed will run on port 80, if...
  11. M

    Can't change password for Web Admin Users

    change it from command line with lsws/admin/admpass.sh
  12. M

    LSWS 3.3.18 has been released

    LiteSpeed Web Server 3.3.18 has been released This release is mainly to support a new feature in cPanel. Download LiteSpeed Web Server View Version History
  13. M

    request #500, error: Connection reset by peer!

    That's normal, each PHP process is configured to serve 500 requests then quit. It does not affect anything.
  14. M

    Suhosin 0.9.27

    Yeah, just change version number in that file.
  15. M

    LSWS - could it run on Amazon EC2?

    If hardware a dynamically allocated, I think it may not work well with LiteSpeed, because it may void the license key due to hardware signature changes. If EC2 allocate fixed hardware to your service, it may work. I think it may require a different licensing model to make it work well with...
  16. M

    Ruby LSAPI not working in Solaris 10 with Blastwave Ruby

    The truss output shows that the connection was closed immediately, maybe due to protocol error. Maybe you can try the 64bit version if it is a 32bit/64bit compatibility issue.
  17. M

    litespeed slower than apache?

    Yeah, some opcode cache is not suexec friendly as it requires all PHP processes forked off one parent process. eaccelerator may be better as it uses a on disk cache which can be shared by all PHP processes.
  18. M

    Wrong interpreter specified in install scripts

    Bash may not available by default, even on some solaris distribution. Maybe use if [ -f ... ]; then instead to make it compatible with most shell.
  19. M

    Safe mode

    This configuration can be overridden in the same way as with mod_php. through the vhost configuration in Apache httpd.conf, php_admin_flag safe_mode off it wont work in .htaccess. if vhost is configured natively through LSWS web console, add above configuration to "Apache style...
  20. M

    Apache not getting restarted

    Please download and try latest 3.3.18 package, should work now.
Top