Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To install the module, use the standard Drupal module installation structure:. Get the module from the Release Notes and Downloads page.

  • Place the unpackaged module in your site's 'modules' folder, with the name stripped out of the version. For single-site installations, this should almost always be in /var/www/drupal/sites/all/modules.

...

 

Code Block
languagebash
titleUnzip method 1
Save the downloaded islandora-7.x-1.5.zip file into /opt/downloads
# cd /var/www/drupal/sites/all/modules
# unzip /opt/downloads/islandora-7.x-1.5.zip
# mv islandora-7.x-1.5 islandora
# chown -R www-data:www-data islandora
  • Method 2: Manually via the command line with git download:
Code Block
languagebash
titleUnzip method 2
# cd /opt/downloads
# git clone -b 7.x https://github.com/Islandora/islandora.git
# cp -R /opt/downloads/islandora /var/www/drupal/sites/all/modules
# cd /var/www/drupal/sites/all/modules
# chown -R www-data:www-data islandora

...

  • Change the permissions on Drupal sub-directories to match the webserver daemon and restart tomcat:

...