Versions Compared

Key

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

...

Code Block
languagebash
titleUnzip method 1
Save the downloaded islandora-7.x-1.4.zip file into /opt/downloads
# cd /var/www/drupal/sites/all/modules
# unzip /opt/downloads/islandora-7.x-1.4.zip
# mv islandora-7.x-.1.4 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

...

  • Method 3: From within Drupal: navigate to base-site-url/admin/modules/install. From here, either upload the zipped module, or enter https://github.com/Islandora/islandora/archive/7.x.zip into the text box there. Note that this method is less reliable, as it requires the correct permissions to have been previously set up using your web server

  • Change the permissions on Drupal sub-directories to match the webserver daemon:
Code Block
languagebash
titlefix permissions
# cd /var/www/drupal/sites/all
# chown -R www-data:www-data *

...

  • Set up the policies to allow Islandora to connect to Fedora. This is done by making changes in /usr/local/fedora/data/fedora-xacml-policies/repository-policies:

...