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

    Posts

    Recent Best Controversial
    • RE: MMM-Reddit 403 error

      @mumblebaj Thanks - mine is (partially) working now as well. It came back this morning, so it must have been a Reddit API glitch. I’m going to experiment a bit more over the weekend, as it’s not showing all my posts (config says 10, but it fluctuates between 1 and 4…).

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-Reddit 403 error

      @sdetweil

      Thanks. Issue created created.

      posted in Troubleshooting
      K
      kasperb
    • RE: [MMM-Remote-Control] Cannot GET /remote.html

      @sdetweil Yup, that’s what I have - sample of config here:

      let config = {
      	address: "0.0.0.0",	// Address to listen on, can be:
      							// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      							// - another specific IPv4/6 to listen on a specific interface
      							// - "0.0.0.0", "::" to listen on any interface
      							// Default, when address config is left out or empty, is "localhost"
      	port: 8080,
      	basePath: "/",	// The URL path where MagicMirror² is hosted. If you are using a Reverse proxy
      									// you must set the sub path here. basePath must end with a /
      	ipWhitelist: [],	// Set [] to allow all IP addresses
      									// or add a specific IPv4 of 192.168.1.5 :
      									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      									// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      
      posted in Troubleshooting
      K
      kasperb
    • MMM-Reddit 403 error

      Hello - for some reason my mirror was throwing some errors, so I decided on a fresh install. All is working fine again, but the MMM-Reddit module is now throwing the following errror:

      1|MagicMirror | [2025-10-08 21:10:31.589] [ERROR] Error fetching Reddit data: 403 Blocked

      I did various troubleshooting steps, incl. using the original config with the default module config (see below).

      Any idea what could cause this? My Mirror is up to date, and there are no other errors currently.

      		 {
                  module: "MMM-Reddit",
                  position: "bottom_left",
                  disabled: false,
                  config: {
                      subreddit: ['television', 'science', 'nottheonion'],
                      headerType: 'chained',
                      displayType: 'image',
                      count: 14,
                      show: 1,
                      width: 400,
                      showAll: true,
                      showScore: false,
                      showSubreddit: true,
                      colorText: false,
                      showThumbnail: false,
                  }
              },
      
      posted in Troubleshooting
      K
      kasperb
    • RE: [MMM-Remote-Control] Cannot GET /remote.html

      @KristjanESPERANTO said in [MMM-Remote-Control] Cannot GET /remote.html:

      the Node website

      Experiencing the same issue… Created a clean install of MM over the weekend and am getting the same error. NVM is updated. :-(

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-OpenWeatherForecast showing incorrect weather for my location

      @sdetweil Good suggestion… that worked.

      Next, I put back the original config and changed the lat/long from a number into a string which fixed it while using my original/customized config as well.

      Thanks for your help troubleshooting @sdetweil ! Much appreciated

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-OpenWeatherForecast showing incorrect weather for my location

      @sdetweil Removed the URL, app is loading but the same issue:

      • 10F in the app
      • 15F on OpenWeather.org

      I even double-checked the lat/long, and aligned them (‘geo coords’) exactly with what’s listed for my location on the OpenWeather.org site.

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-OpenWeatherForecast showing incorrect weather for my location

      @sdetweil Yes, I’m using the 3.0 apikey, backed by a CC. Can you clarify what you mean with removing the ApiBase property?

      I’m going to play around using some lat/long from neighboring towns and see if that could help.

      Also, thanks for the guidance on posting config & log info.

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-OpenWeatherForecast showing incorrect weather for my location

      @sdetweil

      Here is the config:

      {
          module: "MMM-OpenWeatherForecast",
          position: "top_left",
          disabled: false,
          header: "",
          config: {
            apikey: "_DELETED_", //SUPER SECRET
            latitude: <RM FOR PRIVACY>,
            longitude: <RM FOR PRIVACY,
            units: "imperial",
            debug: true,
            apiBaseURL: "https://api.openweathermap.org/data/3.0/onecall?",
            iconset: "3m",
            colored: false,
            concise: true,
            requestDelay: "2000",
            showFeelsLikeTemp: true,
      
            showCurrentConditions: true,
            showSummary: true,
            showExtraCurrentConditions: true,
            extraCurrentConditions: {
              highLowTemp: true,
              precipitation: true,
              sunrise: false,
              sunset: false,
              wind: true,
              barometricPressure: false,
              humidity: true,
              dewPoint: false,
              uvIndex: true,
              visibility: false
            },
      
            forecastLayout: "table",
            forecastHeaderText: "",
      
            hourlyForecastTableHeaderText: "Hourly",
            showHourlyForecast: true,
            showHourlyTableHeaderRow: true,
            hourlyForecastInterval: 3,
            maxHourliesToShow: 3,
            hourlyExtras: {
              precipitation: true,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false,
              visibility: false
            },
      
            dailyForecastTableHeaderText: "Weekly",
            showDailyForecast: true,
            showDailyTableHeaderRow: true,
            maxDailiesToShow: 5,
            dailyExtras: {
              precipitation: true,
              sunrise: false,
              sunset: false,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false
            },
      
          }
        },
      

      This is the output of the command:

      origin https://github.com/Tom-Hirschberger/MMM-OpenWeatherForecast (fetch)
      origin https://github.com/Tom-Hirschberger/MMM-OpenWeatherForecast (push)

      posted in Troubleshooting
      K
      kasperb
    • RE: MMM-OpenWeatherForecast showing incorrect weather for my location

      @sdetweil Hi - just regular numbers e.g,

      40.712776,
      -74.005974,

      posted in Troubleshooting
      K
      kasperb
    • 1 / 1