Xenforo Debug Mode and Developer Mode Activation

miRBey

New member
XNullUser
Joined
Feb 13, 2022
Messages
25
Reaction score
0
Points
1
NullCash
101
To activate Developer and Debug mode in your Xenforo forum system, enter the src folder and add the following codes to the bottom of your config file.

For debug mode
Code:
$config['debug'] = true;

Use the code below to enable developer mode.
Code:
$config['development']['enabled'] = true;
 
Top