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

How to install Wordpress CMS V4.9.6 on Fedora-28

2875

To install Wordpress CMS V4.9.6 on Fedora-28

Wordpress is the most powerful and popular content management system (CMS) application. WordPress is a Content Management System, that allows you to create and publish your content on the web. Although it can be used to web publishing and manage content on an intranet or in a single computer. It is so simple to install Wordpress CMS on Fedora 28 and this tutorial covers the ground on the same process.


Pre-requirements

Install LAMP (Apache, php7.2, mariadb-server)
In MariaDB (create database, user and give privileges to the user)

FOR PHP INSTALLATION

yum install php php-opcache php-mysqli php-curl php-xml  php-mcrypt php-gd

Installation

Download WordPress cms package using wget command

[root@linuxhelp ~]# wget https://en-ca.wordpress.org/wordpress-4.9.6-en_CA.zip
--2018-05-31 01:05:58--  https://en-ca.wordpress.org/wordpress-4.9.6-en_CA.zip
Resolving en-ca.wordpress.org (en-ca.wordpress.org)... 198.143.164.252
Connecting to en-ca.wordpress.org (en-ca.wordpress.org)|198.143.164.252|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9925768 (9.5M) [application/zip]
Saving to: ‘ wordpress-4.9.6-en_CA.zip’ 

wordpress-4.9.6-en_CA.z 100%[============================> ]   9.47M   935KB/s    in 11s     

2018-05-31 01:06:11 (897 KB/s) - ‘ wordpress-4.9.6-en_CA.zip’  saved [9925768/9925768]

Extract the package from the downloaded directory.

[root@linuxhelp ~]# unzip wordpress-4.9.6-en_CA.zip 
Archive:  wordpress-4.9.6-en_CA.zip
   creating: wordpress/
  inflating: wordpress/wp-login.php  
  inflating: wordpress/wp-cron.php   
  inflating: wordpress/xmlrpc.php    
  inflating: wordpress/wp-load.php   
   creating: wordpress/wp-admin/
  inflating: wordpress/wp-admin/credits.php  
  inflating: wordpress/wp-admin/admin-functions.php  
.
.
.
inflating: wordpress/wp-includes/class-wp-query.php  
  inflating: wordpress/wp-includes/class-wp-locale-switcher.php  
  inflating: wordpress/wp-includes/class-wp-oembed-controller.php  
  inflating: wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php  
  inflating: wordpress/wp-includes/class-walker-comment.php  
  inflating: wordpress/wp-includes/nav-menu.php  
  inflating: wordpress/wp-includes/class.wp-dependencies.php  
  inflating: wordpress/wp-signup.php  
  inflating: wordpress/wp-links-opml.php  

Move the file to html directory in the following manner.

[root@linuxhelp ~]# ls
anaconda-ks.cfg  Documents  Music     Public     Videos     wordpress-4.9.6-en_CA.zip
Desktop          Downloads  Pictures  Templates  wordpress
[root@linuxhelp ~]# mv wordpress /var/www/html/

Change ownership and permission of the file as follows

[root@linuxhelp ~]# chown -R apache:apache /var/www/html/wordpress/
[root@linuxhelp ~]# chmod -R 775 /var/www/html/wordpress/

Create the virtual host for accessing WordPress CMS.

[root@linuxhelp ~]# vim /etc/httpd/conf/wordpress.conf
< VirtualHost *:80> 
ServerName www.linuxhelp1.ocm
DocumentRoot /var/www/html/wordpress/
< Directory /var/www/html/wordpress/> 
AllowOverride All
Order allow,deny
allow from all
< /Directory> 
< /VirtualHost> 

Make an entry to the host file as follows

[root@linuxhelp ~]# vim /etc/hosts
< give your ip>    < give your localip> 

Finally, restart the apache to make the changes effect.

[root@linuxhelp ~]# systemctl restart httpd

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://< ipaddress or domain name.
web_output

You will see the welcome page of WordPress CMS setup.
welcome_page_of_wordpress

First, you need to configure the database configuration as follows.
configure_db_detail

Now click on ' Run the installation' to start the installation process.
run_wordpress_installer


Next, you need to configure the site information.
configure_information

Now you need to configure the admin credentials setup.
installation_successful

After configuration, you can login into WordPress using the admin user.
wordpress_login


After successful login, you will see the dashboard of WordPress CMS. wordpress_dashboard

With this, the method to install Wordpress CMS version 4.9.6 on Fedora 28 comes to an end.

Tags:
gabriel
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

When was WordPress first released?

A

WordPress started out as a fork of b2/cafelog by Matt Mullenweg and Mike Little. The first version was released in 2003.

Q

What’s the difference between WordPress.org and WordPress.com?

A

WordPress.com is a blog network run by Automattic. It uses WordPress software, but individual blogs are hosted and managed by WordPress.com. This is a free service with premium add-ons and up

Q

I don't know what all the WordPress terms mean: where can I get help?

A

The WordPress Codex has a Glossary where you can find definitions of many of the key phrases associated with WordPress.

Q

How do I Configure the wp-config.php File?

A

run the fopllowing command,
Editing wp-config.php

Q

Why are there path disclosures when directly loading certain files? #Why are there path disclosures when directly loading certain files?

A

This is a server configuration problem. Never enable display_errors on a production site.

Related Tutorials in How to install Wordpress CMS V4.9.6 on Fedora-28

Related Tutorials in How to install Wordpress CMS V4.9.6 on Fedora-28

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 Pligg - Content Management System
How to Install Pligg - Content Management System
Jul 26, 2016
How to install Xibo CMS in Ubuntu
How to install Xibo CMS in Ubuntu
Oct 6, 2016
How to Install Tiki Wiki CMS on Ubuntu 19.04
How to Install Tiki Wiki CMS on Ubuntu 19.04
May 28, 2019
How to Install Alfresco Community Edition in Ubuntu
How to Install Alfresco Community Edition in Ubuntu
Nov 22, 2016
How to install PhpBB 3.2.2 on Ubuntu 18.04
How to install PhpBB 3.2.2 on Ubuntu 18.04
Jun 21, 2018
How to install Wordpress on opensuse15.1
How to install Wordpress on opensuse15.1
Nov 27, 2019
How to install Piwigo 2.9.3 on Ubuntu 18.04
How to install Piwigo 2.9.3 on Ubuntu 18.04
Jun 22, 2018

Related Forums in How to install Wordpress CMS V4.9.6 on Fedora-28

Related Forums in How to install Wordpress CMS V4.9.6 on Fedora-28

Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017
Wordpress
owen class=
how to install wordpress with openlitespeed
Feb 27, 2017
Content Management System (CMS)
mason class=
REQUIRED PDO library with pdo_sqlite extension is not available.
May 9, 2019
Fedora
jacob class=
Error: Failed to synchronize cache for repo 'updates'
Oct 23, 2021
OpenSUSE
niklaus class=
How to configure typesetter on opensuse
Oct 4, 2017
Typesetter CMS
michael class=
PHP Fatal error: Call to undefined function json_ecode()
Nov 23, 2020
Apache
daniel class=
Wordpress Installation : Internal server error
Jun 15, 2018
Content Management System (CMS)
lucas class=
Impress cms showing blank page after Processing "install modules"
Apr 12, 2019

Related News in How to install Wordpress CMS V4.9.6 on Fedora-28

Related News in How to install Wordpress CMS V4.9.6 on Fedora-28

WordPress and Joomla websites infected by new backdoor malware
WordPress and Joomla websites infected by new backdoor malware
May 31, 2019
Nine Popular WordPress plugins affected with critical SQL injection vulnerabilities
Nine Popular WordPress plugins affected with critical SQL injection vulnerabilities
Sep 7, 2019
WordPress 5.1.1 fixes a threatening XSS vulnerability
WordPress 5.1.1 fixes a threatening XSS vulnerability
Mar 22, 2019
Fedora 27 is finally available for download
Fedora 27 is finally available for download
Nov 15, 2017
Fake plugin infects 4,000 WordPress sites.
Fake plugin infects 4,000 WordPress sites.
Apr 5, 2017
WordPress releases version 4.7.5 fixing six security and three general issues
WordPress releases version 4.7.5 fixing six security and three general issues
May 18, 2017
32-bit Linux systems with Fedora 31 will no longer be supported
32-bit Linux systems with Fedora 31 will no longer be supported
Oct 14, 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.