Search results

  1. N

    File Not Found

    6.06 should be 6.0.6 :)
  2. N

    Black hole with litespeed ?

    not sure if RewriteRule .* - [E=blockbot:1] will be better than RewriteRule .* - [F] for this case. refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:special-rewrite-rule-directive#block_bot
  3. N

    Error upgrading to 6.0.5

    please try command line to see if it'll succeed: /usr/local/lsws/admin/misc/lsup.sh -f -v 6.0.5
  4. N

    Problem with suppression of PHP directives in .htaccess files

    what's "LiteSpeed V7.7" ? the latest version of LSWS is 6.0.4 you mean OLS ?
  5. N

    Exception Caught - Invalid input for lswsHome.

    please check if license is ok. for example, "site owner" license won't run if your server's RAM > 8G. but the error message may show "Exception Caught - Invalid input for lswsHome." as well. if not this case, please open a ticket with us
  6. N

    Rewrite rule against ddos ?

    please try RewriteRule .* - [E=blockbot:1, E=dontlog:1] https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:special-rewrite-rule-directive
  7. N

    Getting error in metaspace

    please refer https://docs.litespeedtech.com/extapp/php/troubleshooting/503/#process-memory increase PHP process memory soft/hard limit, should resolve it. apache has no such limit
  8. N

    Disable LSCACHE on a specific directory or path

    in loginadx/.htaccess: RewriteRule (.*) - [E=Cache-Control:no-cache] please refer https://docs.litespeedtech.com/lscache/noplugin/settings/#disabling-caching
  9. N

    Convert uppercase URL to lowercase

    you can use rewritemap : https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#rewritemap this is an apache function and supported by both apache and litespeed. example code: https://httpd.apache.org/docs/2.4/rewrite/rewritemap.html#int RewriteMap lc int:tolower RewriteRule "(.*)" "${lc:$1}"...
  10. N

    error 500 afer fresh install when accessing to litespeed web ui

    please run #yum install libnsl
  11. N

    error 500 afer fresh install when accessing to litespeed web ui

    what's the output of following command ? #ldd /usr/local/lsws/admin/fcgi-bin/admin_php5
  12. N

    "Use Client IP in Header" not working?

    in access log, should be real IPs. also, need put front end proxy IPs in while list.
  13. N

    how to clear cache of an individual page?

    please refer https://docs.litespeedtech.com/lscache/basics/#purging-the-cache
  14. N

    Issues with cache and WHMCS

    should remove ^, i.e., RewriteCond %{HTTP_COOKIE} WHMCS.* or just RewriteCond %{HTTP_COOKIE} WHMCS have you set any cache policy in lsws web admin ?
  15. N

    Issues with cache and WHMCS

    how about <IfModule litespeed> CacheLookup on RewriteEngine On RewriteRule .* - [E=Cache-Control:max-age=120] ### marker NOCACHE COOKIES start ### RewriteCond %{HTTP_COOKIE} sb-login [OR] RewriteCond %{REQUEST_URI} ^/(admin|supportboard|login) [OR] RewriteCond...
  16. N

    lscache plugin runs for 1 hour then stops

    LSAPI_MAX_PROCESS_TIME : Default Value: 3600 seconds https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:lsapi-environment-variables change it and see if it'll help
  17. N

    Having trouble getting proxy to work.

    can you PM the access to the lsws web admin console ?
  18. N

    Having trouble getting proxy to work.

    the settings in your 2 screenshots looks ok without problem. maybe settings somewhere else have problem. do you have any control panel installed ? like cPanel / Plesk / DirectAdmin
  19. N

    LiteSpeed Cache Plugin conflicts with image gallery extension on my site

    you can create a ticket with us with detail info, including reproducing steps
  20. N

    LiteSpeed Cache Plugin conflicts with image gallery extension on my site

    if you disable LiteSpeed Cache Plugin , will the issue be gone ?
Top