Setting Up ExpressionEngine Database
From InstallationWiki
| Official Page |
| Project Documentation |
| Download |
|
After installing Xampp,we need to set up the database inorder to install ExpressionEngine. When using a hosting service, the host will often have set up your database for you and provided you with the database name, server address, and username and password.
- First, navigate to phpMyAdmin (which is installed with XAMPP). Navigate to http://localhost/phpmyadmin/.
- In the left-hand column there should be a text box that says Create new database. We are going to call our database ee. Then click Create.
- We are then brought to our database screen. Notice on the left-hand side that no tables have been found in the database. This is because the tables are created when ExpressionEngine is installed. For now, we are going to create an ExpressionEngine username. Select SQL from the top menu.
- Next, type in the following command to create a new user called
eeuserwith a password ofpassword, which has all rights to theeedatabase. Click Go.GRANT ALL PRIVILEGES ON ee.* TO eeuser@localhost IDENTIFIED BY 'password' WITH GRANT OPTION
- We should then see a message Your SQL query has been executed successfully. If so, you can click the Privileges tab to verify that
eeuserhas been set up and only has access to theeedatabase.
We are now ready to begin installing ExpressionEngine!
For the purpose of installation, the following information will be needed:
- Root of our website:
http://localhost/(files located inc:\xampp\htdocs\) - MySQL Server Address:
localhost - MySQL Username:
eeuser - MySQL Password:
password - MySQL Database Name:
ee
