• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

MMM-DBF does not work, no error messages

Scheduled Pinned Locked Moved Unsolved Troubleshooting
12 Posts 3 Posters 1.4k 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.
  • S Offline
    sletrabf @KristjanESPERANTO
    last edited by May 18, 2025, 2:04 PM

    @KristjanESPERANTO

    The same appears with app mode and table mode:

    [2025-05-18 15:53:57.429] [INFO]  System information:
    ### SYSTEM:   manufacturer: Raspberry Pi Foundation; model: Raspberry Pi 4 Model B Rev 1.1; virtual: false
    ### OS:       platform: linux; distro: Debian GNU/Linux; release: 12; arch: arm64; kernel: 6.12.25+rpt-rpi-v8
    ### VERSIONS: electron: 35.1.2; used node: 22.15.1; installed node: 22.15.1; npm: 10.9.2; pm2: 5.4.3
    ### OTHER:    timeZone: Europe/Berlin; ELECTRON_ENABLE_GPU: undefined 
    [2025-05-18 15:53:59.735] [INFO]  updatenotification: Updater Class Loaded! 
    [2025-05-18 15:53:59.737] [INFO]  updatenotification: Checking PM2 using... 
    [2025-05-18 15:53:59.743] [INFO]  updatenotification: [PM2] You are not using pm2 
    

    I could try more different things, also reinstall the whole MM if needed :)
    best regards,
    Felix

    K 1 Reply Last reply May 18, 2025, 5:37 PM Reply Quote 0
    • K Offline
      KristjanESPERANTO Module Developer @sletrabf
      last edited by May 18, 2025, 5:37 PM

      @sletrabf Have you tried deactivating all modules except for MMM-DBF to see if the problem disappears?

      S 1 Reply Last reply May 18, 2025, 5:49 PM Reply Quote 0
      • S Offline
        sletrabf @KristjanESPERANTO
        last edited by May 18, 2025, 5:49 PM

        @KristjanESPERANTO

        OK, I temporarily disabled all other modules following this advice here except for MMM-DBF.

        With

        showApp: false,
        

        I now get a black (blank) screen; with “true” it is showing the timetable app but nothing else (as expected).

        Is there any way to enable a (verbose) logging output to show what this module does?

        K 1 Reply Last reply May 18, 2025, 6:40 PM Reply Quote 0
        • K Offline
          KristjanESPERANTO Module Developer @sletrabf
          last edited by May 18, 2025, 6:40 PM

          showApp: false,

          disabled: true, is the option setting to disable modules. Where did you find showApp?

          it is showing the timetable app

          So it works without the other modules and doesn’t work when you activate the other modules? Can you figure out with which module it stops working?

          Is there any way to enable a (verbose) logging output to show what this module does?

          Seem that this module doesn’t have debug outputs. Only errors you could see in the browser console.

          Also, maybe it is important - when I start up MagicMirror, it gives the following error messages:

          I’m quit sure this is unrelated to this issue. You can try using the Wayland start option (npm run start:wayland) instead of the default start option (npm run start).

          S 1 Reply Last reply May 18, 2025, 7:46 PM Reply Quote 0
          • S Offline
            sletrabf @KristjanESPERANTO
            last edited by sletrabf May 18, 2025, 7:53 PM May 18, 2025, 7:46 PM

            @KristjanESPERANTO said in MMM-DBF does not work, no error messages:

            showApp: false,

            disabled: true, is the option setting to disable modules. Where did you find showApp?

            I did use the setting disabled: true, to disable the other modules (as explained here). The setting showApp: false, tells MMM-DBF to not load the table in the iFrame but generate a HTML table from the loaded information. showApp: true, works whereas showApp: false, does not.

            So it works without the other modules and doesn’t work when you activate the other modules? Can you figure out with which module it stops working?

            No, disabling the other modules doesn’t change anything.

            Is there any way to enable a (verbose) logging output to show what this module does?

            Seem that this module doesn’t have debug outputs. Only errors you could see in the browser console.

            OK, I’ll try to see something there!

            S 1 Reply Last reply May 18, 2025, 8:47 PM Reply Quote 0
            • S Offline
              sletrabf @sletrabf
              last edited by May 18, 2025, 8:47 PM

              @KristjanESPERANTO:

              I installed the module MMM-ViewNotifications and then I added several notifications to the file MMM-DBF.js, see: https://pastebin.com/YZEYgPpA

              Now the outcome is as follows:
              showApp: true,

              • The message “MMM_DBF_LOADED” is not shown. From my understanding this means that start() is not being (fully) executed?
              • The following messages are shown (in this order): MMM_DBF_GENERATING_URL, MMM_DBF_IFRAME_URL_GENERATED, MMM_DBF_ERROR_PROCESSING_DATA.

              showApp: false,

              • The message “MMM_DBF_LOADED” is not shown. From my understanding this means that start() is not being (fully) executed?
              • Only the following message is shown: MMM_DBF_ERROR_PROCESSING_DATA

              So, from my understanding, the error occurs here, possibly in the line await fetch (urlApi):

                async getData() {
                  const self = this;
                  const urlApi = `${this.generateUrl()}&mode=json&version=3`;
                  const dataRequest = await fetch(urlApi);
              
                  if (!dataRequest.ok) {
                    // Show that the data request is being processed
                    this.sendNotification("MMM_DBF_ERROR_PROCESSING_DATA", { message: '[MMM-DBF] Data processing returned an error.'});
                    let message = `An error has occurred: ${dataRequest.status}`;
                    if (dataRequest.status === 300) {
                      message += " - Ambiguous station name.";
                    }
                    throw new Error(message);
                  }
                  else {
                    const data = await dataRequest.json();
                    // Show that the data request is being processed
                    this.sendNotification("MMM_DBF_START_PROCESSING_DATA", { message: '[MMM-DBF] Data processing started.'});
                    self.processData(data);
                  }
                  self.scheduleUpdate(self.config.retryDelay);
                },
              

              I’m somehow not able to see the actual error that happened. Could you maybe please point out where I have to look for the value of dataRequest.status?

              Thanks in advance!
              Best regards,
              sletrabf

              S 1 Reply Last reply May 18, 2025, 8:58 PM Reply Quote 0
              • S Offline
                sdetweil @sletrabf
                last edited by sdetweil May 18, 2025, 9:01 PM May 18, 2025, 8:58 PM

                @sletrabf open the developers window

                ctrl-shift-i
                select the console tab
                enter a unique part of the module name in the filter field, dbf

                and see what you see

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 1 / 2
                1 / 2
                • First post
                  10/12
                  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