Damien THIERY
Damien THIERY

Reputation: 31

Azure App Service : can't save application settings

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 ?

Upvotes: 2

Views: 2996

Answers (6)

Julien Brousseau
Julien Brousseau

Reputation: 318

Same problem here, turns out that clearing my browser's cache made it work. Looks like a bug on the portal's front end.

Upvotes: 1

Kenny Fowler
Kenny Fowler

Reputation: 151

came across this issue in 2017... in chrome, tried edge and it worked

Upvotes: 0

I had to disable adblock and disconnect browser extensions to be able to save the changes

Upvotes: 1

Thibaut Ranise
Thibaut Ranise

Reputation: 715

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

Upvotes: 2

Damien THIERY
Damien THIERY

Reputation: 31

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.

Upvotes: 1

Indigo8
Indigo8

Reputation: 620

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!

Upvotes: 0

Related Questions