0

I need to reload configuration after modifying LocalSettings.php without restarting Apache.

How is it possible?

Kind regards

serkanz
  • 391
  • 5
  • 21

1 Answers1

1

If your LocalSettings.php is cached with opcache, you need to flush it. How it is done, is told here. In a nutshell:

  • mod_php: apachectl graceful,
  • php-fpm: service php-fpm reload,
  • CGI or FastCGI: no need.

If you have APC: this answer.

Alexander Mashin
  • 3,892
  • 1
  • 9
  • 15