How to Install Zimplit CMS on RHEL7.6
- 00:29 cat /etc/os-release
- 00:39 wget https://codeload.github.com/niutech/zimplitcms/zip/master
- 00:48 unzip master -d /var/www/html/
- 01:01 cd /var/www/html/
- 01:10 mv zimplitcms-master/ zimplit
- 01:22 chown -R apache. ./
- 01:28 chmod -R 755 ./
- 01:40 vim /etc/httpd/conf.d/zimplit.conf
- 02:14 vim /etc/hosts
- 02:37 systemctl restart httpd
How to Install Zimplit CMS on RHEL7.6
Introduction:
Zimplit is a Content Management System (CMS) that is extremely lightweight, simple and customizable.It consists of only one core engine file and it does not require any database to run the application. In this video we are going to see the method to install zimplit cms on RHEL7.6
Prerequisite:
APACHE
PHP and Modules(php-gd php-pdo php-mbstring php-mcrypt php-mysql php-simplexml php-pecl-zip php-imap)
Installation Process:
Command to check the installed version of OS
[root@linuxhelp ~]# cat /etc/os-release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.6 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="7.6"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.6 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.6:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.6
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="7.6"
Use the below link to download the zimplit cms
[root@linuxhelp ~]# wget https://codeload.github.com/niutech/zimplitcms/zip/master
--2020-09-10 19:41:50-- https://codeload.github.com/niutech/zimplitcms/zip/master
Resolving codeload.github.com (codeload.github.com)... 13.127.152.42
Connecting to codeload.github.com (codeload.github.com)|13.127.152.42|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master’
[ <=> ] 4,49,132 924KB/s in 0.5s
2020-09-10 19:41:51 (924 KB/s) - ‘master’ saved [449132]
After downloaded unzip the file under html directory
[root@linuxhelp ~]# unzip master -d /var/www/html/
Archive: master
21a78d5bbd4b444a2bcaa56d71404795166cf4af
creating: /var/www/html/zimplitcms-master/
inflating: /var/www/html/zimplitcms-master/README.md
creating: /var/www/html/zimplitcms-master/Z-scripts/
inflating: /var/www/html/zimplitcms-master/Z-scripts/pclzip.lib.php
inflating: /var/www/html/zimplitcms-master/Zconfig.php
creating: /var/www/html/zimplitcms-master/editor/
inflating: /var/www/html/zimplitcms-master/editor/Gmaps.js
inflating: /var/www/html/zimplitcms-master/editor/ZZMenu.js
….
Then change directory to html
[root@linuxhelp ~]# cd /var/www/html/
And rename the unzipped directory
[root@linuxhelp html]# mv zimplitcms-master/ zimplit
Then we have to change ownership and permission for the directory
[root@linuxhelp html]# chown -R apache. ./
[root@linuxhelp html]# chmod -R 755 ./
Now, configure the virtualhost for the zimplit cms
[root@linuxhelp html]# vim /etc/httpd/conf.d/zimplit.conf
<virtualhost *:80>
ServerAdmin admin@zimplit.org
DocumentRoot /var/www/html/zimplit/
ServerName zimplit.org
ServerAlias www.zimplit.org
<Directory /var/www/html/zimplit/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/httpd/zimplit.org-error_log
CustomLog /var/log/httpd/zimplit.org-access_log common
</virtualhost>
After virtualhost creation edit the host file
[root@linuxhelp html]# vim /etc/hosts
Once configuration part is done restart the apache service to update the changes
[root@linuxhelp html]# systemctl restart httpd
Go to Browser, In address bar type zimplit.org/zimplit.php to visit the installation

Configure the user account then click on start option

Accept the terms and use, then provide the website site which you want to download the design


With this, the method to install zimplit cms on RHEL7.6 comes to end
Comments ( 0 )
No comments available