Search results

  1. B

    How to use with W3TC plugin

    I need to use OpenLitespeed with the W3 Total Cache plugin for Wordpress. W3TC gives the code that needs to be added to the .htaccess file, but it looks like OpenLiteSpeed doesn't support the needed directives in the .htaccess file. I read the errors such as the following in the log: [ERROR]...
  2. B

    Cannot access admin panel

    Here are the commands to just add the ports you need, if you switch to port 80 make sure to modify the commands below sudo iptables -I INPUT -p tcp --dport 80 -j ACCEPT sudo iptables -I INPUT -p tcp --dport 443 -j ACCEPT sudo iptables -I INPUT -p tcp --dport 7080 -j ACCEPT
  3. B

    Having issue setting up on CentOS (Amazon EC2)

    Turned out to be firewall settings ons erver Needed to run sudo iptables -I INPUT -p tcp --dport 80 -j ACCEPT sudo iptables -I INPUT -p tcp --dport 443 -j ACCEPT sudo iptables -I INPUT -p tcp --dport 7080 -j ACCEPT
  4. B

    Cannot access admin panel

    thank you, 'service iptables stop ' solved my issue with openlitespeed not loading any pages
  5. B

    Having issue setting up on CentOS (Amazon EC2)

    I am a novice to server setup so I might be performing some steps incorrectly. I have an Amazon EC2 instance that is running CentOS 6.10 with httpd and php. These run under the user account 'apache'. I need to install OpenLiteSpeed instead. So I followed the official instructions. However, the...
Top