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

How to install Pluck CMS on Ubuntu 21.04

  • 00:36 lsb_release -a
  • 00:47 wget https://github.com/pluck-cms/pluck/archive/4.7.9-dev1.zip
  • 00:59 unzip 4.7.9-dev1.zip
  • 01:18 mv pluck-4.7.9-dev1/ /var/www/pluck
  • 01:38 chmod -R 755 /var/www/pluck
  • 02:05 chown -R www-data. /var/www/pluck
  • 02:37 vi /etc/apache2/sites-available/pluck.conf
  • 03:18 a2dissite 000-default.conf
  • 03:40 a2ensite pluck.conf
  • 03:56 a2enmod rewrite
  • 04:13 systemctl restart apache2
  • 04:27 vi /etc/hosts
6764

To Install Pluck CMS on Ubuntu 21.04

Introduction:

Pluck is a CMS (Content Management System) written in PHP, it is open-source and enables you to create unlimited blog pages and albums

Prerequisites:

Apache web server

Maria DB

PHP and its Modules

Installation Procedure:

Step 1: Check the OS version by using the following command

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

Step 2: Download the pluck CMS by using the following command

root@linuxhelp:~# wget https://github.com/pluck-cms/pluck/archive/4.7.9-dev1.zip
--2021-11-22 01:48:18--  https://github.com/pluck-cms/pluck/archive/4.7.9-dev1.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/pluck-cms/pluck/zip/4.7.9-dev1 [following]
--2021-11-22 01:48:18--  https://codeload.github.com/pluck-cms/pluck/zip/4.7.9-dev1
Resolving codeload.github.com (codeload.github.com)... 13.233.43.20
Connecting to codeload.github.com (codeload.github.com)|13.233.43.20|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘4.7.9-dev1.zip’

4.7.9-dev1.zip                   [  <=>                                          ]   1.54M  6.00MB/s    in 0.3s    

2021-11-22 01:48:19 (6.00 MB/s) - ‘4.7.9-dev1.zip’ saved [1614971]

Step 3: Extract pluck CMS by using the following command

root@linuxhelp:~# unzip 4.7.9-dev1.zip 
Archive:  4.7.9-dev1.zip
ca6bc74dd0913554e35b3e1a613bfcc23ce34797
   creating: pluck-4.7.9-dev1/
  inflating: pluck-4.7.9-dev1/README.md  
  inflating: pluck-4.7.9-dev1/admin.php  
   creating: pluck-4.7.9-dev1/data/
   creating: pluck-4.7.9-dev1/data/image/
  inflating: pluck-4.7.9-dev1/data/image/AUTHORS  
 extracting: pluck-4.7.9-dev1/data/image/add.png  
 extracting: pluck-4.7.9-dev1/data/image/add_small.png  
  inflating: pluck-4.7.9-dev1/data/image/back.jpg  
  inflating: pluck-4.7.9-dev1/data/image/back_hover.jpg  

Step 4: Move the extracted file to the apache home directory

root@linuxhelp:~# mv pluck-4.7.9-dev1/ /var/www/pluck

Step 5: Changing permissions to the CMS directory

root@linuxhelp:~# chmod -R 755 /var/www/pluck

Step 6: Change Ownership to the CMS directory

root@linuxhelp:~# chown -R www-data. /var/www/pluck

Step 7: Create Virtual Host for the Pluck CMS

root@linuxhelp:~# vi /etc/apache2/sites-available/pluck.conf

<VirtualHost *:80>

ServerName www.linuxhelp1.com
DocumentRoot /var/www/pluck

</VirtualHost>

Step 8: Disable the default Virtual Host file of apache

root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
  systemctl reload apache2

Step 9: Enabling the Virtual Host

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

Step 10: Enable the read write module of apache

root@linuxhelp:~# a2enmod rewrite
Enable module rewrite.
To activate the new configuration, you need to run:
  systemctl restart apache2

Step 11: Restart the apache web server

root@linuxhelp:~# systemctl restart apache2

Step 12:Make host entry for the local domain

root@linuxhelp:~# vi /etc/hosts
192.168.6.115 www.linuxhelp1.com

Step 13: Open the web address in browser Snap 1

Step 14: Installing the pluck CMS Snap 2

Step 15: Creating Credentials Snap 3

Step 16: Creating Content Snap 4

Step 17: Dash board of Pluck CMS Snap 5

By this installation of Pluck CMS on Ubuntu 21.04 has been completed

Tags:
isaac
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 4 )

Q

What is a virtual host?

A

Virtual hosting is a method for hosting multiple domain names.

Q

What is a2enmod rewrite?

A

By this, we can enable the mod_rewrite module for Apache.

Q

How to disable default Virtual Host in apache?

A

Disable the default Virtual Host in apache by using the "a2dissite 000-default.conf" command.

Q

What does the a2ensite command exactly do?

A

It creates a short link for the virtual host file in the sites-enabled directory.

Related Tutorials in How to install Pluck CMS on Ubuntu 21.04

Related Tutorials in How to install Pluck CMS on Ubuntu 21.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
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
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install Pluck CMS on Ubuntu 21.04

Related Forums in How to install Pluck CMS on Ubuntu 21.04

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
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install Pluck CMS on Ubuntu 21.04

Related News in How to install Pluck CMS on Ubuntu 21.04

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 Elijah ?
Remote Desktop Connection Has Stopped Working

When accessing my remote machine server using remote desktop on a windows machine I am getting this error

forum (1)

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.