* Copyright (c) 2005, CakePHP Authors/Developers * * Author(s): Michal Tatarynowicz aka Pies * Larry E. Masters aka PhpNut * Kamil Dzielinski aka Brego * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @filesource * @author CakePHP Authors/Developers * @copyright Copyright (c) 2005, CakePHP Authors/Developers * @link https://trac.cakephp.org/wiki/Authors Authors/Developers * @package cake * @subpackage cake.config * @since CakePHP v 0.2.9 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/mit-license.php The MIT License */ /** * If you do not have mod rewrite on your system * or if you prefer to use CakePHP pretty urls. * uncomment the line below. * Note: If you do have mod rewrite but prefer the * CakePHP pretty urls, you also have to remove the * .htaccess files * release/.htaccess * release/app/.htaccess * release/app/webroot/.htaccess */ //define ('BASE_URL', $_SERVER['SCRIPT_NAME']); /** * Set debug level here: * - 0: production * - 1: development * - 2: full debug with sql * * In production, the "flash messages" redirect after a time interval. * With the other debug levels you get to click the "flash message" to continue. */ define('DEBUG', 1); /** * Compress output CSS (removing comments, whitespace, repeating tags etc.) * This requires a /var/cache directory to be writable by the web server (caching). * To use, prefix the CSS link URL with '/ccss/' instead of '/css/' or use Controller::cssTag(). */ define('COMPRESS_CSS', false); /** * If set to true, helpers would output data instead of returning it. */ define('AUTO_OUTPUT', false); /** * If set to false, session would not automatically be started. */ define('AUTO_SESSION', true); /** * Set the max size of file to use md5() . */ define('MAX_MD5SIZE', (5*1024)*1024 ); /** * To use Access Control Lists with Cake... */ define('ACL_CLASSNAME', 'MyACL'); define('ACL_FILENAME', 'my_acl.php'); ?>