MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    message Remote Control

    Scheduled Pinned Locked Moved Solved Troubleshooting
    18 Posts 2 Posters 3.7k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • P Offline
      pat59
      last edited by

      Hello,
      How can I remove this update message without doing it? I did it and had to contact Mr. SDETWEIL because my Mirror stopped working. He fixed it, thank you.20250312_091938.jpg

      S 1 Reply Last reply Reply Quote 0
      • P Offline
        pat59
        last edited by

        Yes, I systematically restart after each change in js.
        Well, you did find that there were indeed two update notifications in config.js.
        Something I would never have thought of after making the change in the second update notification in config.js. This one works, no more messages, even though I spent hours solving a lesson in restraint. Thanks again.

        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @pat59
          last edited by

          @pat59 this is caused by the updatenotification module

          as we just installed a fresh copy, i dont understand why this is showing again

          so you have 2 choices

          disable the updatenotification module in config.js

          module:"updatenotification",
          disabled:true, 
          

          or

          add the MMM-Remote-Control module to the updateNotification ignore list

          module:"updatenotification".
          position:"...."
          config:{
            ignoreModules:['MMM-Remote-Control']
          }
          

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • P Offline
            pat59
            last edited by

            Hello
            Sorry ,but l forgot to mention that this is a second mirror ,not the one you repaired for me .
            l tried your instruction, but it doen’t reboot .
            module: “updatenotification”,
            position: “”,
            config: {
            ignoreModules: [‘MMM-Remote-Control’]
            updateAutorestart: true, // restart MagicMirror automaticaly after update
            updates: [
            // MMM-MeteoFrance rule
            {
            “MMM-MeteoFrance”: “npm run update”
            },
            ]
            }
            },
            {

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @pat59
              last edited by

              @pat59

              position: “”,
              

              yes, this is invalid

              i put that line there to make sure you understood where the following lines should be. not to indicate exact text

              you have to learn how to debug and resolve these kinds of issue

              1st thing is to look at the logs, as you use pm2 to autolaunch MagicMirror
              that is
              pm2 logs --lines=xxxx

              where xxxx is some number, default 15

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • P Offline
                pat59
                last edited by

                Okay, thanks, I’ll look at it again, thanks.

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @pat59
                  last edited by

                  @pat59 did you find and fix the problem?

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • P Offline
                    pat59
                    last edited by

                    Good evening.
                    No, I haven’t found anything. I’ve searched extensively and tried for 5 hours, but to no avail.
                    I tried this: /{
                    }
                    / It doesn’t work. I went to the forum and tried some things in js.conf.
                    This morning, I turned on the one you fixed for me, and the update message came back. I’ll continue using it. Thanks again for your message.

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @pat59
                      last edited by sdetweil

                      @pat59 can you do this

                      From a terminal window

                      pm2 stop all 
                      cd ~/MagicMirror
                      npm start &>somefile.txt
                      

                      The post the contents of somefile.txt

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • P Offline
                        pat59
                        last edited by

                        Thank you, it works.
                        I was far from finding this. Thanks again for everything.
                        Sincerely,

                        1 Reply Last reply Reply Quote 0
                        • P Offline
                          pat59
                          last edited by

                          I spoke too quickly after performing the manipulation it restarts by itself no more messages however once I restart the raspberry the message reappears.
                          In the message it tells me https://github.com Username

                          S 1 Reply Last reply Reply Quote 0
                          • S Offline
                            sdetweil @pat59
                            last edited by sdetweil

                            @pat59 said in message Remote Control:

                            in the message it tells me https://github.com Username

                            sorry, I don’t understand that text

                            as I said, you have to disable the updateNotification module

                            {
                              module: "updatenotification",
                              disabled: true, 
                            }
                            

                            OR
                            you have to list the modules to ignore

                            {
                               module:"updatenotification",
                               position: whatever it is,
                               config: {
                                 ignoreModules:["MMM-Remote-Control"]
                               }
                            }
                            

                            these messages in the pm2 log

                            [2025-03-14 20:51:34.981] [INFO]  Checking git for module: MMM-MealieMenu 
                            [2025-03-14 20:51:35.028] [INFO]  Checking git for module: MMM-pages 
                            [2025-03-14 20:51:35.070] [INFO]  Checking git for module: MMM-CurlToNotification
                            

                            are from the updateNotification module checking each module not ignored

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            1 Reply Last reply Reply Quote 0
                            • P Offline
                              pat59
                              last edited by

                              {

                              module: "updatenotification",
                              disabled :true,
                              position: "top_center",
                              config: {
                                ignoreModules:["MMM-Remote-Control"],
                                updateAutorestart: true, // restart MagicMirror automaticaly after update
                                updates: [ 
                                  // MMM-MeteoFrance rule
                                  {
                                    "MMM-MeteoFrance": "npm run update"
                                   },
                                  ]
                                } 
                              },
                              {
                              the message is still there , l don't know anymotre after several attempts to modify the js config
                              
                              S 1 Reply Last reply Reply Quote 0
                              • S Offline
                                sdetweil @pat59
                                last edited by sdetweil

                                @pat59 and you restarted MagicMirror after changing config?
                                can you show the screen again?
                                are there multiple instances of updatenotification in the config.js?

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                1 Reply Last reply Reply Quote 0
                                • P Offline
                                  pat59
                                  last edited by

                                  Yes, I systematically restart after each change in js.
                                  Well, you did find that there were indeed two update notifications in config.js.
                                  Something I would never have thought of after making the change in the second update notification in config.js. This one works, no more messages, even though I spent hours solving a lesson in restraint. Thanks again.

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Offline
                                    sdetweil @pat59
                                    last edited by

                                    @pat59 great work…

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    1 Reply Last reply Reply Quote 0
                                    • P Offline
                                      pat59
                                      last edited by

                                      The excellent work is partly due to your patience, thank you for everything, I am so happy.

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Offline
                                        sdetweil @pat59
                                        last edited by

                                        @pat59 I think you should try my MMM-Config module, as you continue to have problems with config.js

                                        https://github.com/sdetweil/MMM-Config

                                        this will present a form for the system and module properties.

                                        it will also support adding modules too…

                                        it will also show you when you have multiple instances…

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        1 Reply Last reply Reply Quote 0
                                        • S sdetweil has marked this topic as solved on
                                        • P Offline
                                          pat59
                                          last edited by

                                          Hello
                                          Thank you, I’ll try. Thank you. Have a nice day.

                                          1 Reply Last reply Reply Quote 0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          • 1 / 1
                                          • First post
                                            Last post
                                          Enjoying MagicMirror? Please consider a donation!
                                          MagicMirror created by Michael Teeuw.
                                          Forum managed by Sam, technical setup by Karsten.
                                          This forum is using NodeBB as its core | Contributors
                                          Contact | Privacy Policy