How to use Wordpress database using WAMP
Rapidsoft Technologies , design, develop and deploy WordPress based websites that help clients achieve their business goals. 1. Install WAMP 2. Download wordpress from wordpress.org 3. OpenURL http://localhost/phpmyadmin/ 4. Create a database called 'rabbit' 5. Create a folder called 'rabbit' in c:/wamp/www/ 6. Put all files in wordpress.zip into c:/wamp/www/rabbit/ 7. Open c:/wamp/www/rabbit/wp-config-sample.php with Notepad+ or Wordpad and change following lines after MYSQL Settings: The name of the database for WordPress :-/define('DB_NAME', 'rabbit'); MySQL database username:- /define('DB_USER', 'root'); MySQL database password :-define('DB_PASSWORD', ''); MySQL hostname :- /define('DB_HOST','localhost'); 8. Save wp-config.sample.php and change its name to wp-config.php 9. Open URL localhost/rabbit/wp-admin/install.php ...