Read the statement by Michael Teeuw here.
Are you tired of editing config.js, or have trouble doing it, see my new module
-
@brianlove I will check when I can.
could u enable debug in my module
( if using pm2, do pm2 stop all)
then start withnpm start > somefile.txtthen do the edit and save on the form
and then stop mm (ctrl-q) and send me the
somefile.txt via email.same userid as here at gmail.
thanks -
Hi All,
I reinstalled my MM this week and decided to use this module to do the configurations. Its all installed and I can see all my modules, however it seems to be hit and miss on enabling and setting the positions. for example,
default clock - this would not enable, I manually enabled it in the config and now shows Blue but can not set the position, either from the page or in the config.
Default calendar - this enabled ok, shows blue, but can not set the position, does not save
MMM-OpenWeatherForecast - works perfectly
newsfeed - works perfectly.
Any ideas on why some modules seem to be hit or miss?
Sorry for the thread resurrection, was not sure where to post.
Thanks
-
@doogy_rev set debug in my module config
debug:true,
then start mm like this
cd ~/MagicMirror npm start >somefile.txtif you use pm2 for autostart
before the above dopm2 stop allafter running and ‘saving’
ctrl-c to stop mm
send the somefile.txt to my email, or open an issue on the module and attach it there. (warning this log file has full text contents of config.js, so sending as email is better as issues are public). my email is this same userid at gmail
also, positions are set down below, not in the config up above… right?
-
@sdetweil I just emailed you the file, and yes I am setting the positions using the positions drop down menu at the bottom.
-
@doogy_rev yes, checking shortly
-
@doogy_rev see email for downloading fix
-
@sdetweil Works like a champ! Thank you for looking in to this and fixing.
-
I posted a new release the other day, which finally fixes compliments the right way, and enables other module authors to leverage the same capabilities.
documented in the readme. -
I love the idea of this module, not sure why i missed it out before. Anywho now that i am trying to set it up, i have installed the module (did not use sudo).
Inserted this much code with no modification.{ module:"MMM-Config", position:"bottom_right", // the QR code (if requested) will appear here config:{ }And when i go to the URL i see a blank page.

-
@Socrates SOOOOO much fun, because there are no types in javascript and no standards for modules, i have to discover and guess the author’s intent.
sometimes i have a bug, sometimes they do weird unexpected things
can you look at the console where you do npm start?if you use pm2, then
pn2 logs --lines=xxxxwhere xxxx is a number of lines to display, default 15
I’ve tested w a lot of modules, but not allcan u give me a list of all the modules in your config.js
grep "module:" ~/MagicMirror/config/config.js | uniq | sort -hyou didn’t see it cause its not listed in the modules list
would you be willing to send me
a copy of your config.js, xxx out apikeys, private data urls, but make sure to leave the structurefrom the the module folder, the
defaults.js
and the schema3.json —/ again edit out private things (near the bottom)i do not share info sent to me, ever,
you can also attach the cleaned files to an issue on the module github pageif emailing
.js files have to be renamed by adding .txt to the enddefaults and schema3 are constructed from your installed modules
me email is the same userid as here at gmail.
-
@Socrates i really want to look at this problem.
-
@sdetweil I get the same blank page and the reason is that it errors on buildschema4.js.
1|MagicMirror² | SyntaxError: Unexpected token ‘:’, …“^^-01-01”::[“Happy n”… is not valid JSON
1|MagicMirror² | at JSON.parse ()
1|MagicMirror² | at Object. (/home/dirk/MagicMirror/modules/MMM-Config/scripts/buildschema4.js:1173:14)
1|MagicMirror² | at Module._compile (node:internal/modules/cjs/loader:1546:14)
1|MagicMirror² | at Module._extensions…js (node:internal/modules/cjs/loader:1691:10)
1|MagicMirror² | at Module.load (node:internal/modules/cjs/loader:1317:32)
1|MagicMirror² | at Module._load (node:internal/modules/cjs/loader:1127:12)
1|MagicMirror² | at TracingChannel.traceSync (node:diagnostics_channel:315:14)
1|MagicMirror² | at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
1|MagicMirror² | at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:166:5)
1|MagicMirror² | at node:internal/main/run_main_module:30:49The reason is the compliments module:
compliments: {
anytime: [“Hey there sexy!”],
morning: [“Good morning, handsome!”, “Enjoy your day!”, “How was your sleep?”],
afternoon: [“Hello, beauty!”, “You look sexy!”, “Looking good today!”],
evening: [“Wow, you look hot!”, “You look nice!”, “Hi, sexy!”],
“…-01-01”: [“Happy new year!”]
}, -
@MarcLandis thanks…
in July I changed the processing for compliments… it worked before and the new process changed it to a different approach but still works…
can you do
in the module folder
ls schemas -laFthere should be 4 files related to compliments
these two handle the correction for the possible . in the js object type
-rw-rw-r-- 1 sam sam 2882 Jun 29 07:32 compliments_converter.js
-rw-rw-r-- 1 sam sam 9006 Jul 6 19:14 compliments.schema.jsonand these two that improve the form look and feel and handling
-rw-rw-r-- 1 sam sam 381 Jun 28 18:01 compliments_extension.css
-rw-rw-r-- 1 sam sam 1980 Jul 6 19:10 compliments_extension.js -
-rw-r–r-- 1 dirk dirk 2882 Sep 13 15:23 compliments_converter.js
-rw-r–r-- 1 dirk dirk 381 Sep 13 15:23 compliments_extension.css
-rw-r–r-- 1 dirk dirk 1980 Sep 13 15:23 compliments_extension.js
-rw-r–r-- 1 dirk dirk 9006 Sep 13 15:23 compliments.schema.jsonI just did a fresh install of the module, to test something myself
-
@MarcLandis gosh I hate git changing file dates…
SO, can you do this for me
in the module folder do
node scripts/buildschema4.js …/defaults.js debug >somefile.txt 2>&1
and send me somefile.txt
I’d have you attach it to an issue, but it shows every line from config.js
same id at gmail… and issue attachments are public -
@sdetweil I created a new issue on github and uploaded the file after removing some sensitive information.
-
@MarcLandis great… thanks
pushed fix to the with_unused_fix branch
git pull
git checkout with_unused_fix
and run the buildschema4 test again -
throws an error:
/home/dirk/MagicMirror/modules/MMM-Config/scripts/buildschema4.js:750
if(module_scripts[m.module] !== undefined ){
^ -
@MarcLandis said in Are you tired of editing config.js, or have trouble doing it, see my new module:
throws an error:
/home/dirk/MagicMirror/modules/MMM-Config/scripts/buildschema4.js:750
if(module_scripts[m.module] !== undefined ){
^fixed it myself but ran into the next exception:
calling module data converter script for module=compliments /home/dirk/MagicMirror/modules/MMM-Config/schemas/compliments_converter.js:24 Object.keys(config_data.compliments).forEach(c =>{ ^ TypeError: Cannot read properties of undefined (reading 'compliments') at Object.converter (/home/dirk/MagicMirror/modules/MMM-Config/schemas/compliments_converter.js:24:27) at /home/dirk/MagicMirror/modules/MMM-Config/scripts/buildschema4.js:754:49 -
@MarcLandis sorry, try again, git pull…
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login
