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

How to install CMS made simple 2.2.7 on Linux Mint 18.3

2755

To install CMS Made Simple 2.2.7 on Linux Mint 18.3

CMS Made Simple is an open source content management system, based on PHP and MySQL. With CMS Made Simple virtually anyone can create a professional website and manage its content regardless of experience level. It is so simple to install CMS Made Simple on Linux Mint 18.3, and this tutorial covers the ground on the same process.


Pre-requirements

Install LAMP (Apache, php7.2, MariaDB-server)
In MariaDB (create database, user and give privileges to the user)


FOR PHP INSTALLATION

add-apt-repository ppa:ondrej/php 
apt-get update 
apt-get  install php 7.2 libapache2-mod-php 7.2 php 7.2-common php 7.2-mbstring php 7.2-xmlrpc php 7.2-soap php 7.2-gd php 7.2-xml php 7.2-intl 
php 7.2-mysql php 7.2-cli php 7.2-mcrypt php 7.2-zip php 7.2-curl

Installing CMS Made Simple 2.2.7

First, we have to edit the php.ini file in the following manner.

linuxhelp ~ # vim /etc/php/7.2/apache2/php.ini
max_execution_time = 180
max_execution_time = 180= 256M
post_max_size = 20M
upload_max_file_size = 100M

We have to download the cms made a simple package using wget command.

linuxhelp ~ # wget http://s3.amazonaws.com/cmsms/downloads/14144/cmsms-2.2.7-install.zip
--2018-04-28 06:13:52--  http://s3.amazonaws.com/cmsms/downloads/14144/cmsms-2.2.7-install.zip
Resolving s3.amazonaws.com (s3.amazonaws.com)... 52.216.163.93
Connecting to s3.amazonaws.com (s3.amazonaws.com)|52.216.163.93|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4870827 (4.6M) [application/zip]
Saving to: ‘ cmsms-2.2.7-install.zip’ 

cmsms-2.2.7-install.zip  100%[=================================> ]   4.64M  --.-KB/s    in 0.1s    

2018-04-28 06:14:01 (41.0 MB/s) - ‘ cmsms-2.2.7-install.zip’  saved [4870827/4870827]

After downloading we have to extract and rename the download directory.

linuxhelp ~ # ls
cmsms-2.2.7-install.zip
linuxhelp ~ # unzip cmsms-2.2.7-install.zip -d made
Archive:  cmsms-2.2.7-install.zip
  inflating: made/cmsms-2.2.7-install.php  
  inflating: made/README-PHAR.TXT    
linuxhelp ~ # ls
cmsms-2.2.7-install.zip  made

here we have to move the made directory into the /var/www/html directory.

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

Go to /var/www/html directory.

linuxhelp ~ # cd /var/www/html/
linuxhelp html # ls
index.html  made

We have to change ownership and permission for the made directory.

linuxhelp html # chown -R www-data:www-data made/   chmod -R 775 made/

We have to configure the virtual host for cms made simple cms. Create an empty file named made.conf.

linuxhelp html # cd /etc/apache2/sites-available/
linuxhelp sites-available # vim made.conf 

[&hellip ]
< virtualhost *:80> 
servername  www.linuxhelp1.com
Documentroot  /var/www/html/made/
< Directory /var/www/html/made/> 
AllowOverride
order allow,deny
allow from all
< /Directory> 
< /virtualhost> 
 [&hellip ]      

Enable the made.conf file.

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

Enable the rewrite module.

linuxhelp sites-available # a2enmod rewrite 
Enabling module rewrite.
To activate the new configuration, you need to run:
service apache2 restart

After that, we have to make an entry to the host' s file as follows.

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

Finally, restart the apache web server.

linuxhelp sites-available # systemctl restart apache2.service 

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://< ipaddress or domain name.
snap1

You need to configure the setup of CMS made simple as follows. configure the installation process by choosing language and other basic setup required for installation.
snap2

snap3

Choose the destination directory to find the existing software.
snap4

Verify the compatibility info as follows.

snap5

snap6

snap7

Next, configure the database information and proceed further.
snap8
snap9

snap10

Now set up the admin user setup as follows.
snap11

And then configure the site details.
snap12
Now the application files get installed.
snap13
snap14

After that, you will configure the database work as follows.
snap15


snap16
Now the setup is finished. verify the configuration and login to the admin panel.
snap17
snap18
Now, log in using the admin user credential which you created during configuration.
snap19

After the successful login, you will see the admin dashboard of Cms made simple as shown here
snap20

With this, the method to install cms made simple V 2.2.7 on Linuxmint 18.03 comes to an end.

Tags:
ethan
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

how to download CMS made in ubuntu terminal?

A

you can download the CMS by following command
# wget http://s3.amazonaws.com/cmsms/downloads/12093/cmsmadesimple-1.11.11-full.tar.gz

Q

What is a Content Management System?

A

A Content Management System is a web application, usually run on a web server, to help create and maintain a website. It allows developers to design and build a professional website using their web development skills, but also provides tools to help the layman maintain content without needing those skills.

Q

Why CMS Made Simple™?

A

CMS Made Simple™ is an open source (GPL) package first released in July 2004. It’s built using PHP and MySQL and provides website developers with a simple yet powerful utility to allow building easy to update semi-static websites and applications with dozens to hundreds of pages.

Q

Is CMS Made Simple really "simple"?

A

Yes it is, particularly for editors once the site is created. Many of our experienced users find it a simple tool for developing those sorts of sites. However, as a developer using CMSMS, that does not mean there isn't a learning curve. You will at the least need to learn our vocabulary, explore the package and its options, experiment, and probably do considerable learning.

Q

What knowledge do I need?

A

To take advantage of CMS Made Simple, you should have at a minimum a basic understanding of:

Creating Databases, and backing up / restoring databases.
Working with, and transferring files to a remote host
Manipulating permissions on remote hosts

Related Tutorials in How to install CMS made simple 2.2.7 on Linux Mint 18.3

Related Tutorials in How to install CMS made simple 2.2.7 on Linux Mint 18.3

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 CMS made simple 2.2.7 on Linux Mint 18.3

Related Forums in How to install CMS made simple 2.2.7 on Linux Mint 18.3

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 CMS made simple 2.2.7 on Linux Mint 18.3

Related News in How to install CMS made simple 2.2.7 on Linux Mint 18.3

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 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.