How to avoid Update Screen after login?

Hello,

I have following question:

Where can you set that after login you are not shown the update window for a newer NC version?

Thanks and kind regards
nextcloudtestit

Hi @nextcloudtestit

To disable the automatic update check, add the line 'updatechecker' => false, to your config.php.

https://docs.nextcloud.com/server/23/admin_manual/configuration_server/config_sample_php_parameters.html#nextcloud-verifications

1 Like

plus: I wouldn’t work under a priviledged account such as an admin-account.

Hi,

unfortunately adding ‘updatechecker’ => false’ at the end of …/config/config.php does not supress the Update notice => 23.0

‘installed’ => true,
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘maintenance’ => false,
‘theme’ => ‘’,
‘updatechecker’ => false,
);

Kind regards
nextcloudtestit

Hmm. Sorry then I have no idea why this does not work. I have not tested it myself. Maybe a bug or something changed and the documentation was not updated…? As a workaround you could use a seperate non priviledged user for your day-to-day usage as @JimmyKater already mentioned. This is considered best practice anyways, not only in Nextcloud…

1 Like