Read the statement by Michael Teeuw here.
Has anyone got MMM-Remote-Control working on MM 2.11 ?
-
@karsten13 yes mine appears to be working, but I don’t edit my config there, I edit via SSH.
I can’t seem to get the upload screenshot to work, but yes I see all my modules.
-
@karsten13 for me it works after upgrade with sams script
-
@RoadRunnr1469 said in Has anyone got MMM-Remote-Control working on MM 2.11 ?:
I can’t seem to get the upload screenshot to work, but yes I see all my modules.
posting images is broken
-
may you can post the content of your
./js/socketclient.js
?
So please go into the magicmirror folder and executecat ./js/socketclient.js
and post the output here. Thanks. -
var MMSocket = function(moduleName) { var self = this; if (typeof moduleName !== "string") { throw new Error("Please set the module name for the MMSocket."); } self.moduleName = moduleName; // Private Methods self.socket = io("/" + self.moduleName); var notificationCallback = function() {}; var onevent = self.socket.onevent; self.socket.onevent = function(packet) { var args = packet.data || []; onevent.call(this, packet); // original call packet.data = ["*"].concat(args); onevent.call(this, packet); // additional call to catch-all }; // register catch all. self.socket.on("*", function(notification, payload) { if (notification !== "*") { notificationCallback(notification, payload); } }); // Public Methods this.setNotificationCallback = function(callback) { notificationCallback = callback; }; this.sendNotification = function(notification, payload) { if (typeof payload === "undefined") { payload = {}; } self.socket.emit(notification, payload); }; };
-
didn’t ask you, because I know your socketclient.js, you applied my patch …
-
@karsten13 actually no I didn’t. I had backed up my entire MagicMirror folder and all sub folders before upgrading. I saw another post where they said they changed the socketclient back to before upgrade. so I did the same thing. after making a backup of the new socketclient.js file.
-
@RoadRunnr1469 so…After restart MM …Remote Control is not working anymore :worried_face:
-
@Stoffbeuteluwe put his fix on the js/socketclient.js
-
what if cat ./js/socketclient.js says the file doesn’t exist? Would it be located somewhere else for the MagicMirrorOS?