A post about today’s solar eclipse got me wondering why I didn’t get that info on my wxastronomy.php page, so I looked at the code. And then the penny dropped: Ken’s notes say that as distributed it is expected that the template files are located in the root directory, so you may be required to make additional undocumented changes if you install in a subdirectory - as I did.
So, lines 278-83 need to specify the path to WD’s moondetail1.gif and moondetail2.gif. In my case they are in the root:
<?php if(file_exists("../moondetail1.gif")) { ?>
<img src="../moondetail1.gif" alt="Moon Details from Weather-Display" style="border: white 1px solid" /><br/><br/>
<?php }
if(file_exists("../moondetail2.gif")) { ?>
<img src="../moondetail2.gif" alt="Additional Moon facts from Weather-Display" style="border: white 1px solid"/>
<?php } ?>
I wonder how many others I have yet to find