After some weeks with the MagicMirror running, my SD card got corrupted and I decided to reinstall the system from scratch. I switched from “Jessie Light” to “Stretch light”, used node 6.11.4 and of course the latest MagicMirror 2.1.3.
I can access the MM from the browser of my laptop, but Midori only shows a white page. Even for a very simple config file:
var config = {
address: "",
port: 8080,
ipWhitelist: ["192.168.2.185", "127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
units: "metric",
modules: [
{
module: "helloworld",
position: "bottom_bar",
config: {
text: "Hello world!"
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
The start of MM gives no error
Starting MagicMirror: v2.1.3
Loading config ...
Loading module helpers ...
No helper found for module: helloworld.
All module helpers loaded.
Starting server on port 8080 ...
Server started ...
Sockets connected & modules started ...
Ready to go! Please point your browser to: http://localhost:8080
and if I change from
midori -e Fullscreen -a http://localhost:8080
to
midori -e Fullscreen -a http://www.google.de
I see the google page. So Midori itself and the output on screen seems working as well.
Is anybody having an idea where to search for the error?
Is anybody using MagicMirror 2.1.3 on its Pi Zero?