User login

automation

Install Drupal 7 from the command line... with Drush, of course

Given a Drupal installation (that is, drush dl drupal), Drush can fully install Drupal, even creating the database if it has permission.

drush site-install standard --account-name=admin --account-pass=[useruser_pass] --db-url=mysql://[db_user]:[db_pass]@localhost/[db_name]

Or, shorter:
drush si --db-url=mysql://[db_user]:[db_pass]@localhost/[db_name]

(The profile defaults to standard, and the account name and account pass to 'admin'.)

The site name flag is --site-name=yada

Syndicate content