I have installed Wordpress on my pc, but I don't know how it works, here are my steps:
Install WAMP: Donwload bitnami wamp stack and click install.
Create a MySQL database for wordpress: Input
local/phpmyadmin
in firefox ,to create new database and write down the password.Download wordpress, copy web-config-sample.php into web-config.php, and fill the blanks.
Copy wordpress (and all the files in it)
C:\BitNami\wampstack-5.4.24-0\apache2\htdocs\wordpress- At last go to
local\wordpress
in firefox, and start the installation
web-config.php:
define('DB_NAME', 'sql_wordpress');
define('DB_USER', 'root');
define('DB_PASSWORD', 'haha');
define('DB_HOST', 'local:3306');
I named the database sql_wordpress and set password haha
.
I want to know why the installation begin ,when i input local\wordpress in firefox ? What is the principle for the installation?