Search results

  1. M

    [solved] http port 80 down

    That's means you have another web server running on port 80, you may need to check from command line which process takes port 80 netstat -anp | grep LISTEN | grep 80 you can use "kill -9 <pid_of_that_process>" to kill those. then restart LSWS.
  2. M

    question about Multiple Hosting

    You can add multiple mapping to the same listener. click "Add" link on the second table in that page.
  3. M

    question about Multiple Hosting

    Just continue adding other vhosts to the "Virtual Host Mapping".
  4. M

    question about Multiple Hosting

    Those errors are unrelated. Post screen shots of your listener configuration maybe easier.
  5. M

    question about Multiple Hosting

    You need to check error log for errors.
  6. M

    [solved] Retry with new instance.

    I am not sure those mysql queries are caused by "retry with new instance", maybe user keep trying to load that page. There are many cases will trigger retry with new instance, mainly due to PHP crashes or exits after finishing "PHP_MAX_REQUESTS". "retry with new instance" is to reduce 503...
  7. M

    connect servlet and jsp in tomcat

    Please check the demo configuration. http://www.litespeedtech.com/litespeed-live-demos.html
  8. M

    question about Multiple Hosting

    Yes, you can map one listener to multiple vhosts on different domain name. It is called name based vhost.
  9. M

    LiteSpeed VS Unixy Varnish - The Truth!

    Another test suggestion. serving multiple large media files total size around 2GB or more. LiteSpeed with cache on/off, Apache + varnish.
  10. M

    LiteSpeed VS Unixy Varnish - The Truth!

    Any of our staff members should be able to help with the configuration. We have published some guides for popular web applications, you can take a look at http://www.litespeedtech.com/support/forum/forumdisplay.php?f=30 more to come.
  11. M

    Litespeed cache + vB + vBSEO conflicts/issues ?

    Based on my investigation on this, the latest ruleset should work, however, there are a few URLs need to be excluded like "/login/wait", so the cache related rules are #%LiteSpeed Cache rules RewriteCond %{HTTP_COOKIE} !vbseo_loggedin RewriteCond %{ORG_REQ_URL}...
  12. M

    LS Optimization for a VPS running multiple wordpress sites

    SuperCache is a simple page cache, it works and works well. W3TC is more advanced, but difficult to get it right. We only recommend using APC when you turn off PHP suEXEC.
  13. M

    proxying outgoing requests

    It has to be done at network layer (layer 3), maybe use NAT to route outgoing traffic through the LB server IP. It is beyond the scope of our support service.
  14. M

    question about Multiple Hosting

    If you do not specify a port, port 80 is used, it is on client side (browsers), nothing to do with litespeed or any web server at all.
  15. M

    question about Multiple Hosting

    If it is in native LSWS configuration, you can put "*" for listener to vhost mapping.
  16. M

    LS Optimization for a VPS running multiple wordpress sites

    Try WP Super Cache + eAcclerator using SHM. It is not recommend to set memory allocated to opcode cache very high. you probably did.
  17. M

    vBulletin Guest Cache with LiteSpeed

    Have you tried the latest rewrite rule posted? http://www.litespeedtech.com/support/forum/showthread.php?t=4650
  18. M

    disable/enable gzip compression, via .htaccess?

    I think it is complaining about PHP output compression, litespeed has no effect, you have to do it from PHP side. check output-handler http://www.php.net/manual/en/outcontrol.configuration.php#ini.output-handler You need to google this topic.
  19. M

    [Closed] EAProc WaitQ

    Use "Alias" instead of "ScriptAlias".
Top