. */ #################################################################### # 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("JC_MYSQL_HOST", ""); // host name define("JC_MYSQL_USER", ""); // user name define("JC_MYSQL_PASS", ""); // password define("JC_MYSQL_DB", ""); // database // LDAP login define("OMS_LDAP_URI", ""); // LDAP uri of the server define("OMS_LDAP_BASEDN", ""); // LDAP base DN define("OMS_LDAP_DN", ""); // LDAP login DN define("OMS_LDAP_PWD", ""); // LDAP login password define("OMS_LDAP_AUTH_ON_ATTR", "uid,mail"); // comma-separated list of attributes on which to authenticate ?>