How to Install Subrion CMS 4.1.5 on CentOS 7.6
Installation Procedure Of Subrion CMS 4.1.5 On centos 7.6
Subrion CMS is a free open source CMS developed using PHP as a programming language and a MySQl database. You can use WYSIWYG editors to publish content on your website.You can control every page,menu or block of your website directly in Admin Dashboard. They follow SEO Concepts to make our system as SEO-friendly as possible. With one-click you can upgrade to the latest version.This video covers the tutorial on Subrion CMS 4.1.5 On Centos 7.6
PHP Modules
php php-gd php-pdo php-simplexml php-zip php-mbstring php-mcrypt php-mysql
Software Requirements:
Centos 7.6
Apache 2.4.34
MariaDB 5.5
PHP 7.2
Download Link:
Click here, download Subrion CMS 4.1.5
Log in to the database to create a database and configure for Subrion CMS using root password as follows.
[root@linuxhelp ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.60-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database subrion character set utf8mb4;
Query OK, 1 row affected (0.00 sec)
MariaDB [subrion]> use subrion;
Database changed
MariaDB [subrion]> create user user1@localhost identified by 'linuxc';
Query OK, 0 rows affected (0.00 sec)
MariaDB [subrion]>grant all on subrion.* to user1@localhost;
Query OK, 0 rows affected (0.00 sec)
MariaDB [subrion]>flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [subrion]>exit
Bye
Change the directory to Apaches document root directory
[root@linuxhelp ~]# cd /var/www
Create a directory for Subrion CMS
[root@linuxhelp www]#mkdir subrion
Change the directory to Subrion to download the Subrion CMS.
[root@linuxhelp ~]# cd subrion
Download the zip file of Subrion CMS from website using wget command.
[root@linuxhelp subrion]#wget https://tools.subrion.org/get/latest.zip
Extract the zip file of Subrion CMS using unzip command
[root@linuxhelp subrion]#unzip latest.zip
Assign ownership and Writable permissions to the subrion directory by executing the following commands.
[root@linuxhelp subrion]# chown -R apache. ./
[root@linuxhelp subrion]# chmod -R 775 ./
Assign full permissions to the tmp directory as it is a requirement for Subrion CMS
[root@linuxhelp subrion]# chmod 777 ./tmp/
Cretae a customised Configuration file for Subrion CMS as follows
[root@linuxhelp subrion]# vim /etc/httpd/conf.d/subrion.conf
<virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/subrion/
<directory /var/www/subrion/>
Allowoverride all
Allow from all
</directory>
</virtualhost>
Restart the service of apache to reload the Apache configuration.
[root@linuxhelp subrion]#systemctl restart httpd
Enter the servrename that you have set in the customised Configuration file of Subrion CMS
Click Next after checking the pre-Installation Wizard
Enter the database details and enroll the admin credentials In the Configuration Page of Subrion CMS 4.1.5
Therefore the Installation procedure OF Subrion CMS 4.1.5 on Centos 7.6 comes to end.