Read the statement by Michael Teeuw here.
Run JavaScript if a file is created
-
@KirAsh4 I had actually uploaded that file a few posts back. For reference here’s the entire thing (forgive the ugliness)
<head> <title>Magic Mirror</title> <html> <style type="text/css"> <?php include('css/main.css') ?> <?php include('css//mbta-icons.css') ?> </style> <link rel="stylesheet" type="text/css" href="css/weather-icons.css"> <script type="text/javascript"> var gitHash = '<?php echo trim(`git rev-parse HEAD`) ?>'; </script> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <meta name="google" value="notranslate" /> </head> <body> <div class="backgroundTint"></div> <div class="top left"> <div class="date small dimmed"></div> <div class="time"></div> <div class="timeWarning xxsmall"></div> <div class="holidays xxsmall dimmed"></div> <div class="calendar xxsmall"></div> <div class="mbta xxxsmall dimmed"></div> </div> <div class="top right"> <div class="windsun small dimmed"></div> <div class="temp"></div> <div class="tempfeelslike xxsmall"></div> <div class="spacer"></div> <div class="tempgraph"></div> <div class="weekgraph"></div> <div class="summary xxsmall2 dimmed"></div> <div class="weatheralerts xxsmall2 dimmed"></div> </div> <div class="lower-third center-hor"> <div class="compliment light"></div> <div class="weatherCompliment small light"></div> </div> <div class="bottom center-hor"> <div class="newsTitle xsmall xxdimmed"></div> <div class="news medium"></div> </div> <div class="farbottom center-hor"> <div class="newsDots xxxsmall"></div> </div> <div class="farbottom right"> <div class="lastupdated luWeather xxxsmall xxdimmed"></div> <div class="lastupdated luMBTA xxxsmall xxdimmed"></div> <div class="lastupdated luRSS xxxsmall xxdimmed"></div> <div class="lastupdated luHolidays xxxsmall xxdimmed"></div> </div> </div> <!-- Third Parties --> <script src="js/jquery.js"></script> <script src="js/ical_parser.js"></script> <script src="js/moment-with-locales.js"></script> <script src="js/config.js"></script> <script src="js/rrule.js"></script> <script src="js/d3.js"></script> <!-- Our Stuff --> <script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script> <script src="js/mm-weather.js?nocache=<?php echo md5(microtime()) ?>"></script> <script src="js/mm-mbta.js?nocache=<?php echo md5(microtime()) ?>"></script> <script src="js/mm-mta.js?nocache=<?php echo md5(microtime()) ?>"></script> </html> </body> -
Then yes, write the proper PHP code and stick it in
<?php ... ?>tags. -
@KirAsh4 awesome, I will give it a shot. I can’t thank you enough! Much appreciated!
-
@KirAsh4 Ah I wasn’t aware this was for MM2. Thought he was still using MM1. Didn’t know you could run PHP scripts on MM2.
-
@EoF, you can, as an external process, just like everything else. :)
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