"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

config.class.php 590B

12345678910111213141516171819
  1. <?php
  2. class Config {
  3. /** Site Settings */
  4. public static $sys_url = "https://aspit.dfine.net/odensetrack/"; //Website URL WITH tailing slash
  5. public static $debug = true; // Public debug flag
  6. public static $closed = false; // If set to true, the site wont load. Useful when not using login.
  7. /** MySQL settings */
  8. public static $mysql_host = "127.0.0.1";
  9. public static $mysql_user = "aspit";
  10. public static $mysql_pass = "Sist1hg2!";
  11. public static $mysql_db = "aspit";
  12. /** Extended database settings */
  13. public static $db_tableusers = "users";
  14. }