Category: Web Servers

How to Turn Off PHP Error Reporting

In this article, we’ll show you how to disable the PHP error reporting. PHP errors are generated by your websites and logged in error_log files in the directory where your PHP files are located. If you do not need the error_log file you can disable PHP error logging. To turn off PHP error reporting, you

Continue reading…

How To Install phpMyAdmin on CentOS 7

In this tutorial, we will go through the steps to installing and configuring phpMyAdmin in CentOS 7. All commands – without sudo yum update -y yum install epel-release -y yum install phpmyadmin -y All commands – with sudo sudo yum update -y sudo yum install epel-release -y sudo yum install phpmyadmin -y Introduction phpMyAdmin is

Continue reading…

How to Install NGINX, MySQL, PHP v7 (LEMP) on CentOS 7

In this guide we go through the steps for building the LEMP stack on CentOS 7. All Commands – without sudo yum update -y yum install epel-release -y yum install nginx -y systemctl start nginx systemctl enable nginx firewall-cmd –permanent –add-service=http firewall-cmd –permanent –add-service=https firewall-cmd –reload yum install mariadb-server mariadb -y systemctl start mariadb systemctl

Continue reading…

How to Install OpenLiteSpeed Web Server on CentOS 7

In this guide we go through the steps for installing OpenLiteSpeed Web Server on CentOS 7. All Commands – without sudo yum update -y rpm -ivh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el7.noarch.rpm yum install openlitespeed /usr/local/lsws/bin/lswsctrl start yum install epel-release yum install lsphp70 lsphp70-mysqlnd /usr/local/lsws/admin/misc/admpass.sh firewall-cmd –zone=public –permanent –add-port=7080/tcp firewall-cmd –reload All Commands – with sudo sudo yum update -y

Continue reading…

How to Install LiteSpeed Web Server on CentOS 7

In this guide we go through the steps for installing LiteSpeed Web Server on CentOS 7. All commands – without sudo yum -y update yum groupinstall “Development Tools” -y wget http://www.litespeedtech.com/packages/5.0/lsws-5.3.7-ent-x86_64-linux.tar.gz tar -zxvf lsws* cd lsws-5.3.7 ./install.sh rpm -ivh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el7.noarch.rpm yum install lsphp73 lsphp73-mysqlnd ln -sf /usr/local/lsws/lsphp73/bin/lsphp /usr/local/lsws/fcgi-bin/lsphp7 firewall-cmd –permanent –zone=public –add-service=http firewall-cmd –permanent –zone=public

Continue reading…

How to Install LAMP (Linux, Apache, MySQL, PHP) on CentOS 7

In this guide we will walk through the steps for installing and configuring LAMP stack on a CentOS 7 VPS. All commands – without sudo yum update yum install httpd -y systemctl start httpd systemctl enable httpd yum install mariadb-server mariadb -y systemctl start mariadb systemctl enable mariadb systemctl mysql_secure_installation yum install epel-release yum-utils -y

Continue reading…