https://github.com/mithra62/ee_debug_toolbar
Adds an unobtrusive interface for debugging an ExpressionEngine site
https://github.com/mithra62/ee_debug_toolbar
debug expressionengine
Last synced: 17 days ago
JSON representation
Adds an unobtrusive interface for debugging an ExpressionEngine site
- Host: GitHub
- URL: https://github.com/mithra62/ee_debug_toolbar
- Owner: mithra62
- Created: 2012-11-10T22:22:14.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-08-12T07:48:31.000Z (6 months ago)
- Last Synced: 2025-08-12T09:29:04.639Z (6 months ago)
- Topics: debug, expressionengine
- Language: PHP
- Homepage:
- Size: 774 KB
- Stars: 53
- Watchers: 7
- Forks: 10
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Debug Toolbar
The complete debugging platform for ExpressionEngine. Adds an unobtrusive interface for debugging output on an [ExpressionEngine](http://expressionengine.com "ExpressionEngine") 7.0 site. Replaces default Profiler and Template Debugger provided with ExpressionEngine.
### Features
In addition to what the ExpressionEngine Profiler offers, the Debug Toolbar also offers:
#### Extensible interface for project debug tools
Create custom extensions to expand on debugging capabilities.
#### Disable and/or Log Email
The Toolbar can be configured to override email delivery, so long as the native ExpressionEngine email service is used, and log the contents to files for easy debugging and quality control.
#### Custom Error Handler
Control exactly which PHP errors you want to display and log each and every PHP error within every ExpressionEngine request.
#### View Logs
The Log Panel (included) allows for reading complete log files from within your ExpressionEngine workflow.
#### Performance Alerts
The Toolbar can be configured for the thresholds to determine when and which SQL query and/or template parse becomes problematic.
#### Debug Mode for Guests
The Toolbar can be configured to display Debug details to any Member Role(s) you want to. Super Admin no longer required.
#### Performance Graph
Get a visual heads up on where exactly performance is an issue on all Front End requests.

## Requirements
1. ExpressionEngine >= 7.4
2. PHP >= 7.4
3. Extensions Enabled
## Installation for ExpressionEngine <= 7.3.15
You'll have to manually add the below hook call to ExpressionEngine:
`system/ee/legacy/core/Output.php:276` within the `_display()` method.
```php
if (ee()->extensions->active_hook('before_response_send_output') === true) {
$output = ee()->extensions->call('before_response_send_output', $output);
if (ee()->extensions->end_script === true) {
return;
}
}
```