Hello guys I have configure cloudfalre DNS to heroku, I uploaded a React app, but when I push new commits the domain does show the new changes
site : http://www.brahmakumaris-thessaloniki.gr/
heroku app : https://bkth.herokuapp.com/
Related
My strapi cms is deployed to heroku. And I noticed if I create a blog on actual hosted admin panel it does not show up in localhost:1337 or when I publish a blog on localhost and again push it to heroku its still missing from there.
Like both are not in sync. Is there a way to sync blogs between hosted and localhost version?
I'm trying to use Cloudinary to handle the upload of images in my app. I created a Cloudinary account for it and this works perfectly in production.
I've deployed my app to Heroku and can't managed to successfully connect my Heroku app with Cloudinary. My app appears online but the images stored in Cloudinary don't display + the upload function doesn't work as well - i guess it's because the link with cloudinary is broken so the server doesn't know where to get the images or store the files.
I've first manually added the Cloudinary Url in Heroku's config vars and it didn't work. I then installed the Cloudinary add-on on Heroku and, when I install it in Ressources, Heroku redirects me to a newly created cloudinary account (it seems that adding the Cloudinary add-on to heroku creates a brand new Cloudinary account).
My problem is that I want to use my existing Cloudinary account in my Heroku app and I can't figure out how to connect both.
in my code, i'm storing my details in an env file, and on the server-side, I'm using my account details like so:
require("dotenv").config();
cloudinary.config({
cloud_name: process.env.CLOUD_NAME,
api_key: process.env.API_KEY,
api_secret: process.env.API_SECRET
});
I am trying to point my Google Domains domain name to Heroku, but am having a hard time. I previously had the domain forwarded to point to another website, but I have now followed these instructions to point it to my Heroku app.
The domain in question is www.lizbayardelle.com. The Heroku app I want it to is https://liz-bayardelle.herokuapp.com/. If I type heroku open in Terminal this is what comes up. However, if you go to the domain and the heroku app, the domain still shows the other website (to which it was initially forwarded), not the Heroku app.
Here are my Google Domains settings:
If you want it to point to liz-bayardelle.herokuapp.com, use that.
You've used www.liz-bayardelle.herokuapp.com. Visiting that URL displays Heroku's "no such app" page.
It turned out that the domain name was still "claimed" by the other Heroku app, so I had to log in to the one which had been forwarded on the Heroku console and delete the domain name. After I did this it could be added with heroku domains:add www.lizbayardelle.com and heroku domains:add lizbayardelle.com.
I just set up a Ghost blog on heroku. under settings I get https://myghostblog.herokuapp.com/ as the domain. I wanted to connect a custom sub-domain, thus I added the custom sub-domain www.blog.customdomain.com in heroku and added the heroku given DNS target to CNAME of my google domain. yet When i visit www.blog.customdomain.com the browser changes the address in the browser to the heroku app domain https://myghostblog.herokuapp.com/
My HEROKU_URL was set to https://myghostblog.herokuapp.com/ changing it to http://blog.customdomain.com, and then clearing cache or trying in private tab did the trick.
When creating a facebook app and using heroku service. The heroku app is returning an empty response. I have tried creating many apps but all have the same problem. I am using PHP in heroku.
To resolve this problem I cloned the git repository of my app from heroku, made some changes in some files by adding few random spaces so that they are identified as a different version from the cloned files. Then i pushed the repo back to heroku. Now the app worked fine.