Lecteur Markdown
Error Logs Documentation En
Feature: Error Logs #
Centralised PHP error dashboard. Aggregates fatal errors, warnings and notices, displays statistics, and allows filtering, suspending and deleting entries.
Centralised PHP error dashboard. Aggregates fatal errors, warnings and notices, displays statistics, and allows filtering, suspending and deleting entries.
Via FTP: Upload the error_logs/ directory into /plugins/.
Via package manager: Select error_logs from the available plugins list.
Paths:
/plugins/error_logs/error_logs.php/plugins/error_logs/conf/error_logs.conf.inc.php/plugins/error_logs/handlers//plugins/error_logs/js/Configuration parameters:
| Variable | Default | Description |
|---|---|---|
| $basedisplevel | BASE_LEVEL_OVERMIND | Reserved for super-admins |
| $ftype | 3 | Plugin type (system) |
Required SQL table: error_logs
Columns: id, message, level, file, line, hits, last_seen, error_hash, status
Pagination: 50 errors per page.
| Action | Description |
|---|---|
| View detail | Shows file, line and full message |
| Suspend | Marks the error as handled (logged to var/hist.txt) |
| Delete | Permanently removes the entry |
| Clear all | Deletes all error entries |
Deduplication: repeated errors increment the hits counter rather than creating new records (via error_hash).
POST actions:
action=suspend&id=ID — Suspend an error
action=delete&id=ID — Delete an error
action=clear_all — Clear all logs
Beamreactor\Logger\ErrorLogger — error collectionBeamreactor\Database\SQLBeamreactor\Notifications\Toast — user feedback