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.

    After 2.8 I'm having tons of issues. What are the steps from square 1 to get this working?

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    46 Posts 3 Posters 18.1k Views 3 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.
    • M Offline
      maxheartrate @sdetweil
      last edited by

      @sdetweil

      Hi, thank you for your advise.

       ls ~/MagicMirror/node_modules/node_helper/
      

      shows me

      ls: Zugriff auf ‘/home/pi/MagicMirror/node_modules/node_helper/’ nicht möglich: Datei oder Verzeichnis nicht gefunden
      File or folder not found

      git checkout -- node_modules/node_helper/index.js
      

      results in

      error: pathspec ‘node_modules/node_helper/index.js’ did not match any file(s) known to git.

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

        @maxheartrate ok. I am away from my system now for a couple days.

        Try

        git checkout -- node_helper/index.js
        

        If that fails, try

        git status
        

        Then rename your MagicMirror folder to something else, clone it again, and copy the node_modules/node_helper folder to your previous installation, and rename the new one, then the old one back

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • M Offline
          maxheartrate
          last edited by

          Your two suggestions did not work. That is why I followed step 3: cloning MM again and copying node_helper to node_modules.

          I ran npm install in node_modules and in the MagicMirror directory.

          Now it looks like I got one error further … :flushed_face:

          This is what I get now:

          > sh run-start.sh
          
          Starting MagicMirror: v2.8.0
          Loading config ...
          Loading module helpers ...
          WARNING! Could not load config file. Starting with default configuration. Error found: Error: Cannot find module '../../../js/class.js'
          Loading module helpers ...
          App threw an error during load
          Error: Cannot find module '../../../js/class.js'
              at Module._resolveFilename (internal/modules/cjs/loader.js:602:15)
              at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
              at Function.Module._load (internal/modules/cjs/loader.js:528:25)
              at Module.require (internal/modules/cjs/loader.js:658:17)
              at require (internal/modules/cjs/helpers.js:20:18)
              at Object.<anonymous> (/home/pi/MagicMirror/node_modules/node_helper/index.js:8:13)
              at Object.<anonymous> (/home/pi/MagicMirror/node_modules/node_helper/index.js:127:3)
              at Module._compile (internal/modules/cjs/loader.js:711:30)
              at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10)
              at Module.load (internal/modules/cjs/loader.js:620:32)
          Whoops! There was an uncaught exception...
          { Error: Cannot find module '../../../js/class.js'
              at Module._resolveFilename (internal/modules/cjs/loader.js:602:15)
              at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/electron/dist/resources/electron.asar/common/reset-search-paths.js:35:12)
              at Function.Module._load (internal/modules/cjs/loader.js:528:25)
              at Module.require (internal/modules/cjs/loader.js:658:17)
              at require (internal/modules/cjs/helpers.js:20:18)
              at Object.<anonymous> (/home/pi/MagicMirror/node_modules/node_helper/index.js:8:13)
              at Object.<anonymous> (/home/pi/MagicMirror/node_modules/node_helper/index.js:127:3)
              at Module._compile (internal/modules/cjs/loader.js:711:30)
              at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10)
              at Module.load (internal/modules/cjs/loader.js:620:32) code: 'MODULE_NOT_FOUND' }
          MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
          If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
          Launching application.
          
          
          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @maxheartrate
            last edited by sdetweil

            @maxheartrate no. No npm install in the node_modules folder. That messes everything up.

            Do

            cd ~/MagicMirror
            rm -rf node_modules
            cp -R -p ???/node_modules ~/MagicMirror
            

            Where ??? Is your recently cloned download.

            Then in the MagicMirror folder do

            npm install
            

            IF u had other modules installed, beyond the initial set, then look thru their folders and see if there is a package.json file present. If so, in each such module folder do a

            npm install 
            

            there

            I made a new script to do all this upgrade stuff, but I don’t know what will happen if the git pull is already done.
            See my upgrade topic in the troubleshooting section

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            1 Reply Last reply Reply Quote 0
            • M Offline
              maxheartrate
              last edited by

              Hi @sdetweil, thanks for joining in and for your advise.

              I followed your steps just as described. The node_helper was the only module in the newly cloned node_modules folder. I then ran npm install and an npm install in every modules folder with a package.json file.

              After that I ran into the missing node_helper error again. Obviously the folder was deleted when I ran the npm install in the MagicMirror folder. Now I copied the node_helper folder from the newly cloned version again and I am back at the error I sent in my previous post. :dizzy_face:

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

                @maxheartrate

                Obviously the folder was deleted when I ran the npm install in the MagicMirror folder
                

                No it won’t be deleted.

                Let’s start from scratch. U have the extra downloaded copy. Make THAT NAME MagicMirror, and npm install in that folder.

                Start mm and we should be running.

                Then we will copy over your extra modules, and config file
                And work from there

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • M Offline
                  maxheartrate
                  last edited by

                  Alright. Now I have something else but a black screen for the first time in days:

                  “Magic Mirror - please create a config file”

                  What do you suggest now?

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

                    @maxheartrate

                    Obviously the folder was deleted when I ran the npm install in the MagicMirror folder
                    

                    No it won’t be deleted.

                    Let’s start from scratch. U have the extra downloaded copy. Make THAT NAME MagicMirror, and npm install in that folder.

                    Start mm and we should be running.

                    Then we will copy over your extra modules, and config file
                    And work from there

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    M 1 Reply Last reply Reply Quote 0
                    • M Offline
                      maxheartrate @sdetweil
                      last edited by

                      @sdetweil
                      That’s what I did. I have a fresh MagicMirror now. It is running but can’t find the config file (I haven’t copied config.js.sample to config.js yet).

                      S 2 Replies Last reply Reply Quote 0
                      • S Offline
                        sdetweil @maxheartrate
                        last edited by

                        @maxheartrate you have to do that, copy the config

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 4 / 5
                        • 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