debug_kit icon indicating copy to clipboard operation
debug_kit copied to clipboard

Debug Toolbar for CakePHP applications.

Results 24 debug_kit issues
Sort by recently updated
recently updated
newest added

When using Cakephp/Authorization plugin, debugkit fail. One solution is to skip authorization in AuthorizationMiddleware (https://github.com/cakephp/authorization/issues/80#issuecomment-575626974) , but it's not a good place to add exceptions. One way is to check...

This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 3.5.8 * DebugKit Version: 3.11.3 ### What you did Use...

defect

* [x] enhancement * [ ] feature-discussion (RFC) * [ ] bug ### What you did I've set up a Request Policy as an Authorization Service but the newly added...

enhancement

It would be useful to debug shells/commands. When commands finishes, it could print web URL with DebugKit request ID, so all info from executing command could be seen in browser....

enhancement

Would it be possible, to include SQL query statistics in the sql-log-panel ? What I'm generally missing is: - number of queries per type (SELECT, UPDATE, DELETE, INSERT, DROP, ...)...

enhancement
sql_panel

## Overview When we execute a `pr("some data here")` to display debug messages the output includes the file path to the PHP file that generated the output. When we look...

enhancement
rfc

This is a bug in Mail Preview. * Version CakePHP 3.3.14, DebugKit 3.8.0 ### What you did The code is as follows ```php ``` ```php

defect

It would be nice if it would be possible to mark SQL queries in some way to find them in the Panel if there are many of them. Maybe one...

enhancement
sql_panel

After a fresh CakePHP 5.0.5 I activated DebugKit by adding this code to Application.php ``` if (Configure::read('debug')) { Configure::write('DebugKit.safeTld', ['mydomain.net']); Configure::write('DebugKit.forceEnable', true); $this->addPlugin('DebugKit'); } ``` I've set 'debug'=>true, in app_local.php...

I recently stumbled across [this](https://book.cakephp.org/5/en/orm/database-basics.html#read-and-write-connections) great feature that allows read-only connections, but I do not see any queries using the "read" connection in the SQL Log panel within DebugKit. Does...