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

How to install Landing cms on ubuntu 18.10

  • 0:43 lsb_release -a
  • 0:58 wget https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.zip
  • 01:17 unzip 0.0.6.zip
  • 01:33 mv Landing-CMS-0.0.6 /var/www/landing
  • 01:50 chown -R www-data.www-data /var/www/landing
  • 02:13 chmod -R 755 /var/www/landing
  • 02:30 vim /etc/apache2/sites-available/landing.conf
  • 03:32 a2dissite 000-default.conf
  • 03:50 a2ensite landing.conf
  • 04:13 a2enmod rewrite
  • 04:23 systemctl restart apache2
5486

Installation of landing cms 0.0.6 on Ubuntu 18.10

Installation procedure

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

Check the Ubuntu version by using the following command

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 18.10
Release:	18.10
Codename:	cosmic

Download the landing cms package by using wget command

root@linuxhelp:~# wget https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.zip
--2019-04-11 10:32:23--  https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.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/Elias-Black/Landing-CMS/zip/0.0.6 [following]
--2019-04-11 10:32:24--  https://codeload.github.com/Elias-Black/Landing-CMS/zip/0.0.6
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.0.6.zip’
0.0.6.zip                       [               <=>                        ]   2.25M   627KB/s    in 3.7s    
2019-04-11 10:32:29 (627 KB/s) - ‘0.0.6.zip’ saved [2359509]

After download is completed extract the download package using unzip command

root@linuxhelp:~# unzip 0.0.6.zip
Archive:  0.0.6.zip
61d4ba5ff68cfe80e7f5a19d7d0e42d6c242acc0
   creating: Landing-CMS-0.0.6/
  inflating: Landing-CMS-0.0.6/LICENSE  
  inflating: Landing-CMS-0.0.6/README.md  
   creating: Landing-CMS-0.0.6/assets/
   creating: Landing-CMS-0.0.6/assets/_cms/
   creating: Landing-CMS-0.0.6/assets/_cms/css/
  inflating: Landing-CMS-0.0.6/assets/_cms/css/main.css  
  inflating: Landing-CMS-0.0.6/assets/_cms/css/no_js.css  
   creating: Landing-CMS-0.0.6/assets/_cms/img/
 extracting: Landing-CMS-0.0.6/assets/_cms/img/50-black.png  
 extracting: Landing-CMS-0.0.6/assets/_cms/img/50-white.png  
 extracting: Landing-CMS-0.0.6/assets/_cms/img/icon-collapse.png  
 extracting: Landing-CMS-0.0.6/assets/_cms/img/icon-copy-black.png  
.
.
.
Creating: Landing-CMS-0.0.6/cms/login/
  inflating: Landing-CMS-0.0.6/cms/login/index.php  
   creating: Landing-CMS-0.0.6/cms/password/
  inflating: Landing-CMS-0.0.6/cms/password/index.php  
  inflating: Landing-CMS-0.0.6/index.php  
  inflating: Landing-CMS-0.0.6/install.php  
   creating: Landing-CMS-0.0.6/modules/
  inflating: Landing-CMS-0.0.6/modules/rand_num.php  
  inflating: Landing-CMS-0.0.6/robots.txt  

Move the landing cms directory to apache root directory

ot@linuxhelp:~# mv Landing-CMS-0.0.6 /var/www/landing

Set the ownership and permission for the Landing cms

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

Create a new virtual host configuration for accessing the Landing cms

root@linuxhelp:~# vim /etc/apache2/sites-available/landing.conf
<Virtualhost *:80>
 Servername www.linuxhelp1.com
 Documentroot /var/www/landing
</Virtualhost>

Disable default site access

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 landing cms

root@linuxhelp:~# a2ensite landing.conf
Enabling site landing.
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

After completing all the step restart the apache service by using the following command

root@linuxhelp:~# systemctl restart apache2

Now you can proceed the further installation and configuration from the browser by navigating to the following domain name

snap1 Welcome page of landing cms. Here click ‘Go to CMS’. snap2 Give password for landing cms.

snap3 You will see the landing cms dashboard as show below snap4

With this, the method to install Landing cms 0.0.6 on Ubuntu 18.10 comes to an end

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Landing CMS?

A

Landing CMS is a simple and cross-platform for management landing pages. It doesn't use any databases.

Q

How to create separate access and error log for Landing CMS?

A

Enable custom access and error log in the virtual host file for Landing CMS.

Q

What version of PHP is recommended for Landing CMS?

A

Version Php5.6 and above is recommended for Landing CMS.

Q

Is Landing CMS Opensource Application?

A

Landing CMS is free and opensource application.

Q

Where to find the latest release of Landing CMS?

A

You can find the latest releases of Landing CMS is https://github.com/Elias-Black/Landing-CMS/.

Related Tutorials in How to install Landing cms on ubuntu 18.10

Related Tutorials in How to install Landing cms on ubuntu 18.10

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018

Related Forums in How to install Landing cms on ubuntu 18.10

Related Forums in How to install Landing cms on ubuntu 18.10

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017

Related News in How to install Landing cms on ubuntu 18.10

Related News in How to install Landing cms on ubuntu 18.10

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
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 keel johnston ?
Unhide the folders on windows Explorer

Give any solutions to unhide folder using command prompt?

forum3

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.