Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

heroku - Item could not be updated:

Tags:

heroku

I'm trying to add / modify Config Var, when I try to save the change I get a message:

Item could not be updated:

Unknown Error. Please contact support.

Any ideas on what may be wrong?

like image 203
B0rG Avatar asked Oct 28 '22 17:10

B0rG


1 Answers

The below command solved my issue. Hope it works for others too.

Using Heroku CLI:

heroku config:set DB_PASSWORD=secret -a [heroku-app-name]

Bonus Points:

If Heroku CLI is not installed, you could use NPM to install it easily in [windows] system.

npm install -g heroku

heroku login
like image 160
Naveen Kumar V Avatar answered Jan 02 '23 20:01

Naveen Kumar V