You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
2.3 KiB

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