• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install Couch cms on Linuxmint 18.03

4425

To install Couch cms on Linuxmint 18.03
Couch CMS is a simple and flexible, free and open source Content Management System (CMS) that allows web designers to design beautiful web sites without any knowledge of PHP. With this, the method to install Couch cms on Linux mint-18.03 comes to an end.

Prerequisites
To install LAMP(Apache, MariaDB and php7.2)
In MariaDB (create database and user and give privileges to that user )
Php installation with required following modules

add-apt-repository ppa:ondrej/php 
apt-get update 
apt-get install php7.2 php7.2-mysql php7.2-curl php7.2-json php7.2-cgi libapache2-mod-php7.2 php7.2-mcrypt php7.2-xmlrpc php7.2-gd php7.2-mbstring php7.2  php7.2-common
php7.2-xmlrpc php7.2-soap  php7.2-xml php7.2-intl  php7.2-cli  php7.2-ldap php7.2-zip php7.2-readline php7.2-imap php7.2-tidy php7.2-recode php7.2-sq php7.2-intl

Installation
Download a couch package by using wget command.

linuxhelp ~ # wget https://www.couchcms.com/uploads/CouchCMS-2.1.zip
--2018-06-16 15:11:09--  https://www.couchcms.com/uploads/CouchCMS-2.1.zip
Resolving www.couchcms.com (www.couchcms.com)... 162.144.36.197
Connecting to www.couchcms.com (www.couchcms.com)|162.144.36.197|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2499150 (2.4M) [application/zip]
Saving to: ‘;CouchCMS-2.1.zip’;

CouchCMS-2.1.zip           100%[=====================================>]   2.38M   709KB/s    in 3.4s    

2018-06-16 15:11:14 (709 KB/s) - ‘;CouchCMS-2.1.zip’; saved [2499150/2499150]

The downloaded package is a zip file, so we need to unzip the package now.

linuxhelp ~ # unzip CouchCMS-2.1.zip 
Archive:  CouchCMS-2.1.zip
   creating: CouchCMS-2.1/
  inflating: CouchCMS-2.1/CHANGELOG.md  
   creating: CouchCMS-2.1/couch/
  inflating: CouchCMS-2.1/couch/.htaccess  
   creating: CouchCMS-2.1/couch/addons/
   creating: CouchCMS-2.1/couch/addons/bootstrap-grid/
.
.
.
inflating: CouchCMS-2.1/couch/upload.php  
  inflating: CouchCMS-2.1/couch/uploader.php  
   creating: CouchCMS-2.1/couch/uploads/
   creating: CouchCMS-2.1/couch/uploads/file/
   creating: CouchCMS-2.1/couch/uploads/file/secure/
  inflating: CouchCMS-2.1/couch/uploads/file/secure/.htaccess  
  inflating: CouchCMS-2.1/couch/_index.php  
  inflating: CouchCMS-2.1/INSTALL.md  
  inflating: CouchCMS-2.1/README.md  
  inflating: CouchCMS-2.1/UPGRADE.md

Then, rename the extracted directory

linuxhelp ~ # ls
CouchCMS-2.1  CouchCMS-2.1.zip
linuxhelp ~ # mv CouchCMS-2.1 couch

Change the ownership and permission for couch directory

linuxhelp ~ # chown -R www-data:www-data couch/
linuxhelp ~ # chmod -R 775 couch/

Then we have to move the couch directory into the /html location

linuxhelp ~ # mv couch/ /var/www/html/

Now we have to create a new virtual host configuration for accessing the couch cms application

linuxhelp ~ # cd /etc/apache2/sites-available/
linuxhelp sites-available # vim couch.conf
<VirtualHost *:80>
ServerName www.linuxhelp1.com
DocumentRoot /var/www/html/couch/
<Directory /var/www/html/couch/>
AllowOverride All
allow from all
</Directory>
</VirtualHost>

Go to couch directory. then rename the config.example.php file.

linuxhelp sites-available # cd /var/www/html/couch/couch/
linuxhelp couch # mv config.example.php config.php

now, open the config.php file, then fill the database details.

linuxhelp couch # vim config.php
[…]
// Name of the database
    define( 'K_DB_NAME', 'couch' );
    // 5.
    // Database username
    define( 'K_DB_USER', 'couchuser' );
    // 6.
    // Database password
    define( 'K_DB_PASSWORD', '123' );
    // 7.
    // MySQL hostname (it will usually be 'localhost')
    define( 'K_DB_HOST', 'localhost' );
    // 7b.
[..]

Enable the site access.

linuxhelp couch # a2ensite couch.conf 
Enabling site couch.
To activate the new configuration, you need to run:
  service apache2 reload

Entry to the host file

linuxhelp sites-available # vim /etc/hosts
<your ip address>     <your domain name>

Then we need to restart the apache2 service

linuxhelp sites-available # systemctl restart apache2.service

Now we have to open a browser and type the following URL of http://local IP (or ) domain name

http_request


Now,here fill the admin datails.
fill_admin_details

The installation completed.
installation_completed

Here, give username and password.then, click login.
fill_admin details

Finally, here we can see admin page of couch cms.
admin_page
With this, the method to install Couch cms on Linuxmint 18.03 comes to an end.

Tags:
sebastian
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

what is the purpose of couch cms in linuxmint?

A

Couch CMS is a simple and flexible, free and open source Content Management System (CMS) that allows web designers to design beautiful web sites without any knowledge of PHP.

Q

where to get download the package of couch cms on linuxmint?

A

Download a couch package by using wget command.


# wget https://www.couchcms.com/uploads/CouchCMS-2.1.zip

Q

what are all the Prerequisites needed to install the package of couch in linuxmint?

A

Prerequisites of couch are,
To install LAMP(Apache, MariaDB and php7.2)
In MariaDB (create database and user and give privileges to that user )

Q

what are all the features of couch cms in linuxmint?

A

the features of couch cms in linuxmint are,
Create/manage templates and define editable regions, folders etc. within templates.
Access the Admin panel and create new pages and edit/delete all existing pages.
Create/manage any number of lower level user accounts.
Access the website.

Q

How do I edit or delete a post?

A

Unless you are a board administrator or moderator, you can only edit or delete your own posts. You can edit a post by clicking the edit button for the relevant post, sometimes for only a limited time after the post was made. If someone has already replied to the post, you will find a small piece of text output below the post when you return to the topic which lists the number of times you edited it along with the date and time. This will only appear if someone has made a reply; it will not appear if a moderator or administrator edited the post, though they may leave a note as to why they’ve edited the post at their own discretion. Please note that normal users cannot delete a post once someone has replied.

Related Tutorials in How to install Couch cms on Linuxmint 18.03

Related Tutorials in How to install Couch cms on Linuxmint 18.03

How to install WinRAR 5.11 on Linuxmint 18.03
How to install WinRAR 5.11 on Linuxmint 18.03
May 22, 2018
How to Setup VNC Server on Linux Mint 20
How to Setup VNC Server on Linux Mint 20
Dec 22, 2020
How to install and configure samba setup in Linux mint - 18.3
How to install and configure samba setup in Linux mint - 18.3
Mar 26, 2018
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Sep 19, 2018
How to Install and Configure Samba on Linux Mint 20
How to Install and Configure Samba on Linux Mint 20
Nov 9, 2020
How to Install NextCloud on Linux Mint 18.3
How to Install NextCloud on Linux Mint 18.3
Feb 27, 2018
How To Install And Update OpenSSL On Linuxmint 18.3
How To Install And Update OpenSSL On Linuxmint 18.3
Jun 8, 2018
How To Install AnyDesk on Linux Mint 18.3
How To Install AnyDesk on Linux Mint 18.3
Apr 11, 2018

Related Forums in How to install Couch cms on Linuxmint 18.03

Related Forums in How to install Couch cms on Linuxmint 18.03

Linux
isaac class=
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-8.0/mysql-client-core-8.0_8.0.21-0ubuntu0.20.04.4_amd64.deb 404 Not Found
Dec 4, 2020
Linux Mint
AlxH class=
Complete beginner, install bluegriffon
Jul 1, 2020
Linux
AadrikaAnshu class=
How to add timestamps to history On Any Linux Machine
Jun 18, 2019
Linux Mint
bz0 class=
How to change a function of a key
Jun 7, 2019
Linux Mint
who class=
How to compare multiple files
Nov 10, 2019
NFS (Network File System)
Mike class=
Linux Mint 18.3 - NFS Shares - Only Root Can Mount Share
Oct 4, 2019
Command Line Tools
wayne class=
Deleting windows files booting from mint(usb)
Sep 16, 2017
Ubuntu
Kirin class=
Videos Always Micro-Shutter
Mar 8, 2019

Related News in How to install Couch cms on Linuxmint 18.03

Related News in How to install Couch cms on Linuxmint 18.03

A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
Apr 9, 2019
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
May 2, 2017
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Mar 14, 2017
The Best Linux Operating System is in the house: Mint 18.2
The Best Linux Operating System is in the house: Mint 18.2
Aug 12, 2017
Linux Mint 18.1 released with smooth features and offers long-term support
Linux Mint 18.1 released with smooth features and offers long-term support
Apr 11, 2017
Linux Mint 18.2 Sonya Beta version now available for download
Linux Mint 18.2 Sonya Beta version now available for download
Jun 7, 2017
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 Elijah ?
Remote Desktop Connection Has Stopped Working

When accessing my remote machine server using remote desktop on a windows machine I am getting this error

forum (1)

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.