48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<?PHP
|
||
|
||
// copy to ini.live.php and change login credentials
|
||
// and or
|
||
// copy to ini.dev.php and change login credentials for developement
|
||
//and set the link to dev or live credentials at ini.inc.php
|
||
|
||
|
||
// The official name of this literature database:
|
||
$officialDatabaseName = "your database name"; // e.g. "IP<49> Literature Database"
|
||
|
||
|
||
// Specify who'll be allowed to add a new user to the users table:
|
||
// Note, that you should leave this variable as it is, if you're going to use the 'install.php'
|
||
// script and the provided database structure file ('install.sql') for installation. This variable
|
||
// is only provided for people who want to install the refbase database manually (i.e. without using
|
||
// 'install.php' & 'install.sql'). If so, setting this value to "everyone" enables you to add the
|
||
// admin as the very first user (don't forget to specify his email address below!). Then, change the
|
||
// value of $addNewUsers to "admin". By that you prevent other users from messing with your users
|
||
// table. (If the value is set to "everyone", any user will be able to add users to the users table!)
|
||
$addNewUsers = "admin"; // possible values: "everyone", "admin"
|
||
|
||
|
||
// The admin email address (by which a user is granted admin status after successful login!):
|
||
// Note that you must NOT change this email address unless you've already logged in and created your
|
||
// own admin user! See the INSTALL file for instructions on how to setup your own admin user.
|
||
$adminLoginEmail = "you@yourdomain.com"; // e.g. "admin@ipoe.uni-kiel.de"
|
||
|
||
|
||
// The feedback email address to which any support questions or suggestions should be sent:
|
||
$feedbackEmail = "feedback@yourdomain.com"; // e.g. "admin@ipoe.uni-kiel.de"
|
||
|
||
|
||
|
||
|
||
// The full name of the institution hosting this literature database:
|
||
$hostInstitutionName = "Your University or other Organisation; // e.g. "Institute for Polar Ecology"
|
||
|
||
|
||
// The abbreviated name of the institution hosting this literature database:
|
||
$hostInstitutionAbbrevName = "Shortname"; // e.g. "IP<EFBFBD>"
|
||
|
||
|
||
// The URL of the institution hosting this literature database:
|
||
$hostInstitutionURL = "https://yourdomain.com/"; // e.g. "https://www.uni-kiel.de/ipoe/"
|
||
|
||
?>
|