| 12345678910111213141516171819 |
- <?php
-
- class Config {
-
- /** Site Settings */
- public static $sys_url = "https://aspit.dfine.net/odensetrack/"; //Website URL WITH tailing slash
- public static $debug = true; // Public debug flag
- public static $closed = false; // If set to true, the site wont load. Useful when not using login.
-
- /** MySQL settings */
- public static $mysql_host = "127.0.0.1";
- public static $mysql_user = "aspit";
- public static $mysql_pass = "Sist1hg2!";
- public static $mysql_db = "aspit";
-
- /** Extended database settings */
- public static $db_tableusers = "users";
-
- }
|