Read the statement by Michael Teeuw here.
MMM-next-episode
-
This might have something to do with it @PierreGode I see an error on server startup:
[2025-08-21 19:19:45.691] [WARN] No /root/MagicMirror/modules/MMM-next-episode/MMM-next-episode.js found for module: MMM-next-episode.
But MMM-next-episode.js is present in the MMM-next-episode DIR
-
@rambomonkey said in mmm-next-episode:
/MMM-next-episode
magic mirror is case sensitive…
I think the module name is mmm-next-episode
-
@sdetweil Hi, I have changed the config.js and I still get the same error:
[2025-08-21 19:25:57.758] [WARN] No /root/MagicMirror/modules/mmm-next-episode/mmm-next-episode.js found for module: mmm-next-episode.
-
@rambomonkey ok, so if you go to the MagicMirror/modules folder and do
ls -laF
do you find a folder with the proper name…
note the module name, the folder name AND the js file AND the register in the js file names MUST match exactly
-
@rambomonkey said in mmm-next-episode:
No /root/
also, NEVER run this stuff as root…
is that the user you used when you installed the module???
-
@sdetweil to be honest I cannot remember if I used root or not:
root@mmnew:~/MagicMirror/MMM-next-episode# ls -laF
total 108
drwxr-xr-x 6 root root 4096 Aug 21 19:22 ./
drwxr-xr-x 15 root root 4096 Aug 19 20:51 …/
drwxr-xr-x 8 root root 4096 Aug 19 18:45 .git/
drwxr-xr-x 3 root root 4096 Aug 19 18:45 .github/
-rwxr-xr-x 1 root root 31 Aug 19 18:45 .gitignore*
-rw-r–r-- 1 root root 35149 Aug 19 18:45 LICENSE
-rw-r–r-- 1 root root 602 Aug 19 18:45 MMM-next-episode.css
-rw-r–r-- 1 root root 5798 Aug 19 18:45 MMM-next-episode.js
-rw-r–r-- 1 root root 4613 Aug 19 18:45 README.md
drwxr-xr-x 2 root root 4096 Aug 19 18:45 img/
-rw-r–r-- 1 root root 2904 Aug 19 18:45 node_helper.js
drwxr-xr-x 33 root root 4096 Aug 19 18:45 node_modules/
-rw-r–r-- 1 root root 13972 Aug 19 18:45 package-lock.json
-rw-r–r-- 1 root root 544 Aug 19 18:45 package.json
root@mmnew:~/MagicMirror/MMM-next-episode# -
@rambomonkey uou can see root owns the files
if you try to run as a normal user, you dont have permission to access them at all
thus the not found
-
@sdetweil Thanks for the info, sorry im new to Linux. Would you happen to know how I could give a specific user the permissions?
-
the permissions are 3 sets of 3 rights
user read/write/execute
group anyone in this group
other anybody not specified abovethe commands
are chmod which can set the individual
permissions using flags or a number
777 means all for all
770 mean user and group users can do anything, everyone else no accessthe there is chgrp to change the group
all commands have help
–helpand most have a page in the manuals
man commandname
man chmod
man chgrpyou
eill need root permission to take root
permissions awaysudo gives root permission for this command
-
@rambomonkey
So this is how you want your Magic mirror setup to look like.
yeah no /root/ that can create a loads of headaches like this.