MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. sdetweil
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S Do not disturb
    • Profile
    • Following 0
    • Followers 110
    • Topics 92
    • Posts 21,389
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Calendar shows late day events on next day but at correct time

      @MarcLandis can you retest at your convenience

      git pull and npm run install-mm

      posted in Troubleshooting
      S
      sdetweil
    • RE: Bookworm: MM not starting

      @calimero glad you got it going.

      as for your delayed posts

      everyone with reputation below 2 has their posts reviewed. this to stop all the junk posts

      i review every such post, and occasionally sleep! lol

      please don’t double post

      posted in Troubleshooting
      S
      sdetweil
    • RE: Need Help - Absolute Beginner - Code Posted!

      @bumrocks they CAN be altered, but are not there by default… yes, you have to discover them , if u have the need

      as for the issues and vulnerabilities, they are not in the MM code, but code it uses and that those use… where the MM owners have little to no control (or exposure to the problem)

      but many of the issues you present are why I built up the installer and updater scripts, to get you up and running, regardless of your platform choice

      this remains a volunteer project, where, if u are interested you can contribute. It is NOT a ‘product’

      posted in Troubleshooting
      S
      sdetweil
    • RE: Mirror not starting after updating to MagicMirror² v2.12.0

      @dmstansbury and, if u had used my upgrade script, it would have done all that for you!

      https://github.com/sdetweil/MagicMirror_scripts

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-Pir

      @gonzonia weird… how did you upgrade to node 21?
      apt or nvm?

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-GoogleTasks not compatible with MMM-pages, MMM-Carousel, or MMM-ModuleScheduler

      @hco125 said in MMM-GoogleTasks not compatible with MMM-pages, MMM-Carousel, or MMM-ModuleScheduler:

      TypeError: Cannot convert undefined or null to object
      at Function.keys ()

      bug…

      missing data, when display is requested

      do this

      edit MMM-GoogleTasks.js

      change line 37
      from

      		this.tasks;
      

      to

      		this.tasks= {};
      
      posted in Troubleshooting
      S
      sdetweil
    • RE: Contributing to a GitHub repository - a bit stuck

      @mumblebaj yes, was trying not to add too much extra as there is already a terminal window open for running MM with the modified module

      posted in Troubleshooting
      S
      sdetweil
    • RE: Problem Adding Buttons & required Remote-Control Modules

      @awwbaker ps: i don’t accept coffee etc. i do this because i truly enjoy it.
      i love the challenge, the great people here, and the fascinatingly huge amount of differences among all your designs.

      posted in Troubleshooting
      S
      sdetweil
    • RE: Magic Mirror won’t start

      @diccon yes, a module is missing a required library , you need to run npm install in the module folder for the specific module

      this is version 2.28, latest is 2.29, we have added code to catch these failures and continue running, where before we crashed.

      posted in Troubleshooting
      S
      sdetweil
    • RE: ERROR:network_service_instance_impl.cc(600)

      @togletree93 thats outside our app…

      can you try in server mode and

      npm run server
      then open browser to http://localhost:8080

      posted in Troubleshooting
      S
      sdetweil
    • RE: Docker install on synology nas

      this turned out to be a permissions problem. the folder was created w the synology user, but the container is running as user 1000

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-CalendarExt - Startup problem

      @Bimtronic ignore the audit reports, nothing you can do about them. part of the reason request is deprecated.

      posted in Troubleshooting
      S
      sdetweil
    • RE: Fails to start... "Log.log is not a function"

      @Bimtronic in the MagicMirror folder

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-Pir

      @bugsounet you should make it normal, like the rest of the modules…

      posted in Troubleshooting
      S
      sdetweil
    • RE: Fails to start... "Log.log is not a function"

      @Bimtronic can you show me the config.js, xxx out any apikeys or private info

      posted in Troubleshooting
      S
      sdetweil
    • RE: Weather module does not load

      @canlio weather is done all in browser, so open the developer window, ctrl-shift-i, select the console tab, put weath in the filter field.

      openweather has changed their business model, the apikey is backed by a credit card

      posted in Troubleshooting
      S
      sdetweil
    • RE: Weather module does not load

      @canlio cool, but, its not supposed to work. they told us publicly 2.5 was supposed to stop working in October… hmmmm

      posted in Troubleshooting
      S
      sdetweil
    • RE: Question about translations/the translation system

      @cgillinger This is one place where the inherited module functions are not so good

      getTranslations()

      happens WAY before any code is run so you can’t adjust its response based on other info the config might have provided…

      and we don’t expose any functions to do the work not related to the files returned from that function

      but your code could do the translations BEFORE giving the content to MM… so there would be nothing to translate

      posted in Troubleshooting
      S
      sdetweil
    • RE: 2.30.0 and MMM-CalendarExt3 missing calendars

      @redfishbluefish
      apply this fix
      see
      https://forum.magicmirror.builders/topic/19282/version-2-30-0-calendar-fix-for-clipping-broadcast-events

      posted in Troubleshooting
      S
      sdetweil
    • Version 2.30.0 Calendar fix for clipping broadcast events

      after installing Jan 1 2025 MM version, events broadcast to MMM-CalendarExt3 are clipped incorrectly

      apply this fix (til next release)

      cd ~/MagicMirror
      git fetch origin pull/3679/head:_fix_clipping
      git switch _fix_clipping
      npm run install-mm
      # if you get an error error, rm package-lock.json
      # and repeat the git switch
      restart MM
      

      this fix has been accepted and added to the next release

      you can use that package instead
      see https://forum.magicmirror.builders/topic/14327/testing-new-fixes-or-solving-current-problems-with-next-release-code
      to get the develop branch
      #NOTE: using develop requires a new

      npm run install-mm
      

      absolutely my fault… BUT
      this release has been stable and in test since October… but clearly not enough tested it.

      posted in Troubleshooting
      S
      sdetweil
    • 1 / 1