[SOLVED] Moralis, Heroku, MongoDB and Redis

I followed on of your tutorials and back then everything is working fine. The only thing is the heroku back then offers free dynos? i forgot what its really free back then. Now I subscribed to eco dyno and it is still not working.

XMLHttpRequest failed: "Unable to connect to the Parse API"

There is also what I found in Heroku application log:

2022-12-18T02:44:43.594170+00:00 heroku[router]: at=error code=H14 desc=“No web processes running” method=OPTIONS path="/server/functions/requestMessage" host=steadybusd.herokuapp.com request_id=4a12846e-49a3-4996-b1ed-c327464d188c fwd=“119.94.142.213” dyno= connect= service= status=503 bytes= protocol=https

This server URL doesn’t seem to be working, you can try deploying it again. Make sure it works in the browser first e.g. https://steadybusd.herokuapp.com/server which should return an unauthorized error.

Deploy another changes? or deploy a new app in heroku?

i just saw that it is off? does it have something to do with the error?

By redeploy, you can just trigger another redeploy/rebuild in the Heroku app to see if that works or create another app if needed. Maybe there’s a migration issue with using your old previously free dyno server.

it works now. Free dyno was discontinued already. Upgrade to eco or basic dyno then on your local terminal do

heroku login
heroku ps:scale web=1

to update your server into that dyno.

Thank you!

1 Like