@@ -, +, @@ - Edit /etc/koha/sites/kohadev/koha-conf.xml and disable plugins by setting 0 - sudo koha-mysql kohadev -e "UPDATE systempreferences SET value='1' WHERE variable='ILLModule';" - Run restart_all. - In staff interface, go to About koha -> System information. The page should load normally (as opposed to returning 500 internal server error). --- Koha/ILL/Request/Config.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/ILL/Request/Config.pm +++ a/Koha/ILL/Request/Config.pm @@ -115,6 +115,7 @@ Returns a list of names for all the installed ILL backend plugins. sub get_backend_plugin_names { my ( $self ) = @_; + return () unless C4::Context->config("enable_plugins"); my @backend_plugins = Koha::Plugins->new()->GetPlugins( { method => 'ill_backend', --