• 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 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
{{postValue.id}}

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
{{postCtrl.cmtErrMsg}}

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

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 Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

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.