我们使用:yiidebugtb来调试(因为用他界面比较美观,不影响界面其他元素)。
1.下载yiidebugtb,并且放入到 application.extensions.yiidebugtb 目录
代码如下:
array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error,warning,trace',
),
// 以下是新加 array( // configuration for the toolbar 'class'=>'XWebDebugRouter', 'config'=>'alignLeft,opaque,runInDebug,fixedPos,collapsed,yamlStyle',trace,profile,info', //'categories' => 'system.db.*', 'allowedIPs'=>array('127.0.0.1','::1','192\.168\.1[0-5]\.[0-9]{3}','如果程序在外网需要填入你的公网的ip'),
),
)
代码如下:
array(
'connectionString'=>'MysqL:host=*.*.*.*;dbname=test',
'emulatePrepare'=>true,// 加入
'enableParamLogging' => true,// 加入
'username'=>'-----',
'password'=>'---',
'charset'=>'utf8',
'schemaCachingDuration'=>'0',
'autoConnect'=>false,
4.完成
如:
原文链接:https://www.f2er.com/php/23008.html