• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

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
{{postValue.id}}

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 snap1 Choose the language for the Clipper CMS snap2 Select the new installation mode snap3 Configure the database information snap4 snap5 Configure the admin steup snap6

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

With this, the method to install Clipper CMS 1.3.3 on Ubuntu 18.10 comes to an end.

Tags:
lincoln
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What can we make use of the clipper cms application?

A

You can use this web software to build websites, personal blogs and also complex and dynamic applications.

Q

What are the features that clipper cms offers build sites?

A

This section gets down to the nuts and bolts of building websites with ClipperCMS. In it, you will find detailed practical information about using the system's various elements to build

Q

How to configure the host entry on clipper CMS?

A

To configure the host entry Enter into #vim /etc/hosts





Q

What are the required php modules for clipper cms?

A

These are the required modules (php php-mbstring php-xml php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt)

Q

What is the Purpose of using ClipperCMS?

A

ClipperCMS is a flexible and powerful open source content management system. You can use this web software to build websites, personal blogs and also complex and dynamic applications.

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Jayce ?
What are the types of table used in IPtables

What are the various types of table used in IPtables and how to use that for my server security?

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.