Search results

  1. N

    Rewrite Rules

    no need varnish. no need <IfModule mod_litespeed.c>, can remove it: Order allow,deny Deny from all just an example, can delete all <IfModule mod_litespeed.c> and corresponding </IfModule>
  2. N

    How to enable gzip compression for woff files ?

    and https://www.litespeedtech.com/docs/webserver/config/tuning#compressibleTypes
  3. N

    LiteSpeed cache for WordPress + Cloudflare cache

    they should work together without problem. traffic flow: for example: server -> client: lsws + lscwp ( cache a page for 10 minutes) --> cloudflare ( cache a page for 30 minutes) --> client (browser) in this case, a wordpress page will cache 30 minutes to 40 minutes
  4. N

    Opencart Proper Permissions for Litespeed from DSO

    just enable it. ownership / permission is managed by WHM/cPanel, in general you don't need manually set anything. litespeed just follow cPanel's rules.
  5. N

    Opencart Proper Permissions for Litespeed from DSO

    check on runtime to ensure 1, lsphp are running as nobody #ps -ef|grep lsphp 2. nobody has write permission on document root tree #ls -ald /home/user/public_html
  6. N

    Opencart Proper Permissions for Litespeed from DSO

    how do you disable suExec ? show more detail.
  7. N

    [Resolved] How Can i Migrate License Between Servers ?

    yes. but remember 1) before above operation on new server, run lsws/bin/lshttpd -m to release the license first. 2) replace above MY_SERIAL_NO with your actual lsws serial number.
  8. N

    [Resolved] How Can i Migrate License Between Servers ?

    please refer: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:licenses:transfer-or-release-a-license should answer your questions with details.
  9. N

    [Resolved].htaccess php_value and php_flag being ignored in sub-directory

    I did a simple test and it looks working as expected. first, ensure http://php.net/manual/en/configuration.changes.php You will need "AllowOverride Options" or "AllowOverride All" privileges to do so. public_html/.htaccess <IfModule litespeed> php_value max_execution_time 600 php_value...
  10. N

    ioncube & zend

    you needn't build ZendGuardLoader.so yourself, just download the binary from their website. then in php.ini add a line like zend_extension=/usr/local/Zend/lib/Guard-7.0.0/php-5.5.x/ZendGuardLoader.so this is no difference between web servers, just an php issue, regardless apache, nginx or...
  11. N

    ioncube & zend

    1. is the .so configured in php.ini ? run #grep ZendGuardLoader.so /usr/local/lib/php.ini 2. there are 32-bit and 64-bit version loader, ensure correct version installed: http://www.zend.com/en/products/loader/downloads#Linux
  12. N

    can not install magento

    looks like an upgrade issue -- when upgrade from 1.6 to 1.9 ? and mysql related. if you install a new 1.9, may not have such issue.
  13. N

    invalid starter process uid 501

    as the message tell, please check your lsws license
  14. N

    Why so hard to block traffic from foreign countries?

    ask your host to enable GeoIP at web server(litespeed) level: https://www.litespeedtech.com/docs/webserver/config/general#enableIpGeo and update the GeoIP database every month, then you can block IPs by country easily in .htaccess there should be 0 performance loss in this way. you can also...
  15. N

    Clear Forum Cache Option

    for example: #find /tmp/xfcache -type f -mmin +480 -delete (480 minutes or 8 hours)
  16. N

    [Resolved] How to Change TMP folder to another Disk

    this means /dev/sdb2 mounted as /tmp whole SSD (216 G) are under /tmp should set as /tmp/xfcache instead of /dev/sdb2//tmp/xfcache
  17. N

    [Resolved] How to Change TMP folder to another Disk

    can you create folder under /dev/sdb2 ? what's output of #df -h
  18. N

    Clear Forum Cache Option

    you can ssh to your server, find out the XF cache folder, and delete old files (for example older than 8 hours)
  19. N

    LFD excessive resource usage too much

    >The whole site with plugins is less than 300 MB memory is dynamically allocated at run time, it's not related to php script's file size on hard disk. a few lines of php script may consume 200M memory for a short while then release them.
  20. N

    LFD excessive resource usage too much

    php script under Account: <myuser> has consumed 289M memory, so trigger the alert which limit is 200M. 200M limit looks too low. also 289M memory usage is not high. if you think 289M is too high, you have to investigate <myuser>'s php script, to identify which part has caused high memory...
Top