When I run drush user-login username, drush prints a url like http://default/user/reset/1/32323933.... How do I replace default with the actual website name?
Tell me more
×
Drupal Answers is a question and answer site for
Drupal developers and administrators. It's 100% free, no registration required.
|
|
|||
|
You can use option
Or create a record in your aliases.drushrc.php file:
Now you have an alias
|
|||
|
|
site_nameis used to save the name of the site in Drupal 6, the commanddrush vget site_namewould give out the same, so probablydrush vset site_name WHATEVER_NAME_TO_SETshould do the work... – optimusprime619 Dec 25 '12 at 14:27