Testtags not updating

My testtags.txt fie in wdisplay/webfiles is no longer updating. I have searched here and checked my settings in control panel and I can not find anything that appears to be wrong. I have it set in the custom webpage setup to convert txt to php. I have the web page setup check box ticked to create and upload txt as php. Any place else I may have not checked?
#29 is set to upload every 5 minutes tettags.txt to testtags.php as well. Do I possibly have it converting in to many settings? Either way when I view it locally with file manager it is NOT being updated, and the hours are all funky on my webpage.

Wess

The testtags.txt on your webserver has data, not tags, in it. If the testtags.txt on the PC also contains data then you will need to replace it with the original version that has tags.

Is there someplace I can download just the original txt file?

Sure, attached.


testtags.txt (47.2 KB)

Thanks, that took care of a lot of problems but I still can’t figure out why I have some wacky times displayed on a lot of the TIMES being displayed on the page, along with the “sun moon almanac page still thinking it is 2017. I guess I don’t know where they are getting those " 0505” times from from. I have checked my date and time settings in all of the settings I thought might matter…obviously I haven’t found the right one yet.
http://www.wessb.com/weather/index.php

Wess

Hi Wess,
The funky times on the astronomy page are due to the Settings.php line:

$SITE['timeOnlyFormat'] = 'h:mm'; 

‘h:mm’ means (for the PHP date() function)

h = 12-hour format of an hour with leading zeros 01 through 12
m = Numeric representation of a month, with leading zeros 01 through 12

What you likely want is

$SITE['timeOnlyFormat'] = 'g:ia'; 

which uses:

g = 12-hour format of an hour without leading zeros 1 through 12
i = Minutes with leading zeros 00 to 59
a = Lowercase Ante meridiem and Post meridiem am or pm

See: http://php.net/manual/en/function.date.php for details on what to use in a date/time format in PHP

As typical Ken, your advice fixed the problem. Thank you again.
Whatever the information on the lower half of the sun moon page references for a date still must think it is 2017. Only 1 entry " Perihel " says 2018, I’m not overly concerned with this but I was trying to correct as many things as I could.
Also on my status page it still shows " Weather-Display weather data " as NOT current.

Have a wonderful weekend.

The two panels at the bottom of the wxastronomy.php page are images produced by Weather-Display. You have to set WD to create and upload those images

See https://saratoga-weather.org/wxtemplates/setup-WD.php for details on what options to tick.

Thank You again. I wanted to reply so you would know I appreciate all of your help.