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

How To Install Pluck CMS On Centos8

  • 00:51 rpm -q centos-release
  • 01:07 wget https://codeload.github.com/pluck-cms/pluck/zip/master
  • 01:19 unzip master
  • 01:32 mv pluck-master/ /var/www/pluck
  • 01:43 chown -R apache:apache /var/www/pluck
  • 01:58 chmod -R 755 /var/www/pluck
  • 02:14 vim /etc/httpd/conf.d/pluck.conf
  • 03:25 systemctl restart httpd
6308

Installation Of Pluck CMS On Centos8

Pluck is an open source content management system, written in the PHP. With Pluck CMS, you can create your own webpage, even without a hands-on programming experience. One of the notable features of Pluck is that it doesn’t use a separate database to store its data since Pluck stores all your data right on your website, due to its flat-file content management system nature. This feature makes your whole website very portable. This tutorial covers the installation of Pluck CMS on CentOS 8.

Installation process

Check the centos version by using the following command

[root@linuxhelp ~]# rpm -q centos-release
centos-release-8.2-2.2004.0.1.el8.x86_64

Download the pluck cms installation package from its official site

[root@linuxhelp ~]# wget https://codeload.github.com/pluck-cms/pluck/zip/master
--2020-07-31 07:11:34--  https://codeload.github.com/pluck-cms/pluck/zip/master
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: ‘master’

master                     [           <=>             ]   2.34M   846KB/s    in 2.8s    

2020-07-31 07:11:38 (846 KB/s) - ‘master’ saved [2451203]

Once the download Is completed extract the pluck cms by using the following command

[root@linuxhelp ~]# unzip master
Archive:  master
99b52d9d1939cffb7935e54bb574a855f4f970b0
   creating: pluck-master/
  inflating: pluck-master/README.md  
  inflating: pluck-master/admin.php  
   creating: pluck-master/data/
   creating: pluck-master/data/image/
.
.
.
  inflating: pluck-master/install.php  
  inflating: pluck-master/login.php  
  inflating: pluck-master/requirements.php  
  inflating: pluck-master/robots.txt  

Now move the pluck cms apache root directory

[root@linuxhelp ~]# mv pluck-master/ /var/www/pluck

Set the ownsership and permission for pluck cms

[root@linuxhelp ~]# chown -R apache:apache /var/www/pluck
[root@linuxhelp ~]# chmod -R 755 /var/www/pluck

Configure the virtualhost for pluck cms

[root@linuxhelp ~]# vim /etc/httpd/conf.d/pluck.conf
<virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/pluck
<directory /var/www/pluck>
allowoverride all
require all granted
</directory>
</virtualhost>

Once all the step is completed restart the apache server

[root@linuxhelp ~]# systemctl restart httpd

Go to the browser and enter the domain name snap1 This is the welcome page of pluck cms now start installation snap2 And proceed to installation snap3 Now configure the admin credentials
snap4 Now select the title for pluck cms snap5 Enter the password to login the pluck cms snap6 This is the dashboard of pluck cms snap7 With this the installation of pluck cms comes to end

Tags:
michael
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Pluck CMS?

A

Pluck, also known as pluck-cms, is an open source content management system, written in the PHP scripting language. It allows for webpage creation for users with little or no programming experience, and, unlike most content management systems, does not use a database to store its data.

Q

How to download the latest stable version of Pluck CMS?

A

Use the following link
# wget https://github.com/pluck-cms/pluck/archive/master.zip

Q

Does pluck CMS need database?

A

No, It does not need any database support to build Pluck CMS.

Q

Shall I use the separate package installation method for LAMP setup?

A

Yes you can choose any method as per your preference

Q

Is the Stack installation is same as single exection of lamp setup?

A

Yes Both are almost similar but it you want to customize go for manual installation

Related Tutorials in How To Install Pluck CMS On Centos8

Related Tutorials in How To Install Pluck CMS On Centos8

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
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 PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How To Install Pluck CMS On Centos8

Related Forums in How To Install Pluck CMS On Centos8

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017

Related News in How To Install Pluck CMS On Centos8

Related News in How To Install Pluck CMS On Centos8

WordPress and Joomla websites infected by new backdoor malware
WordPress and Joomla websites infected by new backdoor malware
May 31, 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 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.