Read the statement by Michael Teeuw here.
Compliments with remote file doesnt work.
-
{ "anytime": ["Ich sehe viel von mir in dir", "Verdammt. Du siehst gut aus!", "Möge die Macht mit dir sein", "Es gibt keinen Ort wie zu Hause", "*Ich trug eine Wassermelone*", "Dein Lächeln ist ansteckend", "Du siehst heute großartig aus", "Du bist ein schlauer Keks", "Aufgeben ist keine Option!", "Don't worry - be happy", "Perfektion ist langweilig!", "Du bist wundervoll", "Ich liebe Kaktusblümchen", "Smile every day", "Never give up", "Gib alles - nur nicht auf", "Today is a good day", "Wenn nicht jetzt - wann dann", "You are your only limit", "Dein lächeln steht dir gut", "Everything is possible", "Mit dir kann ich Pferde stehlen", "Gegensätze ziehen sich an", "Wake up and be awesome", "*Mein Baby gehört zu mir*", "Carpe Diem", "Du bist mein Zuhause", "*Bibe di babe di Buh!*", "Du hast das schönste Lachen", "Du bist ein großartiger Freund", "Du erstrahlst den Raum", "Du verdienst jetzt eine Umarmung", "Du kannst stolz auf dich sein", "Du bist hilfreicher als du denkst", "Du bist ein großartiger Zuhörer", "Ich wette du schwitzt Glitzer", "Du bist wundervoll", "Du bist einzigartig!", "Du inspirierst" ], "morning": ["Guten Morgen Sonnenschein!", "Lass doch das Kissen im Bett", "Du bist heute früh dran", "Dein Haar ist mega heute!", "Der fühe Vogel fängt den Wurm", "Das wird ein schöner Tag!", "Heute wird großartig", "Carpe Diem" ], "afternoon": ["Zeit für lecker Njam - Njam", "Dieser Tag ist großartig", "Beinahe Abendessenszeit!" ], "evening": ["Zeit zu Schlemmen", "Bis morgen!", "Schlaf gut", "Guten Appetit", "Yeah, Freizeit", "War das Essen gut?" ], "snow": ["Schneeballschlacht!", "Leise rieselt der Schnee", "Baue einen Schneemann" ], "day_sunny": ["Heute ist ein sonniger Tag", "Sonne tanken", "Time for a Dog Walk", "Cora will spielen!", "Die Sonne scheint heute!", "Have a wonderful Day", "Sunny Day Today" ], "day_cloudy": ["Couch Time" ], "rain": ["Ein Regenschirm wäre nützlich" ], "night_clear": ["Die Sterne funkeln" ], "....-01-01": ["Happy new year!"] }
-
@codac ok, the original post had the module source
anyhow
open the developers window on mm
ctrl-shift-i
select the tab labeled ‘console’ and add a unique part of the module name to the filter field
compl
for example
see if there are any errors…
if the module is able to get and parse the contents, it changes the defaults to the remote content
-
@sdetweil yes indeed there is:
Reason: CORS header ‘Access-Control-Allow-Origin’ missing -
@codac what is the address: in the mm config
if “localhost” try “0.0.0.0”
-
@sdetweil I’m using clientonly so on the client itself, the config wont have any affect, right? Furthermore on the server side there already is set 0.0.0.0
-
@codac fun… yeh, client only , what are u using for the client? MM clientonly or chrome?
if the former, I would try the latter
this is what I use to start the chrome browser over server where electron doesn’t exist
chromium -noerrdialogs -kiosk -start_maximized --disable-infobars --app=http://$server:$port --ignore-certificate-errors-spki-list --ignore-ssl-errors --ignore-certificate-errors 2>/dev/null
do
server= mm server port= mm server port
then the command above in a terminal window to test
-
@codac
Modern browser doesn’t allow cross-originated contents(code, data whatever) by default for security reason. I think there might be an option to turn it off(in browser or electron) I’m in out of my pc, so can’t test it by myself, but definitely exist, I know. -
@codac
In chrome/chromium, it might be--disable-web-security
flag on execution. -
@mmrize and @sdetweil
Yeah, I’ve seen solutions using a htaccess file andAccess-Control-Allow-Origin: https://amazing.site
as content.
Anyhow, I fixed it now placing the remote file on my server and not a remote web-server.
You can enter the local path and filename as stated here.That worked for me.
-
@codac good…
htaccess is on the server side…
this error is server generated, client should NOT be able to 'get around ’ it