Skip to content
/ Loris Public
forked from aces/Loris

LORIS is a web-accessible database solution for longitudinal multi-site studies.

License

Notifications You must be signed in to change notification settings

LeighMac/Loris

 
 

Repository files navigation

#LORIS Neuroimaging Platform Build Status

LORIS (Longitudinal Online Research and Imaging System) is a web-based data and project management software for neuroimaging research. LORIS makes it easy to manage large datasets including behavioural, clinical, neuroimaging and genetic data acquired over time or at different sites.


NEW ⇾ Try LORIS on Heroku before installing it on your system
Test out the project management and clinical data management side of LORIS (complete Imaging features not yet available)
Deploy and log in with username admin and the password that's set up during deployment via ClearDB. [![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/aces/Loris/tree/17.0-dev)

This Readme covers installation of the 17.0 LORIS development branch on Ubuntu. (CentOS Readme also available).

If you are looking to install a stable release, please consult the Releases page and the Readme for the last stable release.

Please consult the LORIS Wiki Setup Guide notes on this Install process for more information not included in this Readme. The LORIS Developers mailing list may also provide installation guidance not covered in the Wiki.

Prerequisites for Installation

  • LINUX (supported on Ubuntu 14.04 and CentOS 6.5)
  • Apache2 (libapache2-mod-php5)
  • MySQL 5.5 or lower (libmysqlclient15-dev mysql-client mysql-server)
  • PHP 5.6 (php5 php5-mysql php5-gd php5-sqlite)
  • php5-json (for Debian/Ubuntu distributions)
  • Package manager (for LINUX distributions)
  • Composer : should be run with --no-dev option

Important:

  • Only PHP 5.6 is supported for LORIS 16.1. We recommend installing/upgrading PHP using this (deprecated) PPA repository: ppa:ondrej/php5-5.6
  • MySQL 5.7 is not supported for LORIS 16.1 and will cause errors when loading LORIS. MySQL 5.5 or lower (5.*) is recommmended.
  • Composer should be run with --no-dev option unless you are an active LORIS developer.

Consult the LORIS Wiki page on this Install process for more information.

Installation

  1. Set up LINUX user lorisadmin and create LORIS base directory:

    sudo useradd -U -m -G sudo -s /bin/bash lorisadmin
    sudo passwd lorisadmin
    su - lorisadmin
    

    Important ⇾ All steps from this point forward must be executed by lorisadmin user

    sudo mkdir -m 775 -p /var/www/$projectname
    sudo chown lorisadmin.lorisadmin /var/www/$projectname
    

    $projectname ⇾ "loris" or one-word project name

  2. Get code: Download the latest release from the releases page and extract it to /var/www/$projectname

  3. Run installer script to install core code, and libraries. The script will prompt for information and so that it can create directories automatically.

    For more information, please read the Install Script wiki page.

    cd /var/www/$projectname/tools
    ./install.sh
    
  4. Apache configuration and restart LORIS requires Apache's mod_rewrite module to rewrite its URLs. Enable this module, then restart Apache:

    sudo a2enmod rewrite
    sudo service apache2 reload
    
  5. Go to http://localhost/installdb.php and follow the instructions to finalize LORIS installation.

    Note: Apache config files will be installed as *.conf, per Ubuntu 14.04. If running an earlier version of Ubuntu, rename these files, then run the following commands. After, restart Apache.

    sudo a2dissite default
    sudo a2ensite $projectname
    
  6. Follow the Setup Guide in the LORIS Wiki to complete your post-installation setup and configuration, and for more documentation.

Community

Please feel free to subscribe to the LORIS Developers mailing list to ask any LORIS-related questions.

About

LORIS is a web-accessible database solution for longitudinal multi-site studies.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 48.0%
  • JavaScript 38.7%
  • Smarty 10.7%
  • CSS 1.3%
  • SQLPL 0.9%
  • ApacheConf 0.2%
  • Other 0.2%