How to Install Quick CMS on Linuxmint 19
- 00:45 lsb_release -a
- 01:02 wget https://opensolution.org/download/home.html?sFile=Quick.Cms_v6.6-en.zip
- 01:21 unzip home.html?sFile=Quick.Cms_v6.6-en.zip -d quick
- 01:34 mv quick /var/www/
- 01:44 chown -R www-data.www-data /var/www/quick
- 01:57 chmod -R 755 /var/www/quick
- 02:11 vim /etc/apache2/sites-available/quick.conf
- 03:11 a2dissite 000-default.conf
- 03:23 a2ensite quick.conf
- 03:31 a2enmod rewrite
- 03:41 systemctl restart apache2
Installation Of Quick CMS On Linuxmint 19
Quick CMS is a free content management system software. It has very good tech support. It has many extensions. It takes less time to install the quick cms software. It is incredibly fast and secure. It is very easy to manage.it is very stable. It requires some knowledge of HTML and CSS to set the page design since there are not many templates to choose from. This video covers the tutorial on Installation Of Quick CMS on Linux Mint 19
Requirements for Quick CMS:
Apache
Php and Its modules
Installation procedure
Check the Linuxmint version by using the following command
root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID: LinuxMint
Description: Linux Mint 19 Tara
Release: 19
Codename: tara
Download the Quick installation package by using the wget command.
root@linuxhelp:~# wget https://opensolution.org/download/home.html?sFile=Quick.Cms_v6.6-en.zip
--2019-08-07 04:21:20-- https://opensolution.org/download/home.html?sFile=Quick.Cms_v6.6-en.zip
Resolving opensolution.org (opensolution.org)... 94.152.51.156
Connecting to opensolution.org (opensolution.org)|94.152.51.156|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘home.html?sFile=Quick.Cms_v6.6-en.zip’
home.html?sFile=Quick.Cms_v [ <=> ] 787.35K 148KB/s in 5.5s
2019-08-07 04:21:31 (143 KB/s) - ‘home.html?sFile=Quick.Cms_v6.6-en.zip’ saved [806247]
Once the above step is completed extract the downloaded package using unzip command
root@linuxhelp:~# unzip home.html?sFile=Quick.Cms_v6.6-en.zip -d quick
Archive: home.html?sFile=Quick.Cms_v6.6-en.zip
creating: quick/core/
inflating: quick/core/common-admin.js
inflating: quick/core/common-admin.php
inflating: quick/core/common.js
inflating: quick/core/common.php
.
.
.
inflating: quick/templates/default/img/powered2.png
inflating: quick/templates/default/page.php
inflating: quick/templates/default/style.css
inflating: quick/templates/default/_lists.php
inflating: quick/admin.php
inflating: quick/index.php
inflating: quick/HOW_TO_INSTALL.txt
Move the Quick cms directory to apache root directory by using the following command
root@linuxhelp:~# mv quick /var/www/
Change the ownership and permission for Quick cms by using the following command
root@linuxhelp:~# chown -R www-data.www-data /var/www/quick
root@linuxhelp:~# chmod -R 755 /var/www/quick
Configure the Apache VirtualHost for accessing the Quick cms by using the command
root@linuxhelp:~# vim /etc/apache2/sites-available/quick.conf
<Virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/quick
<directory /var/www/quick>
allowoverride all
allow from all
</directory>
</virtualhost>
Disable the default site access for accessing the Quick cms
root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
systemctl reload apache2
Enable the site access for Quick cms
root@linuxhelp:~# a2ensite quick.conf
Enabling site quick.
To activate the new configuration, you need to run:
systemctl reload apache2
Enable the rewrite module
root@linuxhelp:~# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2
Restart the apache service by using the following command
root@linuxhelp:~# systemctl restart apache2
Once it completed the switch to your browser and enter your domain name.
This is the welcome page of Quick CMS.
Enter the admin credentials to log in the Quick CMS.
This is the Dashboard of Quick CMS
With this, the method to the installation of Quick CMS on Linuxmint 19 comes to an end.
Comments ( 0 )
No comments available