Code |
Context$environments = array(
array(
"platform" => "development",
"host" => "localhost",
"ssl_port" => 80,
"debug" => 2,
"path" => array()
),
array(
"platform" => "stage",
"host" => "stage.creationsite.com",
"ssl_port" => 80,
"debug" => 1,
"path" => array()
),
array(
"platform" => "production",
"host" => "www.thecorneralley.com",
"ssl_port" => 80,
"debug" => 0,
"path" => array()
)
)
$environment = array(
"platform" => "production",
"host" => "www.thecorneralley.com",
"ssl_port" => 80,
"debug" => 0,
"path" => array(
"webroot" => "/webroot",
"webroots" => array()
)
)
*/
Configure::write('environment', $this->environment);
Configure::write('debug', $this->environment['debug']);
AppController::beforeFilter() - APP/app_controller.php, line 98
CmsPagesController::beforeFilter() - APP/controllers/cms_pages_controller.php, line 11
Dispatcher::_invoke() - /usr/lib/cakephp/1.2.6/cake/dispatcher.php, line 209
Dispatcher::dispatch() - /usr/lib/cakephp/1.2.6/cake/dispatcher.php, line 194
[main] - APP/webroot/index.php, line 88