Advertisement
Guest User

WP installation

a guest
Apr 2nd, 2017
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Manual local WP installation with XAMPP:
  2.  
  3. 1. Extract WordPress to an empty folder and move the folder to
  4. E:\xampp\htdocs.
  5. 2. Open http://localhost/xampp and log into phpmyadmin.
  6. 3. Create a database for your site mysitename(the name of your site) with collation utf8_unicode_ci and give full database rights to your user.
  7. 4. Copy the wp-config-sample.php into wp-config.php.
  8. 5. Replace where needed with:
  9.  
  10. /** The name of the database for WordPress */
  11. define('DB_NAME', 'mysitename');
  12.  
  13. /** MySQL database username */
  14. define('DB_USER', 'root');
  15.  
  16. /** MySQL database password */
  17. define('DB_PASSWORD', '');
  18.  
  19.  
  20. 6. Go to http://localhost/mysitename/wp-admin/ install and log in!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement