MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. karsten13
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 3
    • Topics 8
    • Posts 512
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: After update, chrome-sandbox needs root and mode 4655?

      The “newer” electron versions are using sandboxing by default. But on master-branch is still the old electron 3.x active.

      So are you using the develop-branch or have you edited package.json und upgraded electron?

      The method to fix this is correct, an alternative way is disable sandboxing, which is not a good idea under security aspects. You can disable sandboxing e.g. by setting the environment variable ELECTRON_DISABLE_SANDBOX=1

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Attempting To Update

      The git pull command fails if files are locally changed, because the pull would override them.
      With git diff you can see what has changed.

      If you are not interested to save these local changes you can run git reset --hard. This will revert all changes and after this the git pull should work.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @rudibarani

      @baschke, @karsten13, @Hein-Jan
      
      @j-e-f-f has updated the module on GitHub. Go to the module folder and update it via git pull.
      
      If the error still persists, leave out line
      
          concise: false,
      
      from the config file. That solved it for me in the prior version.
      

      Had already the newest version, but leaving out concise: false did the trick. Thanks!

      posted in Utilities
      karsten13K
      karsten13
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      Same here with “Loading” and nothing happens.

      Seems to be a problem with lon/lat.

      If i provide the example lon/lat it works.

      posted in Utilities
      karsten13K
      karsten13
    • RE: MMM-Strava

      your setup works for me, changed only strava_id’s and access_token’s.
      Did you put every single strava_id and every single access_token in single quotes as provided in my example? In your post you put 2 things in one single quote …
      Other possibilities: Wrong strava data (id/token)? Did you read the documentation how to get strava_id?
      Did you take a look in the logs?
      If I test it with your testdata xxx I find these lines in the logs:

      Error performing request: Unauthorized. Access Token will be reset.
      Error while fetching new athlete stats.
      
      
      posted in Health
      karsten13K
      karsten13
    • RE: MMM-Strava

      try it with the missing brackets:

      		{
      			module: 'MMM-Strava',
      			position: 'top_left',
      			config: {
      				strava_id: ['xxx1', 'xxx2'],
      				access_token: ['xxx1', 'xxx2'],
      				activities: ['run'],
      				athlete_text: ['Tine', 'Basti'],
      			    auto_rotate: 'true'
      				 }
      		},
      
      posted in Health
      karsten13K
      karsten13
    • RE: MMM-Strava

      Hi,

      sounds you took the client id from the strava api page as input for strava_id of the module?

      Input of strava_id: https://support.strava.com/hc/en-us/articles/216928797-Where-do-i-find-my-Strava-ID-

      Karsten.

      posted in Health
      karsten13K
      karsten13
    • RE: Docker setup is not working

      The docker setup is outsourced to https://github.com/bastilimbach/docker-MagicMirror and I already posted an issue for the black screen problem there: https://github.com/bastilimbach/docker-MagicMirror/issues/2

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Docker setup is not working

      replacing “npm install” with “npm install --unsafe-perm” solved my blackscreen problem.

      posted in Troubleshooting
      karsten13K
      karsten13
    • RE: Docker Container

      Update: I found no valid mm container in the docker store.

      You can build your own docker image locally with

      docker build -t magic_mirror .
      

      and run it with

      docker run  -d --publish 8080:8080 --restart always --volume ~/magic_mirror/config:/opt/magic_mirror/config --volume ~/magic_mirror/modules:/opt/magic_mirror/modules --name magic_mirror magic_mirror
      

      and open it in your browser with

      http://localhost:8080/
      

      Be aware of this issue.

      Karsten.

      posted in Feature Requests
      karsten13K
      karsten13
    • 1
    • 2
    • 48
    • 49
    • 50
    • 51
    • 52
    • 51 / 52