How to configure WAMP Server on Windows for local WordPress Development

So you have installed WAMP server and now we need to configure it. In this post I will show you how to configure WAMP Server on Windows for local WordPress development.

If you are coming from my previous post then you should be seeing a green icon on your system tray and are now ready to move to the next steps. Ok, lets get going..

Set WAMP Server to run on automatic

Lets make WAMP server start when Windows starts and make its services run automatically. By default, they will be set to manual.

Configure the ‘Startup Type‘ under Window services to automatic for both wampapache64 and wampmysqld64 services.

wampservices-set-automatic

Now you will want to make wampmanager.exe start when Windows starts.

The easiest way to do this is to place the wampmanager.exe shortcut inside the Windows Startup folder.

The Startup folder is under  Start –> All Programs –> Startup. If you Right Click –> Open you can drag the WAMP short-cut to it.

host-your-website-using-wamp-server-startup-folder

host-your-website-using-wamp-server-startup

Enable Apache rewrite_module

This module will need to be enabled in order to use custom permalinks in WordPress. To enable the Apache module – ‘rewrite_module‘ go to Apache –> Apache modules –> rewrite_module and click on it. A check mark will appear right next to it and WAMP server will re-start. The httpd.conf  file will be adjusted accordingly.

Installing-and-configuring-wamp-server-rewrite-module

Configure PHP.ini

Open php.ini (C:\wamp\bin\php\php5.5.x) and do the following:

Enable wamp server to display errors, if not enabled..

Installing-and-configuring-wamp-server-error-reporting

Enable error reporting. Just un-comment the following lines by deleting ‘ ; ‘ from the begining of the line.

Installing-and-configuring-wamp-server-error-reporting

Increase the maximum size of POST data that php will accept – I changed the value from 3M (default) to 50M.

Installing-and-configuring-wamp-server-post-max-size

Set the MySQL root password

By default, the root account will have no password. It is always good practice to set one up, even if you are developing locally.

There are a few ways to do this but I will show you the one I consider the simplest.

Go to http://localhost/phpmyadmin/ and click on USER

Installing-and-configuring-wamp-server-phpmyadmin-1

On one of the root accounts click on ‘Edit Privileges’. Enter the new password twice and click on ‘GO’. Do this for the remaining root accounts. I suggest making the password the same for all three accounts.

Installing-and-configuring-wamp-server-phpmyadmin-2

Installing-and-configuring-wamp-server-phpmyadmin-3

You may be logged out of PHPMyAdmin after you changed the root@localhost password, in this case you may see the following error.

Installing-and-configuring-wamp-server-phpmyadmin-error
Error #1045 – Access denied for user ‘root’@’locahost’ (using password: yes)

No worries, we will configure PHPMyAdmin with the correct password on the next step.

Configure PHPMyAdmin

Open the config.inc.php file found in C:\wamp\apps\phpmyadmin4.1.x and look for /* Authentication type */ around line 28.

Set your password for the root account by entering it between the single quotes ‘ ‘ in the following line:

$cfg['Servers'][$i]['password'] = 'mypassword';

Installing-and-configuring-wamp-server-phpmyadmin-config.inc

Replace mypassword with your own password of course.

Final Checks

Once you enter your password, save the file and go back to http://localhost/phpmyadmin/

You should have PHPMyAdmin working now. Going to http://localhost/ should also take you to the home page.

If all of the above is working then you should be ready ‘to-go’.

You now have a local web server running Apache, MySQL, and PHP in Windows.

You can now start creating a databases and installing WordPress or any other database driven CMS.

I hope this has helped you get started on your WordPress development projects.

In a future post, I will cover how to create a database and install WordPress locally for those needing further help.

Please subscribe to my blog if you are interested in getting notified when future posts are published.

Let me know if you have any questions or comments. Thank you for stopping by.

6 Comments on “How to configure WAMP Server on Windows for local WordPress Development

  1. Hi Henry:
    These tutorials are excellent: clearly written, easy to follow and implement.

    I have just installed WAMP server on Windows preparing to install WordPress next, but in phpMyAdmin, there is a notice at the bottom right panel that the version installed is 4.1.xx, with a suggestion that I upgrade to the latest, which is 4.4.xx.

    I found this set of upgrade instructions for phpMYAdmin on their wiki:

    https://phpmyadmin.readthedocs.org/en/latest/setup.html#upgrading-from-an-older-version

    but before I proceed, are there any ‘gotchas’ I should be warned about? It seems that going from 4.1 to 4.4 would be more than minor bug fixes. Do you have any advice about doing the upgrade?

    1. Hi Dave, I would recommend upgrading. So far I am not aware of any ‘gotchas’. I think as long as you follow the recommendations on their site (on their wiki) you should be fine. Thanks for the comment 🙂

  2. Your post on configuring WampServer for installation of WordPress is quite informative. Based on this, I was able to configure to configure WampServer 2.5 which is installed on Window 7(32 bit).

    But WordPress(3.3.1) could not be installed even after configuring the Wampserver as per this Post as the Chrome Browser is giving syntax error.

    I appreciate your advice in this regard

Leave a Reply to G K Bhatnagar Cancel reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.