Installing Drupal – the quick version
The following steps will get you up and running with your Drupal site. This quick-start version gives an overview of the steps required for most setups. A more detailed version follows immediately after this section.
Once you are familiar with the setup process, installing a Drupal site takes between five to ten minutes.
Download the core Drupal codebase from http://drupal.org/project/drupal.
Extract the codebase on your local machine.
Using phpMyAdmin, create a database on your server. Write down the name of the database.
Using phpMyAdmin, create a user on the database using the following SQL statement:
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password';
You will have created the
databasename
in step 3; write down theusername
andpassword
values, as you will need them to complete the install.Upload the Drupal codebase to your web folder.
Navigate to the URL of your site. Follow...