<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Missing the weather after new installation]]></title><description><![CDATA[<p dir="auto">Hello out there!<br />
I have a question about the weather modul:<br />
I have setup following the manuals now two times the MM2 and always the weather on the right hand side is missing? I created an account @Openweathermap and looked up my city.<br />
Both entered in the config.js… but still no weather displayed?</p>
<p dir="auto">Thank you in advance for your support!</p>
<p dir="auto"><img src="/assets/uploads/files/1493216767646-upload-9b54a877-0495-4e31-ab6f-b8ef8d0c60fd.png" alt="0_1493216766152_upload-9b54a877-0495-4e31-ab6f-b8ef8d0c60fd" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/topic/2416/missing-the-weather-after-new-installation</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 08:01:02 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/2416.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 26 Apr 2017 14:27:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 19:04:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a></p>
<p dir="auto">Yup, it was just easier to fix it than explain</p>
]]></description><link>https://forum.magicmirror.builders/post/20536</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20536</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 26 Apr 2017 19:04:55 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 19:02:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mykle1" aria-label="Profile: Mykle1">@<bdi>Mykle1</bdi></a> Wrong quotations again, I’m guessing the built in word-editor in pixel is to blame here. (that automaticly change <code>"</code> to <code>“</code> )</p>
]]></description><link>https://forum.magicmirror.builders/post/20535</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20535</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Wed, 26 Apr 2017 19:02:34 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 20:49:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/corsaless" aria-label="Profile: corsaless">@<bdi>corsaless</bdi></a></p>
<p dir="auto">However, <a href="http://jshint.com" target="_blank" rel="noopener noreferrer nofollow ugc">jshint.com</a> basically reported that your config was a mess. Rather than tell you the things that were wrong, I went ahead and fixed it for you. The only thing missing from this config now is a url for your calendar module and your API key for weather that you already have. You simply have to insert them.<br />
Peace!</p>
<pre><code>var config = {
	port: 8080,
	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses.

	language: "de",
	timeFormat: 24,
	units: "metric",

    modules: [
            {
                    module: "alert",
            },
            {
                    module: "updatenotification",
                    position: "top_bar"
            },
            {
                    module: "clock",
                    position: "top_left"
            },
            {
                    module: "calendar",
                    header: "Termin Diana und Ingo",
                    position: "top_left",
                    config: {
                            calendars: [
                                    {
                                            symbol: "calendar-check-o ",
                                            url: ""
                                    }
                            ]
                    }
            },
            {
                   module: "compliments",
                    position: "lower_third"
            },
            {
                    module: "currentweather",
                    position: "top_right",
                    config: {
                            location: "Uedem",
                            locationID: "2820465",  //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "YOUR API KEY"
                    }
            },
            {
                    module: "weatherforecast",
                    position: "top_right",
                    header: "Weather Forecast",
                    config: {
                            location: "Uedem",
                            locationID: "2820465",  //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "YOUR API KEY"
                    }
            },
            {
                    module: "newsfeed",
                    position: "bottom_bar",
                    config: {
                            feeds: [
                                    {
                                            title: "RP Online",
                                            url: "http://www.rp-online.de/feed.rss"
                                    }
                            ],
                            showSourceTitle: true,
                            showPublishDate: true
                    }
            },
    ]
};


/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/20534</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20534</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 26 Apr 2017 20:49:25 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 18:45:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hartattack" aria-label="Profile: hartattack">@<bdi>hartattack</bdi></a> said in <a href="/post/20526">Missing the weather after new installation</a>:</p>
<blockquote>
<p dir="auto">Not sure if this will answer it</p>
</blockquote>
<p dir="auto">His API key and his locationID are fine.</p>
<p dir="auto">The proof:<br />
<img src="/assets/uploads/files/1493232343968-capture.jpeg" alt="0_1493232368613_Capture.JPG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/20532</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20532</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Wed, 26 Apr 2017 18:45:56 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 17:52:45 GMT]]></title><description><![CDATA[<p dir="auto">Not sure if this will answer it, but I had to create a new API Key after I installed the first time. The first one wouldnt work, but the second one worked great!</p>
]]></description><link>https://forum.magicmirror.builders/post/20526</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20526</guid><dc:creator><![CDATA[hartattack]]></dc:creator><pubDate>Wed, 26 Apr 2017 17:52:45 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 15:20:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/corsaless" aria-label="Profile: corsaless">@<bdi>corsaless</bdi></a> this config looks fine. Check more in modules mby somewhere there you have mistake?</p>
]]></description><link>https://forum.magicmirror.builders/post/20517</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20517</guid><dc:creator><![CDATA[davidrq7]]></dc:creator><pubDate>Wed, 26 Apr 2017 15:20:39 GMT</pubDate></item><item><title><![CDATA[Reply to Missing the weather after new installation on Wed, 26 Apr 2017 14:30:18 GMT]]></title><description><![CDATA[<p dir="auto">Here is the full c&amp;p from my config.js if that helps:<br />
(just removed the link to my private calender…)</p>
<p dir="auto">/* Magic Mirror Config Sample<br />
*</p>
<ul>
<li>By Michael Teeuw <a href="http://michaelteeuw.nl" target="_blank" rel="noopener noreferrer nofollow ugc">http://michaelteeuw.nl</a></li>
<li>MIT Licensed.<br />
*/</li>
</ul>
<p dir="auto">var config = {<br />
port: 8080,<br />
ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses.</p>
<pre><code>    language: "de",
    timeFormat: 24,
    units: "metric",

    modules: [
            {
                    module: "alert",
            },
            {
                    module: "updatenotification",
                    position: "top_bar"
            },
            {
                    module: "clock",
                    position: "top_left"
            },
            {
                    module: "calendar",
                    header: "Termin Diana und Ingo",
                    position: "top_left",
                    config: {
                            calendars: [
                                    {
                                            symbol: "calendar-check-o ",
                                            url: ""
                                    }
                            ]
                    }
            },
            {
                   module: "compliments",
                    position: "lower_third"
            },
            {
                    module: "currentweather",
                    position: "top_right",
                    config: {
                            location: "Uedem",
                            locationID: "2820465",  //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "2d293dbaa988b5f49577db048ee2153c"
                    }
            },
            {
                    module: "weatherforecast",
                    position: "top_right",
                    header: "Weather Forecast",
                    config: {
                            location: "Uedem",
                            locationID: "2820465",  //ID from http://www.openweathermap.org/help/city_list.txt
                            appid: "2d293dbaa988b5f49577db048ee2153c"
                    }
            },
            {
                    module: "newsfeed",
                    position: "bottom_bar",
                    config: {
                            feeds: [
                                    {
                                            title: "RP Online",
                                            url: "http://www.rp-online.de/feed.rss"
                                    }
                            ],
                            showSourceTitle: true,
                            showPublishDate: true
                    }
            },
    ]
</code></pre>
<p dir="auto">};</p>
<p dir="auto">/*************** DO NOT EDIT THE LINE BELOW ***************/<br />
if (typeof module !== “undefined”) {module.exports = config;}</p>
]]></description><link>https://forum.magicmirror.builders/post/20516</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/20516</guid><dc:creator><![CDATA[corsaless]]></dc:creator><pubDate>Wed, 26 Apr 2017 14:30:18 GMT</pubDate></item></channel></rss>