You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute',
// Access is restricted by default to the localhost
//'ipFilters'=>array('*'),
),
),
),
'db'=>array(
'class' =>'CDbConnection',
'connectionString' => 'mysql:host=_;dbname=_',
'emulatePrepare' => true,
'username' => '**',
'password' => '*',
'charset' => 'utf8',
'enableProfiling'=>true,
'enableParamLogging'=>true,
),
This configuration of, in addition to the two still need what configuration?
In firefox, Google, all don't, according to 1.1.7 YII version
The text was updated successfully, but these errors were encountered:
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute',
// **Access is restricted by default to the localhost**
'ipFilters'=>array('*'), // uncomment this
),
),
),
@Mrzhang147 I had the same problem as you with the toolbar not appearing.
In my case, the code for the debug panel was being injected in my views successfully but the problem was my view code was conflicting with it and causing it to not appear.
I didn't want to spend the time to try to resolve it so I searched and came across this toolbar, https://github.com/zhuravljov/yii2-debug, which works for me. It seems to isolate the debug bar from the rest of the view better.
This debug toolbar also has an ipfilter setting which I had to set to array('*') for it to work. Fyi, I'm running Yii 1.1.14
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
'db'=>array(
'class' =>'CDbConnection',
'connectionString' => 'mysql:host=_;dbname=_',
'emulatePrepare' => true,
'username' => '**',
'password' => '*',
'charset' => 'utf8',
'enableProfiling'=>true,
'enableParamLogging'=>true,
),
This configuration of, in addition to the two still need what configuration?
In firefox, Google, all don't, according to 1.1.7 YII version
The text was updated successfully, but these errors were encountered: