Changing the logging time for administrator actions

Usually, in XenForo, how long does it take to store the moderator’s actions log, the message editing log has a setting, but the administrator log has a limit of 60 days, and then all logs are deleted, to change the log storage time, you must open config.php. It is located /src/config.php, and enter the lifetime in days. Attention! 0 will keep the administrator logs all the time
PHP:
$config['adminLogLength'] = 0;
 
Back
Top