<?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[Modules not showing up on KWEB or Midori]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">i have a small problem with the modules. When i try to load MagicMirror² in a Browser on my Pi Zero from console, some modules won’t load. Instead of the module it shows a text like :“module_3_MMM-Fuel” or " module_4_MMM-soccer".</p>
<p dir="auto"><img src="/uploads/files/1478190837582-module.jpg" alt="0_1478190835084_module.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">If i load it from desktop or another computer everything works fine.</p>
<p dir="auto">this is the way i load the Browser (sudo xinit <a href="http://script.sh" target="_blank" rel="noopener noreferrer nofollow ugc">script.sh</a>):</p>
<p dir="auto">Midori:</p>
<pre><code>#!/bin/sh
xset -dpms # disable DPMS (Energy Star) features.
xset s off # disable screen saver
xset s noblank # don't blank the video device
unclutter &amp;
matchbox-window-manager &amp;
midori -e Fullscreen -a http://localhost:8080
</code></pre>
<p dir="auto">KWeb:</p>
<pre><code>#!/bin/sh
xset -dpms # disable DPMS (Energy Star) features.
xset s off # disable screen saver
xset s noblank # don't blank the video device
unclutter &amp;
matchbox-window-manager &amp;
kweb -KJERLH http://localhost:8080
</code></pre>
<p dir="auto">Can anybody help me please?</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://forum.magicmirror.builders/topic/922/modules-not-showing-up-on-kweb-or-midori</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 13:27:45 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/922.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 03 Nov 2016 16:34:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Fri, 04 Nov 2016 22:53:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/strawberry-3.141" aria-label="Profile: strawberry-3.141">@<bdi>strawberry-3.141</bdi></a><br />
Well i tried Chromium but i didn’t get it to work on the Pi Zero. With the code you provided it works well. Thank you for your time.</p>
]]></description><link>https://forum.magicmirror.builders/post/7551</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7551</guid><dc:creator><![CDATA[nixidee]]></dc:creator><pubDate>Fri, 04 Nov 2016 22:53:10 GMT</pubDate></item><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Fri, 04 Nov 2016 07:16:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nixidee" aria-label="Profile: nixidee">@<bdi>nixidee</bdi></a> you can either do some research yourself which pi Zero browser can handle es6/ecmascript2015 features, I’m using the Same browser electron is based on (chromium) or you have to do the changes manually</p>
]]></description><link>https://forum.magicmirror.builders/post/7514</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7514</guid><dc:creator><![CDATA[strawberry 3.141]]></dc:creator><pubDate>Fri, 04 Nov 2016 07:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Thu, 03 Nov 2016 22:27:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/strawberry-3.141" aria-label="Profile: strawberry-3.141">@<bdi>strawberry-3.141</bdi></a></p>
<p dir="auto">Thanks for your work. Which Browser do you recomment? Both are lightweight kiosk Browsers and the pi zero needs a lightweight browser as far as I know.</p>
<p dir="auto">I gues, I have to clone it again and npm install it again?</p>
]]></description><link>https://forum.magicmirror.builders/post/7510</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7510</guid><dc:creator><![CDATA[nixidee]]></dc:creator><pubDate>Thu, 03 Nov 2016 22:27:24 GMT</pubDate></item><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Thu, 03 Nov 2016 21:32:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nixidee" aria-label="Profile: nixidee">@<bdi>nixidee</bdi></a> yes that’s what I was talking about.</p>
<p dir="auto">The following lines should get you going, but the ecmascript is finalized and standard since june last year, you should probably think about switching the browser if their updates are that far behind</p>
<p dir="auto">MMM-soccer</p>
<pre><code>var self = this;
setInterval(function(){
            self.getData();
}, this.config.api_key ? 300000 : 1800000);
</code></pre>
<p dir="auto">MMM-Fuel</p>
<pre><code>var self = this;
return setInterval(function(){
            self.sortByPrice = !self.sortByPrice;
            self.updateDom(300);
}, this.config.rotateInterval);
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/7507</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7507</guid><dc:creator><![CDATA[strawberry 3.141]]></dc:creator><pubDate>Thu, 03 Nov 2016 21:32:20 GMT</pubDate></item><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Thu, 03 Nov 2016 18:23:06 GMT]]></title><description><![CDATA[<p dir="auto">Do you mean this?</p>
<p dir="auto"><img src="/uploads/files/1478197266007-console-resized.jpg" alt="0_1478197257549_console.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">That is this line:</p>
<pre><code>setInterval(() =&gt; {
</code></pre>
<p dir="auto">Or what did you need exactly?</p>
<p dir="auto">What (Kiosk)Browser do you use?</p>
]]></description><link>https://forum.magicmirror.builders/post/7505</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7505</guid><dc:creator><![CDATA[nixidee]]></dc:creator><pubDate>Thu, 03 Nov 2016 18:23:06 GMT</pubDate></item><item><title><![CDATA[Reply to Modules not showing up on KWEB or Midori on Thu, 03 Nov 2016 17:01:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nixidee" aria-label="Profile: nixidee">@<bdi>nixidee</bdi></a> both mentioned modules are created by me. A guess in the dark would be that the browsers probably don’t support the new ECMA SCRIPT 6 features that I’m using there, can you post a screenshot of the browser console?</p>
]]></description><link>https://forum.magicmirror.builders/post/7504</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7504</guid><dc:creator><![CDATA[strawberry 3.141]]></dc:creator><pubDate>Thu, 03 Nov 2016 17:01:12 GMT</pubDate></item></channel></rss>