Are you talking about this one? https://github.com/masters1222/mm-hide-all
open a terminal:
cd ~/MagicMirror/modules
git clone https://github.com/masters1222/mm-hide-all.git
Are you talking about this one? https://github.com/masters1222/mm-hide-all
open a terminal:
cd ~/MagicMirror/modules
git clone https://github.com/masters1222/mm-hide-all.git
@billp100
Boolean values and numbers should be written without " or ’
Uninstall PiHole. If you search this forum for PiHole you will find two other threads with similar memory issues, both related to PiHole. After removing it the issue was gone.
@SilentJbob1680
For some reason they changed the variable containing the path to the image from posterPath
to poster_path
You could change this
const poster = document.createElement('img');
poster.classList.add('poster');
poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.posterPath}`;
wrapper.appendChild(poster);
to this
const poster = document.createElement('img');
poster.classList.add('poster');
poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.poster_path}`;
wrapper.appendChild(poster);
for an immediate fix, or you could wait for strawberry to fix it on github and provide a new version. If you fix it on your own you will need to revert the changes before you can update once strawberry provided the update.
One problem I see there is this:
If you lock down folder access rights, your scripts might fail too and it will be a hassle to get this right. I second “FlatPepsi” … make a backup and let them play
Did you run the installation with sudo? It’s trying to install in /root/MagicMirror and that’s wrong
@SilentJbob1680
So, please open a terminal on your raspberry, change into the ~/MagicMirror/modules/MMM-MovieInfo
folder and do git pull
to retrieve the update
Both schlachtkreuzer6 and doubleT are totally right. I tried to change the post with your config, but akismet.com flags this as spam.
Besides wrong quotes the position of your added module was incorrect.
Please try this config:
/* Magic Mirror Config Sample
By Michael Teeuw http://michaelteeuw.nl
MIT Licensed.
For more information how you can configurate this file
See https://github.com/MichMich/MagicMirror#configuration
*/
var config = {
address: "localhost",
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
language: "en",
timeFormat: 24,
units: "metric",
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "US Holidays",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
}
]
}
},
{
module: "compliments",
position: "lower_third"
},
{
module: "currentweather",
position: "top_right",
config: {
location: "New York",
locationID: "", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "YOUR_OPENWEATHER_API_KEY"
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "New York",
locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "YOUR_OPENWEATHER_API_KEY"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "New York Times",
url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
{
module: "internet-monitor",
position: "top_center",
header: "Internet Monitor",
config: {
type: "",
maxTime: 20000,
updateInterval: 0,
verbose: false,
displayStrength: true,
displaySpeed: true,
strengthIconSize: 80,
maxGaugeScale: 100,
wifiSymbol: {
size: 50,
fullColor: "#3afc25",
almostColor: "#ffff0c",
halfColor: "#ff8c00",
noneColor: "#ff1111"
},
},
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}