| 1234567891011121314151617181920212223242526272829 |
- <?php
-
- class Config {
-
- /** Site Settings */
- public static $sys_url = "https://aspit.dfine.net/odensetrack/"; //Website URL WITH tailing slash
- public static $debug = false; // 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 = "";
- public static $mysql_user = "";
- public static $mysql_pass = "";
- public static $mysql_db = "";
-
- /** Extended database settings */
- public static $db_tableusers = "users";
-
- /** Upload settings */
- public static $file_path = "img/uploads/";
- public static $file_types = ['jpeg', 'jpg', 'png', 'svg', 'gif', 'pdf', 'doc', 'docx', 'xlsx', 'xls', 'ppt', 'txt', 'rtf'];
- public static $file_size = 5000000;
-
- /** News Categories */
-
- public static $newscat = ['Ingen kategori', 'Nyhed', 'Breaking', 'Blog'];
-
-
- }
|