1drush dl og-7.x-1.3 2drush en og-7.x-1.4 More details in https://www.drupal.org/node/1499548
Read More1## Generate drupal admin access. 2## 3drush user:create admin --mail="admin.NOREPLY@example.com" --password="admin" 4drush user:role:add "administrator" admin
Read MoreGo to drupal root, then: 1drush upwd --password="newPassword_here" "the_user" More info in https://www.drupal.org/node/44164
Read MoreYou need to be part of the "Team". Access the site name and go to "Team" and add yourself(assuming you have access). Check back the aliases and you should have it now.
Read MoreDrupal 8 1drush sset system.maintenance_mode FALSE Drupal 7 1drush vset maintenance_mode 0 You may need to clear cache for it to work. See details and some other options if it doesn't work in https://drupal.stackexchange.com/questions/100771/how-do-i-turn-off-maintenance-mode
Read More1cd /var/www/sites 2drush dl drupal-7 --destination=yoursite.example.com --drupal-project-rename=www -y 3cd yoursite.example.com/www 4drush site-install standard --account-name=admin --account-pass=admin --db-url=mysql://myDBA:myDBPASS@localhost/myDB -y See http://www.coderintherye.com/install-drupal-7-using-drush
Read MoreEnable diff module 1drush en diff -y Show all features 1[root@yoursite.example.com docroot]# drush fd 2BEF Test Content bef_test_content Disabled 7.x-3.5 3Keystone Media News content_keystone_media Enabled 7.x-1.0-alpha10 4Content Set #1 content_set_1 Enabled 7.x-1.0-alpha9m 5Content Set #2 content_set_2 Enabled …
Read More1#install composer and Drush 2curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer 3wget -O drush.phar https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar 4chmod +x drush.phar 5sudo mv drush.phar /usr/local/bin/drush 6cd drupal 7cat > …
Read More