Search results

  1. M

    creat new vhost and limit speed just for one user

    add listener to vhost mapping for that vhost, so when a request for that vhost coming in, server will dispatch that request to the target vhost.
  2. M

    LSWS 5.0RC1 - Missing NPN Extension in SSL/TLS Handshake

    Do a force update of 5.0RC1 see if it is addressed or not. SPDY was not turned on for vhosts configured through Apache httpd.conf, but it has been addressed a while back.
  3. M

    Xenforo posting error with litespeed, only in some threads

    Just locate that rule in your Apache configuration, and turn it off. Send it to us if you think it is a bug causing false-positive.
  4. M

    Xenforo posting error with litespeed, only in some threads

    Just check error log, for 403 forbidden, if it is generated by web server itself, it always log the reason.
  5. M

    Xenforo posting error with litespeed, only in some threads

    check "Request Filter"/mod_security rules. turn it off.
  6. M

    [Resolved] can’t open webadmin console: blank loading page

    It works fine, if you cannot access it, you may need to reinstall LSWS.
  7. M

    [Resolved] can’t open webadmin console: blank loading page

    try curl -I 207.21*.***.*:7080/login.php
  8. M

    [Resolved]lsws + mod_geoip + modsec = fail

    just get rid of SecRule REMOTE_ADDR "@geoLookup" "chain"
  9. M

    [Resolved]lsws + mod_geoip + modsec = fail

    SecRule ENV:GEOIP_COUNTRY_CODE "@streq UK" should work, if it does not, please turn on mod_security debug logging with log level 9, check the error log see what happened with that rule.
  10. M

    CGI scripts doesn't work error 500

    Please check error.log and stderr.log for related error messages. I think it could be an issue with CloudLinux CageFS if you use it. The CGI script cannot be executed from within the Cage.
  11. M

    Client Throttling & CDN

    Make sure you use the server level ACL to add the trusted subnet, vhost level wont work, I thought you did, but just a remainder. Another thing to try is to try the single IP, change the subnet syntax to xxx.xxx.xxx.xxx/255.255.xxx.xxx .
  12. M

    Pending AIO operation, recycle later.... Lot of Errors

    Yes, it is ramdis,by default linux give half of total memory to /dev/shm, you server should have 32GB. You can change it from /etc/fstab.
  13. M

    Drupal CSS & JS Aggregation problem

    Double checked with our 5.0 branch, it is addressed, the first 5.0 release candidate will be available in next week.
  14. M

    Pending AIO operation, recycle later.... Lot of Errors

    If use LiteSpeed page cache, change page cache storage path to /dev/shm/lscache
  15. M

    Pending AIO operation, recycle later.... Lot of Errors

    edit php.ini, change session save path to /dev/shm
  16. M

    Pending AIO operation, recycle later.... Lot of Errors

    those are not errors, just the way AIO works. what is the I/O wait of your server in the top output? show us the top output You need to find out the root cause of the high I/O wait and minimized it. since you have 64GB memory, you can move PHP session, and other temp files to /dev/shm instead of...
  17. M

    Install error on FreeBSD10

    You need to install libpng and other missing libraries from ports. FreeBSD is not as easy as Linux.
  18. M

    Random loss of permissions in public_html

    You need to find out why and who changed the permission of those folders, not likely LSWS itself.
  19. M

    .htaccess depth to recurse

    LSWS does not check .htaccess beyond the user's root directory, for performance reason. However, we will add a feature in 5.0 release to check .htaccess beyond user's root directory during initial configuration, it means that if you make change to /home/.htaccess, it require a restart, we do...
  20. M

    .htaccess depth to recurse

    Which version of LiteSpeed is used before 4.2.6 update.
Top