skip to Main Content

So here is my problem, I have several Magento 1 sites, all of which are running on different versions. When a new version of Magento 1 is released, I want to be able to have a notification that tells me each of my sites current versions and if there is a new update available.

I don’t have much experience at all of web scraping, rss feeds or even recieving an email with these notifications but I’m pretty sure my answer would come from one of these.

I have asked this question on stackoverflow Magento as well but I did not get a suitable answer. Here

2

Answers


  1. normally magento will notified when release verison in admin portal.

    Login or Signup to reply.
  2. The notifications in admin are stored in the database table adminnotification_inbox. My approach would be to setup a cron job that checks for entries containing https://www.devdocs/magento.com/... in the url column and trigger a custom mail if entries are found.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search