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.

    Probleme beim Anzeigen des iFrame Moduls

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    3 Posts 3 Posters 1.5k Views 2 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
      MichaelS
      last edited by yawns

      Hallo,

      bin noch relativ unerfahren und versuche 2-3 Module zu installieren. Ich scheitere aber immer wieder daran das die neuen Module nicht angezeigt werden. Die Standardmodule bis auf Wetter gehen.

      Aktuell versuche ich mich am iFrame Modul.
      Hier mal meine config.js

      language: "de",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_right"
      	},
      	{
      		module: "MMM-iFrame",
      		position: "top_left",	// This can be any of the regions.
      		config: {
      		// See "Configuration options" for more information.
      			url: ["http://192.168.178.223:8082/vis/index.html#TeleconsulterHaus", "ENTER IN URL2"],  // as many URLs you want or you can just ["ENTER IN URL"] if single URL.
      			updateInterval: 0.5 * 60 * 1000, // rotate URLs every 30 seconds
      			width: "100%", // Optional. Default: 100%
      			height: "100px" //Optional. Default: 100px
      			
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "Bild News",
      					url: "http://www.bild.de/rss3-20745882,feed=alles.bild.html"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      ]
      };
      

      Wenn ich die Seite normal im Browser starte wird sie angezeigt. Auch andere URLs gehen nicht.
      Was mach ich falsch?

      Gruß
      Michael

      idoodlerI 1 Reply Last reply Reply Quote 0
      • idoodlerI Offline
        idoodler Module Developer @MichaelS
        last edited by

        @michaels Welcome Michael! This is an englisch forum, you will get much more answers if you post in englisch.

        I notice a few things:

        • Is the IP accessable from the network your mirrror is on
          • execute ping 192.168.178.223 and check if you get a ping
        • The url property of the MMM-iFrame module is an array and you still have "ENTER IN URL2" in it. Try to remove the second item of the array.

        Example MMM-iFrame:

        {
        module: “MMM-iFrame”,
        position: “top_left”,	// This can be any of the regions.
        config: {
        	// See “Configuration options” for more information.
        	url: [“http://192.168.178.223:8082/vis/index.html#TeleconsulterHaus”], // as many URLs you want or you can just [“ENTER IN URL”] if single URL.
        	updateInterval: 0.5 * 60 * 1000, // rotate URLs every 30 seconds
        	width: “100%”, // Optional. Default: 100%
        	height: “100px” //Optional. Default: 100px
        	}
        }
        

        Btw, your code formatting is off a bit

        1 Reply Last reply Reply Quote 0
        • B Offline
          barnosch
          last edited by

          maybe a stupid question, but you installed the modules you trying to show correctly?

          git clone MMM-blabla in the modules folder… and
          after cloning most of the moduels need some dependencies
          you need a npm install within the modules folder.

          Just follow the readme instructions. Most of them are very cleraly described.
          Maybe you should try to show the iframe module with a simple page like google.de?

          Do you get errros that the mirror does not show anything at all, or just the new module is not shown?

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