Code: Select all
@define('PHPBB_DISPLAY_LOAD_TIME', true);
@define('DEBUG', true);
@define('DEBUG_CONTAINER', true);
Code: Select all
parameters:
debug.load_time: true
debug.sql_explain: true
debug.memory: true
debug.show_errors: true
debug.exceptions: true
Do I need to include these lines as well in my config.yml to make it work?
Code: Select all
imports:
- { resource: ../default/config.yml }
Code: Select all
imports:
- { resource: ../default/config.yml }
core:
require_dev_dependencies: true
allow_install_dir: true
debug:
exceptions: true
load_time: true
sql_explain: true
memory: true
show_errors: true
twig:
debug: true
auto_reload: true
enable_debug_extension: true
session:
log_errors: true
I can't find how to switch to "development" mode instead of the standard "production" I am currently in or add the config that is needed to see the debug output. Anyone got an idea what I am doing wrong?