You neglected to say where your website is, but I assume this is it? http://www.alysonwonderland.org
If so, in your cutting-and-pasting, some Javascript in index.html.tmpl got left out. Your <head> section looks like this: <head profile="http://www.w3.org/2005/10/profile"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Western Fayette County, in central Texas, about five miles due south of Smithville. Current Weather Conditions</title> <link rel="stylesheet" type="text/css" href="weewx.css"/> <link rel="icon" type="image/png" href="favicon.ico" /> </head> when it should look like this: <head profile="http://www.w3.org/2005/10/profile"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Western Fayette County, in central Texas, about five miles due south of Smithville. Current Weather Conditions</title> <link rel="stylesheet" type="text/css" href="weewx.css"/> <link rel="icon" type="image/png" href="favicon.ico" /> <script type="text/javascript"> function openURL(urlname) { window.location=urlname; } function openNoaaFile(date) { var url = "NOAA/NOAA-"; url = url + date; url = url + ".txt"; window.location=url; } </script> </head> -tk On Tue, Sep 11, 2018 at 1:53 AM samantha duck <[email protected]> wrote: > weewx running under Debian Jessie on i386. ftp to hosting service ( > hostgator.com). Davis Vantage Pro2 wireless with data logger module in > console. > > Modified the wording of the following paragraph and added a link to a > technical details file (technical.html): > > This station employs the Davis Vantage Pro2. > The station is automated by a software system called weewx > ("wee" meaning tiny, "wx" meaning weather station), which is written in > Python. > Click this link to see technical details of the station and its automated > operation. > > Previously running weewx 3.7 python installation (not .deb package). > Installed weewx 3.8.2 (did not follow upgrade procedure). With weewx > 3.8.2 [week] [year] [month] buttons are unresponsive. > > Restart log is attached (weewx-log). > > Direct contact [rlharris at cvctx dot com] > > -- > You received this message because you are subscribed to the Google Groups > "weewx-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
