2005-05-16 23:14:37 +00:00
|
|
|
<?PHP
|
2005-05-17 01:31:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2005-05-17 02:03:09 +00:00
|
|
|
// + $Id$
|
2005-05-17 01:31:36 +00:00
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Cake <https://developers.nextco.com/cake/> + //
|
2005-05-17 21:27:56 +00:00
|
|
|
// + Copyright: (c) 2005, Cake Authors/Developers + //
|
2005-05-17 01:31:36 +00:00
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
2005-05-18 10:11:28 +00:00
|
|
|
* This is core configuration file. Use it to configure core behaviour of
|
|
|
|
* Cake.
|
|
|
|
*/
|
2005-05-16 23:14:37 +00:00
|
|
|
|
2005-05-17 01:31:36 +00:00
|
|
|
/**
|
2005-05-17 22:32:06 +00:00
|
|
|
* Set debug level here:
|
|
|
|
* - 0: production
|
|
|
|
* - 1: development
|
|
|
|
* - 2: full debug with sql
|
|
|
|
*/
|
2005-05-22 23:24:09 +00:00
|
|
|
define ('DEBUG', 1);
|
2005-05-16 23:14:37 +00:00
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
?>
|