Changes between Version 10 and Version 11 of LEGACY - Drupal Discussion


Ignore:
Timestamp:
09/23/13 15:09:31 (11 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LEGACY - Drupal Discussion

    v10 v11  
    2727== Drush ==
    2828
    29 The deployment of drupal is made easier using 'drush' a command line utility for updating and install drupal core and modules. To update drush itself, run "sudo drush dl drush --destination='/usr/share/php'" then use 'drush pm-update' from within the drupal directory tree to update core drupal and modules. Watch out that running drush (specifically running it as sudo?) can cause problems with file ownership changing to user/group id 6226, and also seems to remove the symlink for dblib in the drupal/includes/database/ directory, which should link to sites/all/modules/dblib_driver_for_sql_server/dblib - this is required for the ICE messaging to work. Updating the datatables module with drush also deletes the downloaded datatables library, which will need restoring from the backup or downloading anew.
     29The deployment of drupal is made easier using 'drush' a command line utility for updating and install drupal core and modules. To update drush itself, run "sudo drush dl drush --destination='/usr/share/php'" then use 'drush pm-update' from within the drupal directory tree to update core drupal and modules.
     30
     31Watch out that running drush (specifically running it as sudo?) can cause problems with file ownership changing to user/group id 6226 (so a "chown -R www-data:www-data *" is needed, and watch out for additional files beginning with a dot), and also tends to remove the symlink for dblib in the drupal/includes/database/ directory, which should link to sites/all/modules/dblib_driver_for_sql_server/dblib - this is required for the ICE messaging to work.
     32
     33Updating the datatables module with drush also deletes the downloaded datatables library, which will need restoring from the backup or downloading anew.