Search results

  1. M

    [Closed] EAProc WaitQ

    For Apache vhosts, you need to remove "ScriptAlias /cgi-bin/ ..." from the vhost configuration. Make sure perl script is not configured to use "cgi-script" handler.
  2. M

    fopen/fread php script works with apache but not litespeed

    Generally, with LiteSpeed, streaming large media file through PHP is a bad idea, as PHP run in their own process, LiteSpeed need to cache the response body to make PHP available for next request. LiteSpeed will cache the response in a temp file instead of in memory if the size of response body...
  3. M

    Lsws error in logs!

    Maybe you need to reinstall LSWS, looks like configuration is corrupted if you never add <LocationMatch> to LSWS configuration.
  4. M

    fopen/fread php script works with apache but not litespeed

    such large download takes too much valuable resources on PHP and disk I/O. Maybe you can try 4.1RC4 by changing the version number in the download link, it may do better than 4.0.x.
  5. M

    fopen/fread php script works with apache but not litespeed

    check the debug log, see why it is terminated.
  6. M

    Is it possible litespeed has a problem with mobile safari ?

    Are you sure rewrite is properly enabled? maybe enable rewrite log.
  7. M

    Rails context can't disable rewrite

    "Rails" context uses rails dispatcher as custom 404 handler, do not use rewrite rules. Just use rewrite to redirect missing files to an existing file should work.
  8. M

    fopen/fread php script works with apache but not litespeed

    Can you enable debug logging, I think it likely a problem with disk space of swap directory. For response body this big, LiteSpeed cache it on disk. http://www.litespeedtech.com/docs/webserver/config/general/#swappingDir also check...
  9. M

    Opensuse

    If you use LSWS reading apache configuration file, you can follow this http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:apache:other_cp when you stop Apache, you need to set "Apache Port Offset" to "0". turn on debug logging, and check log file why 403 returned.
  10. M

    how to update litespeed

    http://www.litespeedtech.com/docs/webserver/install/
  11. M

    Is it possible litespeed has a problem with mobile safari ?

    you can turn off keepalive with rewrite rule, like RewriteCond %{HTTP_USER_AGENT} iphone_user_agent_signature RewriteRule . - [E=nokeepalive:1]
  12. M

    [solved] SSL 500 Internal Server error with Mac/iPad/Safari

    Can you try tcpdump on server side or Mac side tcpdump -s0 -X host <ip_of_peer>
  13. M

    When i compile easy apache must switch litespeed to apache?

    You can enable "Apache EasyApache" integration from LSWS plugin.
  14. M

    Context with pcre strips first character?

    Please try a force reinstall see if the problem is still there.
  15. M

    Is it possible litespeed has a problem with mobile safari ?

    You can try "tcpdump" on server side. First, find out the IP of your iPhone. Then run command tcpdump -s0 -X host <ip_of_your_iphone> think it is just the poor AT&T wireless network. ;)
  16. M

    [solved] Missing Request Headers

    This is a bug, have been fixed in our 4.0.20 release package. will make it available shortly, just change version number in the download link to get it.
  17. M

    [solved] SSL 500 Internal Server error with Mac/iPad/Safari

    enable debug logging, then check error log.
  18. M

    [solved] rewrite rules access to ENV

    just add "static" context for "/images" could be an easy fix. no rewrite rules involved.
  19. M

    Opcode Cache

    depends on amount of free memory left on your server.
  20. M

    Client does not support authentication protocol requested by server

    login WHM, go to "plugins"->"LiteSpeed web server"->Build Matching PHP
Top