How to install Clipper CMS 1.3.3 on Ubuntu 18.10
- 00:45 lsb_release -a
- 00:58 mysql -u root -p
- 02:14 wget https://github.com/ClipperCMS/ClipperCMS/archive/clipper_1.3.3.zip
- 02:29 unzip clipper_1.3.3.zip
- 02:40 mv ClipperCMS-clipper_1.3.3 /var/www/clipper
- 02:52 chown -R www-data.www-data /var/www/clipper
- 03:09 chmod -R 755 /var/www/clipper
- 03:23 vim /etc/apache2/sites-available/clipper.conf
- 04:14 a2dissite 000-default.conf
- 04:28 a2ensite clipper.conf
- 04:39 a2enmod rewrite
- 04:49 systemctl restart apache2
Installation of clipper cms 1.3.3 on Ubuntu 18.10
Requirements for clipper cms:
Apache Mysql Php and its modules (php php-mbstring php-xml php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt)
Installation procedure
You need to configure the LAMP setup For the Installation of sitemagic CMS If you dont have the Lamp setup Refer Here
Check the ubuntu version using the following command
root@linuxhelp1:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.10
Release: 18.10
Codename: cosmic
Configure the MySQL database. Log into MySQL as a root user and make the necessary settings.
root@linuxhelp1:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.25-0ubuntu0.18.10.2 (Ubuntu)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database clipper;
Query OK, 1 row affected (0.00 sec)
mysql> create user 'clipuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.01 sec)
mysql> grant all privileges on clipper.* to 'clipuser'@localhost;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
Once the database configuration is done, you shall download the clipper cms with the help of the following command.
root@linuxhelp1:~# wget https://github.com/ClipperCMS/ClipperCMS/archive/clipper_1.3.3.zip
--2019-04-23 20:29:51-- https://github.com/ClipperCMS/ClipperCMS/archive/clipper_1.3.3.zip
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/ClipperCMS/ClipperCMS/zip/clipper_1.3.3 [following]
--2019-04-23 20:29:52-- https://codeload.github.com/ClipperCMS/ClipperCMS/zip/clipper_1.3.3
Resolving codeload.github.com (codeload.github.com)... 192.30.253.121, 192.30.253.120
Connecting to codeload.github.com (codeload.github.com)|192.30.253.121|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘clipper_1.3.3.zip’
clipper_1.3.3.zip [ <=> ] 5.89M 580KB/s in 9.7s
2019-04-23 20:30:03 (619 KB/s) - ‘clipper_1.3.3.zip’ saved [6173410]
Once the download is completed extract the download package using unzip command
root@linuxhelp1:~# unzip clipper_1.3.3.zip
Archive: clipper_1.3.3.zip
0ee9f2cb5bafc683fb7424d484669356c0662ac4
creating: ClipperCMS-clipper_1.3.3/
inflating: ClipperCMS-clipper_1.3.3/.gitignore
inflating: ClipperCMS-clipper_1.3.3/README.md
creating: ClipperCMS-clipper_1.3.3/assets/
creating: ClipperCMS-clipper_1.3.3/assets/cache/
extracting: ClipperCMS-clipper_1.3.3/assets/cache/.gitignore
inflating: ClipperCMS-clipper_1.3.3/assets/cache/index.html
.
.
.
inflating: ClipperCMS-clipper_1.3.3/manager/processors/save_web_user.processor.php
inflating: ClipperCMS-clipper_1.3.3/manager/processors/undelete_content.processor.php
inflating: ClipperCMS-clipper_1.3.3/manager/processors/unpublish_content.processor.php
inflating: ClipperCMS-clipper_1.3.3/manager/processors/user_documents_permissions.class.php
inflating: ClipperCMS-clipper_1.3.3/manager/processors/web_access_groups.processor.php
inflating: ClipperCMS-clipper_1.3.3/sample-robots.txt
Move the clipper cms directory to apache root directory
root@linuxhelp1:~# mv ClipperCMS-clipper_1.3.3 /var/www/clipper
Set the ownership and permission for clipper cms by using the following command
root@linuxhelp1:~# chown -R www-data.www-data /var/www/clipper
root@linuxhelp1:~# chmod -R 755 /var/www/clipper
Configure the virtualhost for accessing the clipper cms
root@linuxhelp1:~# vim /etc/apache2/sites-available/clipper.conf
<Virtualhost *:80>
servername www.linuxhelp1.com
documentroot /var/www/clipper
</Virtualhost>
Disable the default site access
root@linuxhelp1:~# 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 clipper cms
root@linuxhelp1:~# a2ensite clipper.conf
Enabling site clipper.
To activate the new configuration, you need to run:
systemctl reload apache2
Enable the rewrite module
root@linuxhelp1:~# 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@linuxhelp1:~# systemctl restart apache2
Switch to your browser and enter your domain name
Choose the language for the Clipper CMS
Select the new installation mode
Configure the database information
Configure the admin steup

setup the optional items such as site modules, timezone, and Locales
Verify the pre-install validation
you will see the installation results of clipper cms
Now, log in using the Admin user credential of clipper CMS
After the successful login, you will see the Homepage of Clipper CMS

With this, the method to install Clipper CMS 1.3.3 on Ubuntu 18.10 comes to an end.
Comments ( 0 )
No comments available