Hello, I want to seethe CWebLogRoute output below each page.
I configure all that I remember to configure …
What is the check list to allow CWebLogRoute??
I have a theme applied to the site.
Best Regards.
Hello, I want to seethe CWebLogRoute output below each page.
I configure all that I remember to configure …
What is the check list to allow CWebLogRoute??
I have a theme applied to the site.
Best Regards.
make sure you have YII_DEBUG line is commented in your index.php and in your config/main.php
// uncomment the following to show log messages on web pages
/*
array(
'class'=>'CWebLogRoute',
),
*/
Hi, this is my index.php
<?php
error_reporting(E_ERROR);
// change the following paths if necessary
$yii=dirname(__FILE__).'/../yii-1.1.14/framework/yii.php';
$config=dirname(__FILE__).'/protected/config/main.php';
// remove the following lines when in production mode
defined('YII_DEBUG') or define('YII_DEBUG',true);
// specify how many levels of call stack should be shown in each log message
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
require_once($yii);
Yii::createWebApplication($config)->run();
and this is config/main.php
// uncomment the following to show log messages on web pages
//este habilita las rutas para ver que es los que esta haciendo la aplicacion
array(
'class'=>'CWebLogRoute',
// 'levels'=>'error, warning, info',
// 'showInFireBug' => false,
),
What else could be ? I’m using another theme, could be that ?
Regards