Okay … So on Windows 7 sometimes after installing WAMP you have an issue starting the WAMP Server. This is caused by port 80 using used by IIS. So to change the Apache port for WAMP complete the following:
This solution is really helpful to use both IIS and WAMP server.
Credits:
1 Response to WAMP Server Port Issue
You must be logged in to post a comment.
Also, if you installing WordPress you will need to create a manual wp-config.php with the following:
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘mytestwp_db’);
/** MySQL database username */
define(‘DB_USER’, ‘root’);
/** MySQL database password */
define(‘DB_PASSWORD’, ”);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);
Review – http://andysylvester.com/2014/01/16/setting-up-wordpress-on-wampserver/