问题
I can set my application settings and connection strings but I can't save them. The button remains disabled despite my changes. I have 3 applications, only one is concerned. I'm admin of the subscription, any ideas ?
回答1:
To overstep this "Azure Portal" problem, you can set your application settings and connexion strings using powerShell, here is a short example :
Login-AzureRmAccount
$siteName = 'myWebsiteName';
$rgName = 'myWebsite-resourceGroup';
$appSettings = @{};
$appSettings.Add("myKey","myValue");
Set-AzureRmWebApp -ResourceGroupName $rgName -Name $siteName -AppSettings $appSettings
回答2:
Looks like a bug in the new portal, the old one https://manage.windowsazure.com lets me save my changes. I've send a bug report to Microsoft.
回答3:
I had to disable adblock and disconnect browser extensions to be able to save the changes
回答4:
Same problem here, turns out that clearing my browser's cache made it work. Looks like a bug on the portal's front end.
回答5:
I experienced this two weeks ago. For me it turned out to be just a lag/propagation issue, the next day the correct changes had been saved and propagated through the system. Hope this helps!
回答6:
came across this issue in 2017... in chrome, tried edge and it worked
来源:https://stackoverflow.com/questions/37523124/azure-app-service-cant-save-application-settings