yii-debug-toolbar icon indicating copy to clipboard operation
yii-debug-toolbar copied to clipboard

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

Results 51 yii-debug-toolbar issues
Sort by recently updated
recently updated
newest added

A filter may add content-type later, or maybe an action and so on

Update using info from https://github.com/malyshev/yii-debug-toolbar/issues/90

При подключенном animate.css (http://daneden.github.io/animate.css/) панель отображается некорректно, точнее сказать вообще не отображается

Fix: Re Check content types before echoing the output, as the content-type may have not been defined at the beiggining of the processing (as in excel download with GZIP)

FIX: Getting property on non-object error

Add possibility to exclude some routes (disable tool-bar rendering for specific controllers/actions )

For example, my application is totally REST based, and thus the SQL Log panel is just eating up space in the screen. How can I disable it? As I see...

I just updated to the latest version, and noticed that whenever I redirect a page, my session gets destroyed. I've narrowed down the problem to the YiiDebugToolbarPanelRequest::run() method; more specifically,...

line 207 of YiiDebugToolbarPanelSql.php original: $lines = explode(' ', $serverInfo); had to change to: $lines = $serverInfo;

I develop the logging panel and add duration column with color mode for it. This is here: https://github.com/NabiKAZ/yii-debug-toolbar Please review it and marge it on master project if you want.