• 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 Cotonti 0.9.19 On CentOS 7.5

  • 00:47 rpm -q centos-release
  • 01:06 mysql -u root -p
  • 02:23 wget https://github.com/Cotonti/Cotonti/archive/0.9.19.zip
  • 02:44 unzip 0.9.19.zip
  • 02:57 mv Cotonti-0.9.19 /var/www/cotonti
  • 03:11 chown -R apache:apache /var/www/cotonti
  • 03:26 chmod -R 755 /var/www/cotonti
  • 03:40 vim /etc/httpd/conf.d/cotonti.conf
  • 04:30 systemctl restart httpd
{{postValue.id}}

Installation Of Cotonti Cms 0.9.19 On Centos 7.5

Requirements for cotonti cms:

Apache

mariadb

PHP 5.6 and its modules

( php php-gd php-curl php-zip php-soap php-mbstring php-mcrypt php-xml php-pdo php-mysql)

Installation procedure

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

Check the centos version by 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 cotonti;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> create user 'cotouser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> grant all privileges on cotonti.* to 'cotouser'@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, Download the cotonti cms with the help of the following command.

[root@linuxhelp ~]# wget https://github.com/Cotonti/Cotonti/archive/0.9.19.zip
--2019-04-22 15:10:44--  https://github.com/Cotonti/Cotonti/archive/0.9.19.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/Cotonti/Cotonti/zip/0.9.19 [following]
--2019-04-22 15:10:46--  https://codeload.github.com/Cotonti/Cotonti/zip/0.9.19
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: ‘0.9.19.zip’
    [                           <=>                             ] 3,548,667    578KB/s   in 7.6s   
2019-04-22 15:10:54 (453 KB/s) - ‘0.9.19.zip’ saved [3548667]

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

[root@linuxhelp ~]# unzip 0.9.19.zip
Archive:  0.9.19.zip
79bf592175f89fd8e537671169fe70fd3a34fe9c
   creating: Cotonti-0.9.19/
  inflating: Cotonti-0.9.19/.gitattributes  
  inflating: Cotonti-0.9.19/.gitignore  
 extracting: Cotonti-0.9.19/.htaccess  
  inflating: Cotonti-0.9.19/Install.txt  
  inflating: Cotonti-0.9.19/License.txt  
  inflating: Cotonti-0.9.19/README.md  
  inflating: Cotonti-0.9.19/admin.php  
 extracting: Cotonti-0.9.19/apple-touch-icon.png  
   creating: Cotonti-0.9.19/datas/
.
.
 . 
inflating: Cotonti-0.9.19/themes/symisun-03/users.details.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/users.edit.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/users.passrecover.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/users.profile.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/users.register.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/users.tpl  
  inflating: Cotonti-0.9.19/themes/symisun-03/warnings.tpl  

Move the cotonti cms directory to apache root directory

[root@linuxhelp ~]# mv Cotonti-0.9.19 /var/www/cotonti

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

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

Configure the virtualhost for accesing the cotonti cms

[root@linuxhelp ~]# vim /etc/httpd/conf.d/cotonti.conf

Restart the apache service by using the following command

[root@linuxhelp ~]# systemctl restart httpd

Switch to your browser and enter the domain name snap1 The Cotonti Web Installer appears on your screen. select the required language snap2 Check the configuration file and click next snap3 Enter the database information in the appropriate fields. Click Next once it is done. snap4 Enter the administrative account information and click Next. snap5 Select the Modules and Plugins that you need and click Finish. snap6 The installation is now completed. Click the view to site snap7 Click login at the bottom and enter the login details. snap8 This is the cotonti cms Administration Panel. snap9

With this, the installation of Cotonti CMS 0.9.19 on centos 7.5 comes to an end.

Tags:
gabriel
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

Where to Download the extension for the Cotonti CMS?

A

Use the following link to get download the extension for the Cotonti CMS as follow "https://www.cotonti.com/extensions/"

Q

Which PHP version will support the Cotonti CMS?

A

The php 5.3 to 7.2 version will support the Cotonti CMS.

Q

What is the alternative tool for the Cotonti CMS?

A

The following tool is alternative for Cotonti CMS is given below,



SilverStripe,

Wordpress,

Joomla,

etc.,

Q

Is it possible to install Cotonti CMS on Windows?

A

Yes, the Cotonti CMS application can be installed on Windows.

Q

What are the benefits of cotonti cms website?

A

There are so many benefits is there some





Simplified content management – Managing content becomes non-technical





Saves time and effort – Its advanced functionality and automation saves time & labor





Complete control- You can make changes anytime, anywhere.

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 Ganesh Konka ?
Zentya 6.1 http proxy configuration

please send link for creating zentyal 6.1 for http proxy and firewall as gateway.

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.