• 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 CentOS 7.5

  • 00:53 rpm -q centos-release
  • 01:10 mysql -u root -p
  • 02:40 wget https://github.com/ClipperCMS/ClipperCMS/archive/clipper_1.3.3.zip
  • 02:56 unzip clipper_1.3.3.zip
  • 03:08 mv ClipperCMS-clipper_1.3.3 /var/www/clipper
  • 03:22 chown -R apache:apache /var/www/clipper
  • 03:34 chmod -R 755 /var/www/clipper
  • 03:51 vim /etc/httpd/conf.d/clipper.conf
  • 04:46 systemctl restart httpd
{{postValue.id}}

Installation of clipper cms 1.3.3 on centos 7.5

Requirements for clipper cms: Apache Mariadb Php 5.6 and its modules (php php-mbstring php-xml php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt)

Installation proccedure

You need to configure the LAMP setup For the Installation of clipper CMS If you dont have the Lamp setup Refer Here

Check the centos version using the following command

[root@linuxhelp ~]# rpm -q centos-release
centos-release-7-5.1804.el7.centos.x86_64

configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

[root@linuxhelp ~]# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
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 clipper;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> create user 'clipperuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> grant all privileges on clipper.* to 'clipperuser'@localhost;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> Ctrl-C -- exit!
Aborted

Once the database configuration is done, you shall download the clipper cms with the help of the following command.

[root@linuxhelp ~]# wget https://github.com/ClipperCMS/ClipperCMS/archive/clipper_1.3.3.zip
--2019-04-21 02:01:02--  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-21 02:01:03--  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’
    [                              <=>                          ] 6,173,410   1.12MB/s   in 6.7s   
2019-04-21 02:01:11 (903 KB/s) - ‘clipper_1.3.3.zip’ saved [6173410]

Once the download is completed extract the download package using unzip command

[root@linuxhelp ~]# 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  
   creating: ClipperCMS-clipper_1.3.3/assets/cache/rss/
.
.
.
 inflating: ClipperCMS-clipper_1.3.3/manager/processors/save_snippet.processor.php  
  inflating: ClipperCMS-clipper_1.3.3/manager/processors/save_template.processor.php  
  inflating: ClipperCMS-clipper_1.3.3/manager/processors/save_tmplvars.processor.php  
  inflating: ClipperCMS-clipper_1.3.3/manager/processors/save_user.processor.php  
  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@linuxhelp ~]# mv ClipperCMS-clipper_1.3.3 /var/www/clipper

Set the ownership and permission for clipper cms by using the following command

[root@linuxhelp ~]# chown -R apache:apache /var/www/clipper
[root@linuxhelp ~]# chmod -R 755 /var/www/clipper

Configure the virtualhost for accesing the clipper cms

[root@linuxhelp ~]# vim /etc/httpd/conf.d/clipper.conf
<Virtualhost *:80>
        servername www.linuxhelp1.com
        documentroot /var/www/clipper
</Virtualhost>

Restart the apache service by using the following command

[root@linuxhelp ~]# systemctl restart httpd

Switch to your browser and enter your domain name snap1 Choose the language for the Clipper CMS snap2 Configure the database information snap3 Configure the admin steup snap4 setup the optional items such as site modules, timezone, and Locales snap5 Verify the pre-install validation snap6 you will see the installation results of clipper cms snap7 Now, log in using the Admin user credential of clipper CMS snap8 After the successful login, you will see the Homepage of Clipper CMS snap9

With this, the method to install Clipper CMS 1.3.3 on CentOS 7.5 comes to an end.

Tags:
grayson
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are the benefits of clipper cms application?

A

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

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.

Q

What are the special features clipper CMS offers to 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

What is the required php modules for cllipper 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

How to configure the host entry for clipper CMS?

A

Enter into #vim /etc/hosts



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 legeek ?
Installation of the call center module

hello

I wish to install a call center in virtual with issabel, I downloaded the latest version of it , but I don' t arrive to install the call center module in issabel. please help me

thanks!

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.