Cannot load Repetier Server in iframe?
I used to load 6 of my printers into iframes so i could control them easier from 1 browser window using the below basic html -
<!DOCTYPE html>
<html>
<frameset rows="*,*" cols="*,*,*">
<frame src="http://192.168.1.X:3344/#!/printer/MK302/print">
<frame src="http://192.168.1.X:3344/#!/printer/MK301/print">
<frame src="http://192.168.1.X:3344/#!/printer/MK303/print">
<frame src="http://192.168.1.X:3344/#!/printer/MK304/print">
<frame src="http://192.168.1.X:3344/#!/printer/MK305/print">
<frame src="http://192.168.1.X:3344/#!/printer/MK306/print">
</frameset>
</html>
This was on version repetier version 1.2 and worked fine. Today I updated to version 1.43 though and it stopped loading the content in the frames... Now i get "192.168.1.X refused to connect." in all my frames.
I'm not sure why this has started happening, but it was as soon as I updated to 1.43 for some reason?
This was on version repetier version 1.2 and worked fine. Today I updated to version 1.43 though and it stopped loading the content in the frames... Now i get "192.168.1.X refused to connect." in all my frames.
I'm not sure why this has started happening, but it was as soon as I updated to 1.43 for some reason?
Comments
<!-- To prevent clickjacking we should disallow embedding in iframes -->
<allow-iframe-embedding>false</allow-iframe-embedding>
If you already have a file version there just add that line. Change false to true to allow iframe embedding.
Would the server need a restart after copying and changing this xml or will it pick it up itself?
Thanks again.