How-to-install-and-configure-WORDPRESS-4.4-in-CentOS-6.7/Fedora21/Ubuntu-14.04
As you people already why wordpress is used most. So hear we are not going to discuss about it. But we will see what are the new features in Wordpress-4.4. We will see the installation and configuration of Wordpress-4.4.
1. First we will create a database :-
2. Now we will download the wordpress-4.4.zip package :-
3. Create a directory inside /var/www/html/ and move the content to it :-
4. Change the permission and ownership to install :-
5. Enable rewrite mode
For CentOS-6.7/Fedora-21
For Ubuntu-14.04
6. Now lets open the browser for GUI installation :-
http://192.168.15.47/wordpress4
http://localhost/wordpress4
Select the Language :- English (United States)
The next screen will prompt you for getting the database information is going to be required:-
Now enter the database information which we created at the first step of our article :-
After submitting it will ask you to "Run the Install"
A welcome screen will appear fill in the details to proceed
Here you can see Wordpress Installed Successfully
Click on the Log In button to see what's new Inside !!!!!
You can change the theme by going to Appearance like below :-
You can add a New Post by going to Post :-
Admin Panel :- http://localhost/wordpress4/wp-admin
That's it Enjoy using the latest wordpress-4.4
Please Do Likes, Comment and Share
As you people already why wordpress is used most. So hear we are not going to discuss about it. But we will see what are the new features in Wordpress-4.4. We will see the installation and configuration of Wordpress-4.4.
1. First we will create a database :-
CREATE DATABASE wordpress4; CREATE USER wordpress4@localhost IDENTIFIED BY 'wordpress4'; GRANT ALL PRIVILEGES ON wordpress4.* TO wordpress4@localhost; FLUSH PRIVILEGES;
2. Now we will download the wordpress-4.4.zip package :-
cd /tmp && wget https://wordpress.org/latest.zip
3. Create a directory inside /var/www/html/ and move the content to it :-
unzip /tmp/wordpress-4.4.zip mkdir /var/wwww/html/wordpress4
mv wordpress/* /var/www/html/wordpress4
4. Change the permission and ownership to install :-
For CentOS-6.7/Fedora-21 chmod -R 755 /var/www/html/wordpress4 chown -R apache:apache /var/www/html/wordpress4 For Ubuntu-14.04 sudo chmod -R 755 /var/www/html/wordpress4 sudo chown -R www-data:www-data /var/www/html/wordpress4
5. Enable rewrite mode
For CentOS-6.7/Fedora-21
# Further relax access to the default document root: <Directory "/var/www/html"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.4/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride All # # Controls who can get stuff from this server. # Require all granted </Directory>
For Ubuntu-14.04
sudo a2enmod rewrite
6. Now lets open the browser for GUI installation :-
http://192.168.15.47/wordpress4
http://localhost/wordpress4
Select the Language :- English (United States)
The next screen will prompt you for getting the database information is going to be required:-
Now enter the database information which we created at the first step of our article :-
After submitting it will ask you to "Run the Install"
A welcome screen will appear fill in the details to proceed
Here you can see Wordpress Installed Successfully
Click on the Log In button to see what's new Inside !!!!!
You can change the theme by going to Appearance like below :-
You can add a New Post by going to Post :-
Admin Panel :- http://localhost/wordpress4/wp-admin
That's it Enjoy using the latest wordpress-4.4
Please Do Likes, Comment and Share
22:51
Tags :
CentOS
,
Fedora21
,
Linux
,
Ubuntu-12.04
Subscribe by Email
Follow Updates Articles from This Blog via Email
No Comments