Search results

  1. N

    408 Request Time-out

    please increase "Connection Timeout (secs)": http://www.litespeedtech.com/docs/webserver/config/tuning/#connTimeout it looks apache has no such feature and timeout is infinite.
  2. N

    [Solved] Custom error page

    lsws support ErrorDocument directive. as long as ErrorDocument in httpd.conf or .htaccess, lsws will pick them up.
  3. N

    isn't running litespeed

    is lsws installed in this server before? what's the OS, lsws version,etc, please provide more info.
  4. N

    isn't running litespeed

    stop apache, start lsws again. service httpd stop looks lsws not installed properly on your server.
  5. N

    isn't running litespeed

    is apache running at port 80 ? pstree -p |grep httpd
  6. N

    Variable containing document root

    $VH_ROOT/DEFAULT is an example. $DOC_ROOT also ok.
  7. N

    [Solved]Running EasyApache without first switching to Apache?

    tina: 4.0.18 is there. please test.
  8. N

    Variable containing document root

    Gerry: please try 4.0.18, "PHP_INI_SCAN_DIR=$VH_ROOT/DEFAULT" in lsphp environment now working well, and as you said this is ideal solution you wanted.
  9. N

    Litespeed Server Config Variables

    just not in the change log. Yes, now "Server Name" support $HOSTNAME, you may have noticed it.
  10. N

    vBulletin + LSWS

    RewriteBase is for per-directory rewrite, not need it in this per-server rewrite. I tried to clean up the rewrite rules: RewriteRule ^/(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is |id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|s...
  11. N

    vBulletin + LSWS

    per-directory(.htaccess) rewriterule is a bit different with per-server rewrite rule(in vhost). the REQUEST_URI should start with / for per-server rewriterule for example the last RewriteRule ^(.+)$ vbseo.php [L,QSA] should be RewriteRule ^/(.+)$ /vbseo.php [L,QSA]
  12. N

    [BUG?] Litespeed + ModSec2

    tested on our cPanel box, in case not working, may need explicitly set SecFilterEngine On
  13. N

    [solved] Sessions don't work

    ok.let's gather more detail info first: #ls -ald /home/rsweb/tmp/sessions/sess_96462014ed0ae341f8c9dce8283e0b97 #ls -ald /home/rsweb #ls -ald /home/rsweb/tmp #ls -ald /home/rsweb/tmp/sessions
  14. N

    [solved] Sessions don't work

    good log info. can you try: #chmod -R 777 /home/rsweb/tmp/sessions
  15. N

    [solved] Sessions don't work

    this looks interesting - delete a session file and resolve the issue. redirection loop - it may be an rewrite rule issue. can you enable the rewrite log level to 9 and see what the loop is.
  16. N

    php5 directives in httpd.conf

    can you give the output of open_basedir value in phpinfo()?
  17. N

    [Resolved] Turn off ModSecurity directives in htaccess

    tested on our cPanel box, the setting: admin console->Server->Request Filter->Disable .htaccess Override:Yes apply for virtual hosts defined in apache httpd.conf.
  18. N

    ddos attack

    searched about "dos_deflate", it's bash shell script based on "netstat -ntu",you can use it with litespeed as well. lsws built-in anti-dos setting "Per Client Throttling" should be more accurate than "netstat -ntu" based script. please be more specific of your questions. what's the setting of...
  19. N

    Litespeed + php apache_note() / GeoIP

    in vhost or .htaccess, set GeoIPEnable On looks no other trick. no need recompile php. can you paste the last part --- "PHP Variables" of phpinfo() here.
  20. N

    Litespeed + php apache_note() / GeoIP

    set "DB Cache Type" to recommended "MemoryCache" see if it helps
Top