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

How to install Lepton CMS on Linux mint 18.03

2969

To install Lepton CMS on Linux mint 18.03
Lepton is an open source content management system.which is used for creating and managing dynamic web content. It can be used either as Weblog, CMS or Web Portal and it is written PHP and uses MySQL database. It supports for forums, image galleries, comments and many more.

Prerequisites

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-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 the Lepton cms package using wget command

linuxhelp ~ # wget https://lepton-cms.org/media/download_gallery/LEPTON_stable_3.0.3.zip
--2018-06-15 14:01:07--  https://lepton-cms.org/media/download_gallery/LEPTON_stable_3.0.3.zip
Resolving lepton-cms.org (lepton-cms.org)... 94.102.208.155
Connecting to lepton-cms.org (lepton-cms.org)|94.102.208.155|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6479663 (6.2M) [application/zip]
Saving to: ‘ LEPTON_stable_3.0.3.zip’ 

LEPTON_stable_3.0.3.zip  100%[==================================> ]   6.18M   547KB/s    in 15s     

2018-06-15 14:01:23 (430 KB/s) - ‘ LEPTON_stable_3.0.3.zip’  saved [6479663/6479663]

The download package is a zip file, so unzip the package as follows

linuxhelp ~ # unzip LEPTON_stable_3.0.3.zip 
Archive:  LEPTON_stable_3.0.3.zip
   creating: LEPTON_stable_3.0.3/
  inflating: LEPTON_stable_3.0.3/CHANGELOG 
  inflating: LEPTON_stable_3.0.3/COPYING 
  inflating: LEPTON_stable_3.0.3/INSTALL 
  inflating: LEPTON_stable_3.0.3/LICENSE 
  inflating: LEPTON_stable_3.0.3/README.md 
   creating: LEPTON_stable_3.0.3/upload/
   creating: LEPTON_stable_3.0.3/upload/account/
.
.
.
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/img/white-image.png 
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/index.php 
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/info.php 
   creating: LEPTON_stable_3.0.3/upload/templates/semantic/js/
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/js/cookieconsent.js 
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/js/index.php 
  inflating: LEPTON_stable_3.0.3/upload/templates/semantic/preview.jpg 
  inflating: LEPTON_stable_3.0.3/upload/temp/index.php

Rename the extracted directory

linuxhelp ~ # ls
LEPTON_stable_3.0.3  LEPTON_stable_3.0.3.zip
linuxhelp ~ # mv LEPTON_stable_3.0.3 lepton

Change the ownership and permission for the Lepton directory.

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

Move the lepton directory into the /html location.

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

Create a new virtual host configuration for accessing the Lepton. create Lepton.conf file as follows

linuxhelp ~ # cd /etc/apache2/sites-available/
linuxhelp sites-available # vim lepton.conf

< VirtualHost *:80> 
ServerName www.linuxhelp1.com
DocumentRoot /var/www/html/lepton/
< Directory /var/www/html/lepton/> 
AllowOverride All
allow from all
< /Directory> 
< /VirtualHost> 

Enable the site access.

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

Make an entry to the host file as follows

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

Restart the apache2 service

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://local IP (or) domain name
web_configuration

Verify the PHP requirements
php_setup

Verify the file permissions of the Lepton CMS
file_permission

Configure the Path setting, Language, and Timezone
path_settings

Configure the Database detail.
database_settings

Configure the Admin user setup and site information.
site_settings

Once the installation is done you will see the following page.
Snap7

Log in using the admin user credentials
Snap 8
Admin control panel of Lepton CMS
Snap9

With this, the method to install Lepton CMS on Linux mint 18.03 comes to an end.

Tags:
owen
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

How to download the Lepton CMS package?

A

Execute the following link:
# wget https://lepton-cms.org/media/download_gallery/LEPTON_stable_3.0.3.zip

Q

What are the Prerequisites in Lepton CMS?

A

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

Q

What is Lepton CMS?

A

Lepton is an open source content management system.which is used for creating and managing dynamic web content. It can be used either as Weblog, CMS or Web Portal and it is written PHP and uses MySQL database. It supports for forums, image galleries, comments and many more.

Q

How to extract the download package is a zip file?

A

Run the following command:
# unzip LEPTON_stable_3.0.3.zip

Q

How to Create a new virtual host configuration?

A

Run the following command:
# vim lepton.conf

Related Tutorials in How to install Lepton CMS on Linux mint 18.03

Related Tutorials in How to install Lepton CMS on Linux mint 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 Lepton CMS on Linux mint 18.03

Related Forums in How to install Lepton CMS on Linux mint 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 Lepton CMS on Linux mint 18.03

Related News in How to install Lepton CMS on Linux mint 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 Isaac ?
How to run windows application in linux

I need to run the windows application in my Linux machine, instead of installing from yum repo or any other repos. How to do that..??

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.