Would be nice with errors displayed on screen instead of reading apache logs.
Also with a contact admin option.
Anybody up for it?

Might be an option- Sounds pretty much as what i want.deninho32 wrote: Sat Feb 15, 2025 12:36 pm Maybe this?
https://www.canidev.com/store/cbb-debugger?lang=en
Code: Select all
display_errors = On
error_reporting = E_ALL
So it was actually that easy, thanksthecoalman wrote: Sat Feb 15, 2025 10:59 pm Directions for enabling debug mode:
https://www.phpbb.com/support/docs/en/3 ... ebug-mode/
Change php.ini settings too:
This is not suitable for production environment unless you have no choice.Note that E_ALL will display some notices that are not errors but deprecation notices and coding standards guidelines.Code: Select all
display_errors = On error_reporting = E_ALL
E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED.
This means diagnostics of level E_NOTICE, E_STRICT and E_DEPRECATED
were not shown.