Before installing the WordPress, you will need to have a database with proper username and password. That’s because you will need these datas to configure this wp-config.php file before you can proced to install your WordPress. In the wp-config.php file, you will find these lines;
define(’DB_NAME’, ‘wordpress’);
define(’DB_USER’, ‘username’);
define(’DB_PASSWORD’, ‘password’);
define(’DB_HOST’, ‘localhost’);
define(’DB_USER’, ‘username’);
define(’DB_PASSWORD’, ‘password’);
define(’DB_HOST’, ‘localhost’);
Note that these are the only part that you will need to configure. Everything on this line after // are comments for information purposes only. Ok, we’ll go through these one by one…
define(’DB_NAME’, ‘wordpress’);
Simply rename the word wordpress with the name of your database. Make sure that you don’t delete the single quotation marks.
define(’DB_USER’, ‘username’);
Rename the word username with your own username.
define(’DB_PASSWORD’, ‘password’);
Rename the password with your MySQL password
Comment?
»
Leave a comment
ajwa . Naj . Wawa . 26 . 











