I need to reload configuration after modifying LocalSettings.php without restarting Apache.
How is it possible?
Kind regards
If your LocalSettings.php
is cached with opcache
, you need to flush it. How it is done, is told here. In a nutshell:
apachectl graceful
,service php-fpm reload
,If you have APC: this answer.