• 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 Gpeasy CMS on Linuxmint 19

  • 00:35 lsb_release -a
  • 00:51 wget https://github.com/jeremykenedy/gpEasy-CMS/archive/master.zip
  • 01:05 unzip master.zip
  • 01:15 mv gpEasy-CMS-master /var/www/gpeasy
  • 01:27 chown -R www-data.www-data /var/www/gpeasy
  • 01:39 chmod -R 755 /var/www/gpeasy
  • 01:51 vim /etc/apache2/sites-available/gpeasy.conf
  • 02:55 a2dissite 000-default.conf
  • 03:08 a2ensite gpeasy.conf
  • 03:15 a2enmod rewrite
  • 03:24 systemctl restart apache2
{{postValue.id}}

Install Gpeasy CMS On Linux Mint 19

gpEasy is a simple, powerful and lightweight CMS. It doesn' t require any databases, it' s flat-file based, and allows you to edit your website on the fly. This tutorial covers the tutorial on Installation Of Gpeasy CMS on Linux Mint 19.

Requirements for Gpeasy CMS:

Apache

Php and Its modules

Installation procedure

Check the Linuxmint version by using the following command

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	LinuxMint
Description:	Linux Mint 19 Tara
Release:	19
Codename:	tara

Download the Gpeasy installation package by using the wget command.

root@linuxhelp:~# wget https://github.com/jeremykenedy/gpEasy-CMS/archive/master.zip
--2019-08-07 06:08:12--  https://github.com/jeremykenedy/gpEasy-CMS/archive/master.zip
Resolving github.com (github.com)... 13.234.210.38
Connecting to github.com (github.com)|13.234.210.38|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/jeremykenedy/gpEasy-CMS/zip/master [following]
--2019-08-07 06:08:13--  https://codeload.github.com/jeremykenedy/gpEasy-CMS/zip/master
Resolving codeload.github.com (codeload.github.com)... 140.82.113.9
Connecting to codeload.github.com (codeload.github.com)|140.82.113.9|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’

master.zip                      [  <=>                                       ]   2.92M   181KB/s    in 23s     

2019-08-07 06:08:38 (128 KB/s) - ‘master.zip’ saved [3063905]

Once the above step is completed extract the downloaded package using unzip command

root@linuxhelp:~# unzip master.zip
Archive:  master.zip
33f4d7cc251bd98f0e810c63cdde26cdca700824
   creating: gpEasy-CMS-master/
   creating: gpEasy-CMS-master/.easymin/
  inflating: gpEasy-CMS-master/.easymin/ignore_prefixes  
 extracting: gpEasy-CMS-master/.easymin/ignore_types  
 extracting: gpEasy-CMS-master/.easymin/noshrink_paths  
  inflating: gpEasy-CMS-master/.gitignore  
  inflating: gpEasy-CMS-master/.htaccess  
  inflating: gpEasy-CMS-master/Addon.ini  
  inflating: gpEasy-CMS-master/Boxfile  
  inflating: gpEasy-CMS-master/README.md  
   creating: gpEasy-CMS-master/addons/
.
.
extracting: gpEasy-CMS-master/themes/Three_point_5/screenshot.png  
  inflating: gpEasy-CMS-master/themes/Three_point_5/settings.php  
  inflating: gpEasy-CMS-master/themes/Three_point_5/template.php  
  inflating: gpEasy-CMS-master/themes/index.html  
  inflating: gpEasy-CMS-master/web.config

Move the Gpeasy cms directory to apache root directory by using the following command

root@linuxhelp:~# mv gpEasy-CMS-master /var/www/gpeasy

Change the ownership and permission for Gpeasy cms by using the following command

root@linuxhelp:~# chown -R www-data.www-data /var/www/gpeasy
root@linuxhelp:~# chmod -R 755 /var/www/gpeasy

Configure the Apache VirtualHost for accessing the Gpeasy cms by using the command

root@linuxhelp:~# vim /etc/apache2/sites-available/gpeasy.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/gpeasy
<directory /var/www/gpeasy>
allowoverride all
allow from all
</directory>
</virtualhost>

Disable the default site access for accessing the Gpeasy cms

root@linuxhelp:~# 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 Gpeasy cms

root@linuxhelp:~# a2ensite gpeasy.conf
Enabling site gpeasy.
To activate the new configuration, you need to run:
systemctl reload apache2

Enable the rewrite module

root@linuxhelp:~# 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@linuxhelp:~# systemctl restart apache2

Once it completed switch to your browser and enter your domain name snap1 Check the requirements snap2 Configure the admin credentials snap3

Installation is completed snap4 This is the dashboard of gpeasy cms snap5 This is admin page of gpeasy cms snap6 With this, the method to installation of Gpeasy CMS on Linux Mint 19 comes to end

Tags:
rolando
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is use of Gpeasy CMS?

A

gpEasy is a simple, powerful and lightweight CMS. It doesn' t require any databases, it' s flat-file based, and allows you to edit your website on the fly

Q

What are the alternatives tools for Gpeasy CMS?

A

Quick cms
Zimplit cms
Monstra cms
etc...

Q

What are the needs of Gpeasy CMS on Linuxmint?

A

Install Apache Server On ubuntu
Install PHP 7.2 And Related Modules

Q

How to configure host entry for Gpeasy cms?

A

Open a host file in Linux as following and add the link to the file

#vim /etc/hosts

Q

What are the PHP modules required for Gpeasy CMS?

A

These are the modules required

php-xml php-mbstring php-ldap php-mysql php-curl php-zip php-mcrypt php-sqlite php-gd

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 Sebastian ?
How to change non required to required field in SuiteCRM Custom/Default Modules

How to change not required to the required field in SuiteCRM Custom/Default Modules?

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.