r=glennrp@gmail.com, bclary@bclary.com rs=brendan git-svn-id: svn://10.0.0.236/trunk@214563 18797224-902f-48f8-a5cc-f745e15eee43
30 lines
786 B
Plaintext
30 lines
786 B
Plaintext
<?php
|
|
|
|
if (!defined('DS'))
|
|
{
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
}
|
|
|
|
if (!defined('ROOT'))
|
|
{
|
|
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
|
|
//You should also use the DS define to separate your directories
|
|
define('ROOT', '');
|
|
}
|
|
|
|
if (!defined('APP_DIR'))
|
|
{
|
|
//define('APP_DIR', 'DIRECTORY NAME OF APPLICATION';
|
|
define ('APP_DIR', '');
|
|
}
|
|
|
|
if (!defined('CAKE_CORE_INCLUDE_PATH'))
|
|
{
|
|
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
|
|
//You should also use the DS define to separate your directories
|
|
define('CAKE_CORE_INCLUDE_PATH', '');
|
|
}
|
|
|
|
|
|
?>
|