I'm getting this error, but obviously I'm connected! I entered a ticket with Heroku 15 hours ago but received no response.
C:\>heroku config
Enter your Heroku credentials.
Email: myemail@mydomain
Password (typing will be hidden):
! Unable to connect to Heroku API, please check internet connectivity and try again.
$ heroku status
! Unable to connect to Heroku API, please check internet connectivity and try again.
I even re-installed Heroku client. I even pushed to Heroku while this problem was happening through Git.
heroku login
first? It seems it doesn't have your credentials... – Dewanheroku
gem, here is the code that gives the exception, line 260. Good luck... I wish I could help you more, but it seems one of those bugs difficult to track. – Dewan$ git remote -v
heroku [email protected]:appname.git
. – Fogputs "*** run(#{cmd}, #{arguments})"
at the top of the run method inC:\Program Files (x86)\Heroku\lib\heroku\command.rb
, yet it doesn't print anything! – Fogrequire 'ruby-debug'; debugger
before the line you need to debug, and make sure you have installedgem install debugger
. I think you should but a debugger on line 260 of that file, to see if this is really giving you the error of connectivity or if it's another thing. First make sure it's really stopping in the debugger. – Dewanrequire 'ruby-debug'; debugger
on line 253 (line 252 without myputs
) and it didn't work and still gave the same error withheroku status
. I don't think that will work because Heroku uses its own Ruby, and when I rungem install
, it is installing in my normal Ruby, not the Ruby Heroku uses. I even put syntax errors in thatcommand.rb
file and it still spits out the same error. – Fog