Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off upgrade message in Umbraco backoffice

Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.

like image 875
wingyip Avatar asked Dec 29 '13 13:12

wingyip


1 Answers

There is an umbracoVersionCheckPeriod key in appSettings section of the web.config that has the default value of 7. Set this to 0 to prevent "a new version is available" balloon.

<add key="umbracoVersionCheckPeriod" value="0" />

http://our.umbraco.org/wiki/reference/webconfig

EDIT:

For umbraco version 7 this key might not be present in the web.config by default but you can add it manually and the notification will disappear.

http://our.umbraco.org/documentation/Using-Umbraco/Config-files/webconfig7

like image 163
Davor Zlotrg Avatar answered Oct 14 '22 08:10

Davor Zlotrg