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:
Unzip method 2
Code Block
languagebash
title
# 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 and restart tomcat:

...

Once installed, configuration options for the Islandora module can be found on your site at http://path.to.your.site/admin/islandora/configure.  The configuration panel is depicted in the screenshot below. 

Image RemovedImage Added

The three tabs to the left of the screen provide the following areas for configuration: Tuque library installation test from milestone 4 is the green check mark in /admin/islandora/configure. It is as simple as that.

Test the Islandora Core Module installation:

...

Code Block
languagebash
titleInstall the Starter Kit
# cd /opt/downloads
# unzip islandora_solution_pack_image-7.x-1.5.zip
 ...
# unzip islandora_solution_pack_pdf-7.x-1.5.zip
 ...
# mv islandora_solution_pack_image-7.x-1.5 islandora_solution_pack_image
# mv islandora_solution_pack_pdf-7.x-1.5 islandora_solution_pack_pdf
# cd /var/www/drupal/sites/all/modules
# cp -R /opt/downloads/islandora_solution_pack_image .
# cp -R /opt/downloads/islandora_solution_pack_pdf .
# chown -R www-data:www-data islandora_solution_pack*
  • Download and install the ImageMagick Drupal module.

    Code Block
    languagebash
    titleInstall the ImageMagick Drupal Module
    # cd /opt/downloads
    # unzip imagemagick-7.x-1.0.zip
    # mv imagemagick-7.x-1.0 imagemagick
    # cd /var/www/drupal/sites/all/modules
    # cp -R /opt/downloads/imagemagick .
    # chown -R www-data:www-data imagemagick 
    
  • Install the OS related dependencies for the PDF Solution Pack (imagemagick, pdftotext and ghostscript):

    Code Block
    languagebash
    titleInstall dependencies
    # apt-get install imagemagick
    # apt-get install pdftotext poppler-utils
    # apt-get install gs
    
  • Now, go into the Drupal modules menu. At the bottom, turn on Basic Image and and PDF solution packs, and save the configuration. Make sure the packages are enabled without error.
  • Go to the main page of the Drupal site. Click the link on the bottom left of the screen that says Islandora Repository. You should see in the "Top-level Collection" pane the two folders titled "Basic Image Collection" and "PDF Collection Collection

...