Search results

  1. N

    htaccess + auto_prepend_file failuere

    my simple test show it's working as expected. when direct access www.domain.com/callback/list.php, any problem ?
  2. N

    [solved] How to redirect all request to www. url?

    as long as it's working now, no need those extra 2 lines.
  3. N

    htaccess + auto_prepend_file failuere

    not clear about: can you be more specific ?
  4. N

    [solved] How to redirect all request to www. url?

    base on your description, it looks what you want is: RewriteEngine on RewriteCond %{HTTP_HOST} ^domain\.net$ [NC] RewriteRule ^(.*)$ http://www.domain.net/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^domain\.me$ [NC] RewriteRule ^(.*)$ http://www.domain.me/$1 [R=301,L] RewriteCond...
  5. N

    First request hangs

    if there are hundreds of databases in the SQL server, for 1st access of a low traffic site, it need load the database from hard disk into memory, and this may take long time if a)memory is not enough or b)disk I/O happen to be high at that time. for 2nd request which has database access, since...
  6. N

    [solved] How to redirect all request to www. url?

    use rewriterule to do it RewriteCond %{HTTP_HOST} domain1.com [OR] RewriteCond %{HTTP_HOST} domain2.com [OR] RewriteCond %{HTTP_HOST} domain3.com RewriteRule (.*) http:///www.domain.com/$1 [R=301,L]
  7. N

    litespeed and static content

    it's difficult to give advice just what you described. here's my suggestion: for wordpress, litespeed + wordpress + wordpress cache plugin(like wp supercache) should be fast enough, without varnish or litespeed page cache or nginx etc. hence, 1 CPU or VPS license of litespeed probably...
  8. N

    [solved] litespeed weird behavior

    please PM the problem domain name
  9. N

    First request hangs

    please refer this thread: http://www.litespeedtech.com/support/forum/showthread.php?p=38947
  10. N

    LiteSpeed Cache + PhpFox

    RewriteRule /static/ajax.php - [L,E=Cache-Control:max-age=30] RewriteRule ajax.php - [L,E=Cache-Control:max-age=30] ===> RewriteRule static/ajax.php - [E=Cache-Control:max-age=30] for http://cl.ly/image/0m0d0q2f1U2h since I'm not sure the business logic in PHPFox, so following just FYI...
  11. N

    [solved] litespeed weird behavior

    what's current value of following files? /usr/local/lsws/autoupdate/platform /usr/local/lsws/autoupdate/release please try delete all files under /usr/local/lsws/autoupdate/ and run /usr/local/lsws/admin/misc/lsup.sh ... again
  12. N

    LiteSpeed Configuration for high traffic web

    lsphp5 settings: http://cl.ly/image/1d2R2C1B1c07 Max Connections:1000 --> too large ? suggest 100 or 200 PHP_LSAPI_CHILDREN=500: should match "Max Connections", i.e., 1000. suggest 100 or 200 Instance:10 -> change to default 1 Run On Start Up:Yes --> change to suEXEC Daemon...
  13. N

    Web server automatically restarted

    they are same thing. one is GUI, one is at command line.
  14. N

    Web server automatically restarted

    an email has been sent to you, force-reinstall 4.2.1, see if fixed. Thanks.
  15. N

    Litespeed stopped and doesn't appear to start :(

    no, should not. to check your license status, run command line: /usr/local/lsws/bin/lshttpd -v
  16. N

    CURL & file_get_contents throttling issues

    you can identify which IP in access log. "curl http://a.com" if you can access virtual host a.com's access log, it can tell which IP is used to access http://a.com
  17. N

    [solved] External loop redirection after an htaccess update

    try adding index.html in RewriteCond: RewriteCond %{REQUEST_URI} !(\/mypages|\/otherpages) [NC] => RewriteCond %{REQUEST_URI} !(\/mypages|\/otherpages|\/index\.html) [NC]
  18. N

    problem after switch to litespeed in directadmin

    have you built matching php ? run /usr/local/lsws/fcgi-bin/lsphp5 -i |grep "Loaded Configuration File", check if no php.ini loaded.
  19. N

    Upgrade with problems in ruby rails warn.

    tested in my testing box, edit /usr/local/lsws/conf/httpd_config.xml, delete <railsDefaults> ... </railsDefaults> the warning disappears. for csf/lfd warning, the warning is wrong, it's normal lshttpd process, should include it in white list to prevent further warnings.
  20. N

    Page Load is very Slow

    not sure if the network "hiccup" issue --- to test, switch to apache, see if the response become fast at once ? if slow as well, then network's issue. if it becomes fast, can you post the graph(for apache) from host-tracker also, are all websites slow or only particular website slow ? how about...
Top