. */ #################################################################### # This file should be renamed to config.php and filled in with the # # correct data. # #################################################################### define("DEBUG", true); // Are we in debug mode? if( !defined("ROOTPATH") ) define("ROOTPATH", "./../"); // Path to root in website (relative, ending with slash) if( !defined("FILESYSTEMROOTPATH") ) define("FILESYSTEMROOTPATH", dirname(dirname($_SERVER['SCRIPT_FILENAME']))."/"); // Path to root in filesystem (ending with slash) define("MAXLISTLENGTH", 50); // Maximum length of lists (items per page) define("DISABLE_SSL", false); // Don't use SSL (for example redirect to HTTPS), only for development! define("LOGFILE", "logs/#.log"); // File where log is written to. When a '#' is added, it will be replaced by the current date (Ymd) // MySQL login define("EVENTS_MYSQL_HOST", ""); // host name define("EVENTS_MYSQL_USER", ""); // user name define("EVENTS_MYSQL_PASS", ""); // password define("EVENTS_MYSQL_DB", ""); // database ?>