1. Download Wordpress Installer files

http://wordpress.org/latest.zip or see
http://wordpress.org/download/

2. Unzip it in a folder
eg.C:\wamp\wordpress22

3. Configure Host file for a local site called “wordpress”
127.0.0.1 wordpress

4. Configure appache virtual host to serve the local site from the directory


ServerName wordpress
DocumentRoot C:\wamp\wordpress22


Options Indexes FollowSymLinks Multiviews
Allowoverride All
Order allow,deny
Allow from all

And restart the apache server.

5. create the mysql database

mysql> create database wordpress22;

6. create a mysql user for wordpress22 database operations

mysql> create user wpdbadmin identified by ‘password’;

7. Grant all the privileges to the ‘wpdbadmin’ user

mysql>grant all on wordpress22.* to wpdbadmin identified by ‘passwprd’;
mysql>flush privileges;

8. modify the wordpress configuration file

C:\wamp\wordpress22\wp-config-sample.php

make the file as follows:

save ‘wp-config-sample.php’ file as wp-config.php

9. Run the wordpress installation php

Open the following link in your browser:
C:\wamp\wordpress22\wp-admin\install.php

First Step:
weblog title: Anything you like say your “Name”
your email: first.last@email.com

Then click to go to second step

Second Step:
Wordpress will create a default ‘admin’ account and will show you the password for it.
Note it down carefully.

For earlier versions of wordpress :

Wordpress tries to send the password for the ‘admin’ account to this email address.
This will not work as there is no mail server configured on your local machine.
We will reset the password manually later on.
The password is generated automatically. The default admin account is ‘admin’.
You can close the window when it stops to show any futher activity after waiting a while for the database tables to have been created.

Change the admin user password
mysql> use wordpress22;
mysql>update wp_users set user_pass = “”5f4dcc3b5aa765d61d8327deb882cf99″” where id=1;

“5f4dcc3b5aa765d61d8327deb882cf99″ is md5 equivilant of text “password”
md5 generator : http://www.adamek.biz/md5-generator.php
md5(”password”) = “5f4dcc3b5aa765d61d8327deb882cf99″

10. Test the Wordpress installation

Open the following link in the browser window, for the a general view:
http://wordpress/

It should show you the normal wordpress page.

Open the following link in the browser window for admin page:
http://wordpress/wp-login.php
Type the user name : ‘admin’ , password : ‘password’

It should show the wordpress admin dashboard.

— Wordpress installation complete –

Recent reads

About

This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.

Recent Articles

Support

  • The World Wildlife Fund