Administration > CAS to activate CAS // You can leave these lines uncommented even if you don't use CAS $extAuthSource["cas"]["login"] = $_configuration['root_sys'].$_configuration['code_append']."auth/cas/login.php"; $extAuthSource["cas"]["newUser"] = $_configuration['root_sys'].$_configuration['code_append']."auth/cas/newUser.php"; // // To fetch external login information, uncomment those 2 lines and modify files auth/external_login/newUser.php and auth/external_login/updateUser.php files // $extAuthSource["external_login"]["newUser"] = $_configuration['root_sys'].$_configuration['code_append']."auth/external_login/newUser.php"; // $extAuthSource["external_login"]["updateUser"] = $_configuration['root_sys'].$_configuration['code_append']."auth/external_login/updateUser.php"; // //NEW LDAP IMPLEMENTATION BASED ON external_logininfo // Please edit main/auth/external_login/ldap.conf.php //$extAuthSource["extldap"]["login"] = $_configuration['root_sys'].$_configuration['code_append']."auth/external_login/login.ldap.php"; //$extAuthSource["extldap"]["newUser"] = $_configuration['root_sys'].$_configuration['code_append']."auth/external_ldap/newUser.ldap.php"; // /** * * Hosting settings - Allows you to set limits to the Chamilo portal when * hosting it for a third party. These settings can be overwritten by an * optionally-loaded extension file with only the settings (no comments). */ // Set a maximum number of users. Default (0) = no limit $_configuration['hosting_limit_users'] = 0; // Set a maximum number of teachers. Default (0) = no limit $_configuration['hosting_limit_teachers'] = 0; // Set a maximum number of courses. Default (0) = no limit $_configuration['hosting_limit_courses'] = 0; // Set a maximum number of sessions. Default (0) = no limit $_configuration['hosting_limit_sessions'] = 0; // Set a maximum disk space used, in MB (set to 1024 for 1GB, 5120 for 5GB). // Default (0) = no limit $_configuration['hosting_limit_disk_space'] = 0; /** * Content Delivery Network (CDN) settings. Only use if you need a separate * server to serve your static data. If you don't know what a CDN is, you * don't need it. These settings are for simple Origin Pull CDNs and are * experimental. Enable only if you really know what you're doing. */ // Set the following setting to true to start using the CDN $_configuration['cdn_enable'] = false; // The following setting will be ignored if the previous one is set to false $_configuration['cdn'] = array( // you can define several CDNs and split them by extensions 0 => array( //replace the following by your full CDN URL, which should point to // your Chamilo's root directory, including the final slash 'url' => 'http://cdn.chamilo.org/', 'ext' => array('.css','.js','.jpg','.jpeg','.png','.gif','.avi','.flv'), ), // copy the section above and modify following your needs ); /** * Misc. settings */ // Verbose backup $_configuration['verbose_backup'] = false; // security word for password recovery $_configuration['security_key'] = '{SECURITY_KEY}'; // Hash function method $_configuration['password_encryption'] = '{ENCRYPT_PASSWORD}'; // You may have to restart your web server if you change this $_configuration['session_stored_in_db'] = false; // Session lifetime $_configuration['session_lifetime'] = SESSION_LIFETIME; // Activation for multi-url access //$_configuration['multiple_access_urls'] = true; $_configuration['software_name'] = 'Chamilo'; $_configuration['software_url'] = 'http://www.chamilo.org/'; //Deny the elimination of users $_configuration['deny_delete_users'] = false; // Version settings $_configuration['system_version'] = '{NEW_VERSION}'; $_configuration['system_stable'] = NEW_VERSION_STABLE; ?>