Search results

  1. N

    403 Error for Tim Thumb Image Generator Works in Apache

    please refer: http://www.litespeedtech.com/support/forum/showthread.php?t=6593
  2. N

    WildCard DNS

    same as apache: http://httpd.apache.org/docs/current/vhosts/name-based.html#using "ServerAlias example.com *.example.com"
  3. N

    Http upload / WordPress

    yes. just to get more information for reproduce purpose. if can reproduce the issue, then it's nearly to resolve it :)
  4. N

    Http upload / WordPress

    is the latest Wordpress version ? and it seems there are 2 built in image uploader, one is flash based, another one is not.
  5. N

    External processor is not available error

    looks like great experience. by looking http://www.php.net/manual/en/apc.configuration.php#ini.apc.slam-defense not sure if set apc.slam_defense=100 what'll happen
  6. N

    External processor is not available error

    most likely, if the root cause is php 5.4 not compatible well with APC. you can search the log if it still exist after switching to php 5.3
  7. N

    lsws standard edition - no boost - nothing - confused now

    Apache: Failed requests:1015 Requests per second: 333.53 (#/sec) Litespeed: Failed requests:9740 Requests per second: 262.32 (#/sec) there must be something wrong in your litespeed settings. can you give a screen shoot of your settings on Server->External App->lsphp5 or give...
  8. N

    503 Error: Litespeed Web Server Enterprise v4.2.4

    admin console->Server->External App->Environment,add LSAPI_MAX_PROCESS_TIME=1800 default is 300 seconds(5 minutes) please refer: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:lsapi-environment-variables
  9. N

    trial license

    please go http://www.litespeedtech.com/products/litespeed-web-server/overview click "Free Trial" icon and follow up it.
  10. N

    lsws standard edition - no boost - nothing - confused now

    you can benchmark php performance by #ab -n 10000 -c 50 yourdomain.com/phpinfo.php (just for example, you can adjust above figure :10000 / 50) under apache and litespeed. see if there is any difference. for a php application like Joomla, need identify its bottleneck first. if its...
  11. N

    External processor is not available error

    this may relate to this setting: lsws admin console->Server->Tuning->Connection Timeout (secs):default is 300, looks your setting is 120. right?
  12. N

    LSWS 4.2.5 update not available

    #/usr/local/lsws/admin/misc/lsup.sh -v 4.2.5
  13. N

    CGI vs suexec deamon for servers with a large number of sites ?

    FYI -- the new blog post: http://blog.litespeedtech.com/2013/10/31/php-suexec-workergroup-means-even-more-efficient-opcode-caching/
  14. N

    Site ssl, subdomain no ssl?

    I think it's possible. just treat the 2 domains as separate ones.
  15. N

    [solved] Make Litespeed compatible with Cloudlinux's limits

    you can upgrade first, and monitor it closely for a few hours; if any issue, you can switch back to previous version, this is low risk. or switch back to previous version when you're away from computer ... nearly 0 risk.
  16. N

    LiteSpeed ignores cache disable

    it's because you enabled private cache. disable it and see: lsws admin console->Server->Cache->Enable Private Cache:No
  17. N

    [solved] Modsecurity rules to protect WP login?

    as I posted, I did tests and it worked. please try yourself and tell us the result.
  18. N

    503 Service Unavailable The server is temporarily busy, try again later

    what's your lsws version ? /opt/lsws/bin/lshttpd -v /opt/lsws/bin/lshttpd -V
  19. N

    Caching but Cache Expire Time / purging does not work.

    please create a test case so that other can reproduce it you can create a test.php which only show timestamp. the rewriterule can be RewriteRule ^test.php$ - [E=Cache-Control:max-age=60] use #curl -i domain/test.php to check the result. test in after 30 seconds, 60 seconds, 100...
  20. N

    Caching but Cache Expire Time / purging does not work.

    of course it will. but won't be automatically, only when receive an new request, it'll check if the cache is there and not expire. if not expire, will return the cache. if cache not exist or already expire, it'll pass the request to backend php process and get the response from it. then replace...
Top