Installation
From BioCASe Monitor Wiki
(Difference between revisions)
Thomas.pfuhl (Talk | contribs) m |
Thomas.pfuhl (Talk | contribs) |
||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
= Versions >= 2.0 = | = Versions >= 2.0 = | ||
+ | |||
+ | |||
+ | Get BioCASe Monitor Service from GitHub: https://github.com/MfN-Berlin/BioCASe-Monitor-Service | ||
+ | |||
+ | and follow the instructions. | ||
+ | |||
= Versions <=1.43 = | = Versions <=1.43 = | ||
− | + | Get BioCASe Monitor Service from the VN repository | |
+ | |||
+ | |||
* check out the the latest revision from the SVN repository by using a common SVN client or by using the command line | * check out the the latest revision from the SVN repository by using a common SVN client or by using the command line | ||
Latest revision as of 08:47, 4 January 2017
Versions >= 2.0
Get BioCASe Monitor Service from GitHub: https://github.com/MfN-Berlin/BioCASe-Monitor-Service
and follow the instructions.
Versions <=1.43
Get BioCASe Monitor Service from the VN repository
- check out the the latest revision from the SVN repository by using a common SVN client or by using the command line
svn checkout http://svnrepo.biodiv.naturkundemuseum-berlin.de/repos/biocasemonitor --username public_user --password svn
Public acccess is possible with the following account data:
Username: public_user Password: svn
Set up the service
- use the file "default_config.php" for setting up your configuration
- please do only edit the highlighted first block within this file:
// ------- HERE YOU CAN MAKE YOUR INDIVIDUAL CONFIGURATION ------- // /* Work directory that contains the folders "core", "images", "css" and "js" etc. */ // ... as URL $workdir = "http://edit.africamuseum.be/biocasemonitor"; // and as absolute path define("WORK_DIR_FS", "/var/www/biocasemonitor_dev"); /* Security */ define("SALT","BLMM@jrme-&a"); // Set the MD5 encrypted password define("PWD",md5("MyPassword".SALT)); /* Caching and Performance */ // enable/disable caching $caching = true; // set interval for renewing the cache [in minutes] $caching_interval = 7 * 24 * 60; // every 7 days // ------- PLEASE DON'T CHANGE THIS CONFIGURATION ------- //
- save your configuration as "config.php" in the main directory
(to be continued...)