Azure App Service : can't save application settings

那年仲夏 提交于 2019-12-24 01:14:50

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!