<?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[MM screen doesn&#x27;t start but can access through web browser]]></title><description><![CDATA[<p dir="auto">On a Win10 machine, MM doesn’t display the screen but I can access it through a web browser.   Let me know if I can provide further info that will help troubleshoot this.  Thank you for taking a look at this issue.</p>
<pre><code>let config = {
    address: ["localhost", "192.168.100.11"],
    port: 8080,
    basePath: "/",
    ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.100.0/24"]
</code></pre>
<p dir="auto">$ npm run start</p>
<blockquote>
<p dir="auto">magicmirror@2.23.0 start<br />
.\node_modules.bin\electron js\electron.js</p>
</blockquote>
<p dir="auto">[28.05.2023 23:56.25.585] [LOG]   Starting MagicMirror: v2.23.0<br />
[28.05.2023 23:56.25.593] [LOG]   Loading config …<br />
[28.05.2023 23:56.25.597] [DEBUG] config template file not exists, no envsubst<br />
[28.05.2023 23:56.25.607] [LOG]   Loading module helpers …<br />
[28.05.2023 23:56.25.607] [LOG]   No helper found for module: alert.<br />
[28.05.2023 23:56.25.627] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.25.628] [LOG]   Module helper loaded: updatenotification<br />
[28.05.2023 23:56.25.945] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.25.945] [LOG]   Module helper loaded: calendar<br />
[28.05.2023 23:56.26.443] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.26.444] [LOG]   Module helper loaded: MMM-Wallpaper<br />
[28.05.2023 23:56.26.447] [LOG]   No helper found for module: MMM-CalendarExt3Agenda.<br />
[28.05.2023 23:56.26.500] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.26.501] [LOG]   Module helper loaded: MMM-MoonPhase<br />
[28.05.2023 23:56.26.502] [LOG]   No helper found for module: MMM-FlipClock.<br />
[28.05.2023 23:56.27.283] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.27.284] [LOG]   Module helper loaded: MMM-Gas<br />
[28.05.2023 23:56.27.399] [LOG]   Initializing new module helper …<br />
[28.05.2023 23:56.27.399] [LOG]   Module helper loaded: MMM-OpenWeatherForecast<br />
[28.05.2023 23:56.27.400] [LOG]   No helper found for module: MMM-CalendarExt3.<br />
[28.05.2023 23:56.27.401] [LOG]   No helper found for module: MMM-Carousel.<br />
[28.05.2023 23:56.27.401] [LOG]   All module helpers loaded.<br />
[28.05.2023 23:56.27.418] [LOG]   Starting server on port 8080 …<br />
[28.05.2023 23:56.27.441] [LOG]   Server started …<br />
[28.05.2023 23:56.27.442] [LOG]   Connecting socket for: updatenotification<br />
[28.05.2023 23:56.27.443] [LOG]   Starting module helper: updatenotification<br />
[28.05.2023 23:56.27.443] [LOG]   Connecting socket for: calendar<br />
[28.05.2023 23:56.27.443] [LOG]   Starting node helper for: calendar<br />
[28.05.2023 23:56.27.444] [LOG]   Connecting socket for: MMM-Wallpaper<br />
[28.05.2023 23:56.27.444] [LOG]   Starting node helper for: MMM-Wallpaper<br />
[28.05.2023 23:56.27.445] [LOG]   Connecting socket for: MMM-MoonPhase<br />
[28.05.2023 23:56.27.445] [LOG]   Starting module helper: MMM-MoonPhase<br />
[28.05.2023 23:56.27.446] [LOG]   Connecting socket for: MMM-Gas<br />
[28.05.2023 23:56.27.446] [LOG]   Starting module: MMM-Gas<br />
[28.05.2023 23:56.27.446] [LOG]   Connecting socket for: MMM-OpenWeatherForecast<br />
[28.05.2023 23:56.27.446] [LOG]   ====================== Starting node_helper for module [MMM-OpenWeatherForecast]<br />
[28.05.2023 23:56.27.447] [LOG]   Sockets connected &amp; modules started …<br />
[28.05.2023 23:56.27.600] [LOG]   Launching application.</p>
]]></description><link>https://forum.magicmirror.builders/topic/17815/mm-screen-doesn-t-start-but-can-access-through-web-browser</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 22:20:46 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/17815.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 May 2023 04:10:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MM screen doesn&#x27;t start but can access through web browser on Tue, 30 May 2023 17:23:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dde12" aria-label="Profile: DDE12">@<bdi>DDE12</bdi></a>   try this</p>
<p dir="auto">edit js/electron.js</p>
<p dir="auto">and change this , approx line 70 in the develop branch</p>
<pre><code>let address = (config.address === void 0) | (config.address === "")  ? (config.address = "localhost") : config.address;
</code></pre>
<p dir="auto">to this</p>
<pre><code>let address = (config.address === void 0) | (config.address === "") | (config.address === "0.0.0.0") ? (config.address = "localhost") : config.address;
</code></pre>
<p dir="auto">previous issue, reopened</p>
<p dir="auto"><a href="https://github.com/MichMich/MagicMirror/issues/2550" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/issues/2550</a></p>
]]></description><link>https://forum.magicmirror.builders/post/109582</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109582</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 30 May 2023 17:23:19 GMT</pubDate></item><item><title><![CDATA[Reply to MM screen doesn&#x27;t start but can access through web browser on Tue, 30 May 2023 15:13:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> Thanks!  I’ll keep an eye out for a solution.</p>
]]></description><link>https://forum.magicmirror.builders/post/109577</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109577</guid><dc:creator><![CDATA[DDE12]]></dc:creator><pubDate>Tue, 30 May 2023 15:13:32 GMT</pubDate></item><item><title><![CDATA[Reply to MM screen doesn&#x27;t start but can access through web browser on Mon, 29 May 2023 16:46:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dde12" aria-label="Profile: DDE12">@<bdi>DDE12</bdi></a> said in <a href="/post/109554">MM screen doesn't start but can access through web browser</a>:</p>
<blockquote>
<p dir="auto">Failed to load URL: <a href="http://0.0.0.0:8080/" target="_blank" rel="noopener noreferrer nofollow ugc">http://0.0.0.0:8080/</a> with error: ERR_ADDRESS_INVALID</p>
</blockquote>
<p dir="auto">well cool. no idea what’s causing that…</p>
<p dir="auto">but I had reported a failure with that setting last year but didn’t get that message…</p>
<p dir="auto">will put it on my list of things to look at.</p>
]]></description><link>https://forum.magicmirror.builders/post/109558</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109558</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 29 May 2023 16:46:38 GMT</pubDate></item><item><title><![CDATA[Reply to MM screen doesn&#x27;t start but can access through web browser on Mon, 29 May 2023 15:22:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> It looks like electron.js in 2.23.0 already has those changes except for</p>
<pre><code>let config = await core.start()
</code></pre>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/17807/config-template-file-not-exists-no-ensubst/7?_=1685358870752">https://forum.magicmirror.builders/topic/17807/config-template-file-not-exists-no-ensubst/7?_=1685358870752</a> had the default settings for address and ipWhitelist.  The new problem arises when I add my information.<br />
Changing config to</p>
<pre><code>address: "0.0.0.0",
ipWhitelist: [],
</code></pre>
<p dir="auto">results in a blank electron screen:<br />
npm run start</p>
<blockquote>
<p dir="auto">magicmirror@2.23.0 start<br />
.\node_modules.bin\electron js\electron.js</p>
</blockquote>
<p dir="auto">[29.05.2023 11:15.38.750] [LOG]   Starting MagicMirror: v2.23.0<br />
[29.05.2023 11:15.38.760] [LOG]   Loading config …<br />
[29.05.2023 11:15.38.764] [DEBUG] config template file not exists, no envsubst<br />
[29.05.2023 11:15.38.772] [LOG]   Loading module helpers …<br />
[29.05.2023 11:15.38.772] [LOG]   No helper found for module: alert.<br />
[29.05.2023 11:15.38.791] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.38.792] [LOG]   Module helper loaded: updatenotification<br />
[29.05.2023 11:15.39.107] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.39.107] [LOG]   Module helper loaded: calendar<br />
[29.05.2023 11:15.39.617] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.39.618] [LOG]   Module helper loaded: MMM-Wallpaper<br />
[29.05.2023 11:15.39.619] [LOG]   No helper found for module: MMM-CalendarExt3Agenda.<br />
[29.05.2023 11:15.39.623] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.39.623] [LOG]   Module helper loaded: MMM-MoonPhase<br />
[29.05.2023 11:15.39.623] [LOG]   No helper found for module: MMM-FlipClock.<br />
[29.05.2023 11:15.40.400] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.40.400] [LOG]   Module helper loaded: MMM-Gas<br />
[29.05.2023 11:15.40.515] [LOG]   Initializing new module helper …<br />
[29.05.2023 11:15.40.515] [LOG]   Module helper loaded: MMM-OpenWeatherForecast<br />
[29.05.2023 11:15.40.516] [LOG]   No helper found for module: MMM-CalendarExt3.<br />
[29.05.2023 11:15.40.517] [LOG]   No helper found for module: MMM-Carousel.<br />
[29.05.2023 11:15.40.517] [LOG]   All module helpers loaded.<br />
[29.05.2023 11:15.40.534] [LOG]   Starting server on port 8080 …<br />
[29.05.2023 11:15.40.560] [WARN]  You’re using a full whitelist configuration to allow for all IPs<br />
[29.05.2023 11:15.40.575] [LOG]   Server started …<br />
[29.05.2023 11:15.40.576] [LOG]   Connecting socket for: updatenotification<br />
[29.05.2023 11:15.40.576] [LOG]   Starting module helper: updatenotification<br />
[29.05.2023 11:15.40.576] [LOG]   Connecting socket for: calendar<br />
[29.05.2023 11:15.40.577] [LOG]   Starting node helper for: calendar<br />
[29.05.2023 11:15.40.577] [LOG]   Connecting socket for: MMM-Wallpaper<br />
[29.05.2023 11:15.40.577] [LOG]   Starting node helper for: MMM-Wallpaper<br />
[29.05.2023 11:15.40.578] [LOG]   Connecting socket for: MMM-MoonPhase<br />
[29.05.2023 11:15.40.578] [LOG]   Starting module helper: MMM-MoonPhase<br />
[29.05.2023 11:15.40.578] [LOG]   Connecting socket for: MMM-Gas<br />
[29.05.2023 11:15.40.578] [LOG]   Starting module: MMM-Gas<br />
[29.05.2023 11:15.40.579] [LOG]   Connecting socket for: MMM-OpenWeatherForecast<br />
[29.05.2023 11:15.40.579] [LOG]   ====================== Starting node_helper for module [MMM-OpenWeatherForecast]<br />
[29.05.2023 11:15.40.579] [LOG]   Sockets connected &amp; modules started …<br />
[29.05.2023 11:15.40.708] [LOG]   Launching application.<br />
[29.05.2023 11:15.41.834] [ERROR] (node:6304) electron: Failed to load URL: <a href="http://0.0.0.0:8080/" target="_blank" rel="noopener noreferrer nofollow ugc">http://0.0.0.0:8080/</a> with error: ERR_ADDRESS_INVALID<br />
(Use <code>electron --trace-warnings ...</code> to show where the warning was created)</p>
]]></description><link>https://forum.magicmirror.builders/post/109554</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109554</guid><dc:creator><![CDATA[DDE12]]></dc:creator><pubDate>Mon, 29 May 2023 15:22:29 GMT</pubDate></item><item><title><![CDATA[Reply to MM screen doesn&#x27;t start but can access through web browser on Mon, 29 May 2023 11:25:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dde12" aria-label="Profile: DDE12">@<bdi>DDE12</bdi></a> see<br />
<a href="https://github.com/MichMich/MagicMirror/issues/3083" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/issues/3083</a></p>
<p dir="auto">I thought you fixed that already<br />
<a href="https://forum.magicmirror.builders/topic/17807/config-template-file-not-exists-no-ensubst/7?_=1685358870752">https://forum.magicmirror.builders/topic/17807/config-template-file-not-exists-no-ensubst/7?_=1685358870752</a></p>
]]></description><link>https://forum.magicmirror.builders/post/109549</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109549</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 29 May 2023 11:25:07 GMT</pubDate></item></channel></rss>