我已启用分析以yii显示,如下所示。
'db'=>array(
'connectionString'=>'pgsql:host=localhost;port=5432;dbname=ijob_css',
'username'=>'postgres',
'password'=>'allion123',
'enableProfiling'=>true,
'schemaCachingDuration'=>604800
),
但我仍然没有在网站页面下显示任何内容并且显示为空。
在它工作之前,最近我被
打开了'enableProfiling'=>假
为什么不起作用?我必须遗漏一些东西。
答案 0 :(得分:1)
将此添加到主配置解决了该问题。 '类'=> 'CProfileLogRoute',
'components'=>array(
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
array(
'class'=>'CProfileLogRoute',
),