malyshev / yii-debug-toolbar

A configurable set of panels that display various debug information about the current request/response.

Home Page:http://www.yiiframework.com/extension/yii-debug-toolbar/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I have installed this extension in my yii app but no panel is showing

rati592 opened this issue · comments

This is my settings 'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute',
// Access is restricted by default to the localhost
//'ipFilters'=>array('127.0.0.1','192.168.1.*', 88.23.23.0/24),
),
),
),
and i had put the extracted yii-debug-ttolbar folder inside protected/extensions/.

But i am not able to see any panel. Please help me ASAP.

I have the same issue. I had this working once before, but have updated the framework, and it doesn't load anything. There is no HTML even generated in the source for the toolbar. Testing in Chrome and Firefox. I have not tested it on a stock yii setup, so it IS possible it could be a conflict with my apps included scripts or something.

This issue could stand to be checked up on.

The same problem. I have 'enableProfiling' in true, 'enableParamLogging' in true.
Loaded 'yii-debug-toolbar' in ext folder.
Included in main.php
but nothing happen =\

Are you added toolbar configuration to 'log' section? Could you please provide your configuration file, and version of Yii you use. Params 'enableProfiling' in true, 'enableParamLogging' in true just allow to collect and display data about DB connection and no any affect on displaying of toolbar in general.

Uncomment 'ipFilters' setting and put there your ip adress. If not work, try set it like that:

'ipFilters' => array('*'),

It will show debug info for everyone, so be careful, and don't use this config in production or any publicly available environment.

Unfortunately, the same result: nothing happen.
No one panel.
I am triyng on local server.

The toolbar icon is on top right. click on it, panels will be shown.

Hi,
I had the same problem. seems to be some sort of view display issue.

I was playing around by adding a echo " "; below $route on line 114 in the YiiDebugToolbarRoute.php
and somehow it worked!

if anyone can find out why, much appreciated!

Hi,
I had the same problem. seems to be some sort of view display issue.

I was playing around by adding a echo " "; below $route on line 114 in the YiiDebugToolbarRoute.php
and somehow it worked!

if anyone can find out why, much appreciated!

Has anybody come across the reason for this? I am facing the same issue. If I add echo " "; the Toolbar works, but going forward, the toolbar does not appear on pages and I get an error "Header already sent".