How do you disable the auto upgrade? We have a development site that is set to go live in a few days and is currently down due to it wanting to upgrade from 11.1 to 11.2. I'm hesitant to do the upgrade because we don't want to mess anything up. How do you disable this?
Hello, Modify the web.config file: Open the web.config file of your application and add the following line within the
This configuration change should prevent the application from automatically checking for upgrades.
Check the app settings JSON: Make sure that the "VersionCheckPeriod" value in your app settings JSON file is set to 0. It should look like this:
This configuration change should prevent the application from automatically checking for upgrades.
Check the app settings JSON: Make sure that the "VersionCheckPeriod" value in your app settings JSON file is set to 0. It should look like this:
Greetings! I want to know if there is another approach for this. In this case, my Umbraco installation was working normally and suddenly showed the upgrade screen. Is there another way to force Umbraco to a specific version? I mean stop upgrading.
In my case, I was working with version 10.6.1 and it said that it had to upgrade from version 10.0.0
Stop Upgrade 11.1.0 to 11.2.0
How do you disable the auto upgrade? We have a development site that is set to go live in a few days and is currently down due to it wanting to upgrade from 11.1 to 11.2. I'm hesitant to do the upgrade because we don't want to mess anything up. How do you disable this?
"VersionCheckPeriod": 0,
has been added to the app settings json
I've also seen adding
to the web config.But neither works.
Any help would be greatly appreciated.
Hello, Modify the web.config file: Open the web.config file of your application and add the following line within the
This configuration change should prevent the application from automatically checking for upgrades.
Check the app settings JSON: Make sure that the "VersionCheckPeriod" value in your app settings JSON file is set to 0. It should look like this: This configuration change should prevent the application from automatically checking for upgrades.
Check the app settings JSON: Make sure that the "VersionCheckPeriod" value in your app settings JSON file is set to 0. It should look like this:
Hello Cedeste,
This might not be relevant at all, but i just want to make sure, that you placed the VersionPeriodCheck correctly in your appsettings.json.
Is it places under Umbraco -> CMS -> Global?
Yes. I believe it has been added correctly.
Here is the global section of my appsettings.
},
Greetings! I want to know if there is another approach for this. In this case, my Umbraco installation was working normally and suddenly showed the upgrade screen. Is there another way to force Umbraco to a specific version? I mean stop upgrading. In my case, I was working with version 10.6.1 and it said that it had to upgrade from version 10.0.0
Thank you!
is working on a reply...