Just be aware that is not recommended modify the core, because if you upgrade your Umbraco installation, then you need to remember to do again.
A better idea is to make a feature request so this could example be a setting in the webconfig or in the UmbracoSettings.config. You can make the feature request here: http://issues.umbraco.org/
And as I remember you only see this upgrade notification message if you have an status of an administrator account.
If anybody knows another way to do this please add your thoughts.
Perhaps you could use the low key solution for now.
The key umbracoVersionCheckPeriod is not in web.config in the latest 7.4.3.
If I add it manually I still cannot install Umbraco on a server which doesn't have internet access.
How do I disable it?
2016-07-05 11:58:58,673 [P13912/D2/T15] ERROR Umbraco.Web.Install.InstallHelper - An error occurred in InstallStatus trying to check upgrades
System.Net.WebException: Unable to connect to the remote server --->
System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 93.90.118.243:80
at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
Hi Simone, did you get anywhere on this? I'm looking to disable the upgrade check on our sites as they're behind a proxy and the request is s l o ........ w
Disable Umbraco Upgrade Notification in V7
Hi,
Where has this setting moved to in V7? The old setting that was in webconfig is no longer there.
Thanks in advance.
Cheers
Hi David,
One way that you could do it is by find this file in your Umbraco installtion \Umbraco\Views\directives\umb-notifications.html and the remove this:
Just be aware that is not recommended modify the core, because if you upgrade your Umbraco installation, then you need to remember to do again.
A better idea is to make a feature request so this could example be a setting in the webconfig or in the UmbracoSettings.config. You can make the feature request here: http://issues.umbraco.org/
And as I remember you only see this upgrade notification message if you have an status of an administrator account.
If anybody knows another way to do this please add your thoughts.
Perhaps you could use the low key solution for now.
Hope this helps,
/Dennis
Can't you just add the key in the webconfig to stop it?
Hi Greg,
Yes you can just set the umbracoVersinChedkPeriod value to 0, just see this documentation https://our.umbraco.org/documentation/Using-Umbraco/Config-files/webconfig7#umbracoVersionCheckPeriod
/Dennis
The key
umbracoVersionCheckPeriod
is not in web.config in the latest 7.4.3. If I add it manually I still cannot install Umbraco on a server which doesn't have internet access. How do I disable it?Hi Simone, did you get anywhere on this? I'm looking to disable the upgrade check on our sites as they're behind a proxy and the request is s l o ........ w
:)
Not sure if it's any help but InstallHelper calls the CheckForUpgrade web-service that checks for upgrades.
The actual .asmx file that is called is in
Umbraco\Webservices\CheckForUpgrade.asmx
and just contains:It might be possible hack that - maybe change where the CodeBehind looks so it points to an empty class of your own?
is working on a reply...