Author Topic: Alternative-Dashboard Version 6.21  (Read 151112 times)

0 Members and 1 Guest are viewing this topic.

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #425 on: May 31, 2011, 01:44:40 PM »
It may be a php version thing as you can see from the image attached, it does not round bad on my version, it was at 8.2 UV and the image says 8

Scott


I finally went to school on php's round() function and I think it's broken, at least on GoDaddy.  It is supposed to default to a whole number rounding up or down at .5, but apparently it doesn't.  When I entered 0 as the rounding precision the correct icons display in the dashboard.  In order to get the icons to match the forecast numbers in 'wxuvforecast.php' I had to enter an offset of -1 for the day, and comment out the last two UVptr++'s in the routine.  I also qualified the icon directory with a leading slash and used all lower case.  This code works tonight for me:
Code: [Select]

$UVptr = 0;  // index for which day to use
?>
        <tr>
          <td class="datahead" style="text-align:center"><?php echo $leftHead?></td>
          <td class="datahead" style="text-align:center"><?php echo $rightHead?></td>
        </tr>
        <tr>
          <td align="center">
   <table width="180" border="0" cellpadding="2" cellspacing="0">
<?php
  
if (($haveUV) && ($dayornight == 'Day')) {  //  Have a UV sensor .. show realtime data & not night
?>

            <tr>
               <td align="center" width="35%" nowrap="nowrap" class="data2" style="text-align: center; font-size: 9px;">
                  <span class="ajax" id="ajaxuv" style="font-size: 14px;"><?php echo $VPuv?></span>
                  <div style="padding-top: 3px;"><?php langtrans('Sunburn in'); ?></div>
                  <span class="ajax" id="ajaxuvburnrate"><?php echo $burntime?></span> <?php langtrans('Minutes'); ?>
               </td>
               <td width="30%" align="center">
                  <span class="ajax" id="ajaxuvimg">
                     <img src="/ajax-images/uv<?php echo round($VPuv,0); ?>.gif" height="65" width="34" alt="" title="Current UV rate" />
                  </span>
               </td>
               <td width="35%" class="data2" style="text-align:center; font-size: 9px;">
                  <?php langtrans('Highest'); ?>:<br />
                  <?php echo $highuvtime?><br />
                  <span style="font-size: 14px;"><?php echo $highuv?></span>
               </td>
            </tr>
<?php } else {  //  don't have UV sensor .. show UV forecast instead ?>
                 <?php
                   
if ($haveUV) { // Show todays high if evening or yesterdays if morning
                 
?>

            <tr>
            <td align="center" colspan="3" nowrap="nowrap" class="data2" style="text-align: center; font-size: 10px;">

                  <?php if ($time_hour 12) { // Display Summary if in the evening ?>
                  <?php langtrans('High Today'); ?>:&nbsp;&nbsp;<span style="font-size: 9px;">
                  <?php echo $highuv?>&nbsp;@&nbsp;<?php echo $highuvtime?></span>
                  <?php $UVptr++; // increment counter ?>
                  <?php } else { ?>
                  <?php langtrans('High Yest'); ?>:&nbsp;&nbsp;<span style="font-size: 9px;">
                  <?php echo $highuvyest?>&nbsp;@&nbsp;<?php echo $highuvyesttime?></span>
                  <?php ?>
               </td>
            </tr>
 <?php ?>
            <tr>
               <td align="center" width="35%" nowrap="nowrap" class="data2" style="text-align: center; font-size: 9px;">

     <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                                    <?php echo date("M-d",$UVshortdate?><br/>
   <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-1],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
   <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr-1]; ?></a></b>
                                    <?php $UVptr++; // increment counter ?>
</td>
                <td align="center" width="30%" class="data2" nowrap="nowrap" style="text-align: center; font-size: 9px;">
     <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                                    <?php echo date("M-d",$UVshortdate?><br/>
   <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-1],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
   <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr-1]; ?></a></b>
                                    <?php $UVptr++; // increment counter ?>
                </td>
                <td align="center" width="35%" class="data2" nowrap="nowrap" style="text-align: center; font-size: 9px;">
     <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                                    <?php echo date("M-d",$UVshortdate?><br/>
   <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-1],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
   <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr-1]; ?></a></b>
                                    <?php //$UVptr++; // increment counter ?>
</td>
              </tr>
 <?php //$UVptr++; // increment counter ?>
<?php // end $haveUV  ---------------------------------------- ?>

Who knows what will happen tomorrow with this UV display.
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #426 on: May 31, 2011, 06:51:47 PM »
It may be a php version thing as you can see from the image attached, it does not round bad on my version, it was at 8.2 UV and the image says 8

Scott
That was my suspicion when I saw that the existing code worked flawlessly on your website.  There are a few others with this issue as well, I think:
http://cvweather.org/index.php is an example site that displays placeholders when viewed after dark (at least it was night before last.)  As you can see from my posts I was slogging up a steep learning curve while trying to sort this out.

Thanks for all of your hard work and help!
« Last Edit: May 31, 2011, 06:54:33 PM by gwwilk »
Regards, Jerry Wilkins
gwwilk@gmail.com

Offline ed2kayak

  • Ed
  • Forecaster
  • *****
  • Posts: 613
  • Davis Vantage Pro2 w/12 hr FARS, solar/uv
    • Cumberland Valley Weather
Re: Alternative-Dashboard Version 6.10
« Reply #427 on: May 31, 2011, 09:28:33 PM »
Hi Jerry.
No uv image after dark. I see what you mean. Scott has uv 0 icon.

Ed
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #428 on: May 31, 2011, 10:38:20 PM »
Ed,

The script is looking for:

Code: [Select]
http://cvweather.org/ajax-images/UV8.gif
Do you have that file in the specified directory?  Caps do make a difference!!!

Scott

Hi Jerry.
No uv image after dark. I see what you mean. Scott has uv 0 icon.

Ed
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline ed2kayak

  • Ed
  • Forecaster
  • *****
  • Posts: 613
  • Davis Vantage Pro2 w/12 hr FARS, solar/uv
    • Cumberland Valley Weather
Re: Alternative-Dashboard Version 6.10
« Reply #429 on: June 01, 2011, 07:10:41 AM »
Scott,
I'll check tonight. Also my earlier post addresses the capitalization.

Scott, (or others)

Also I had to rename the UV icons to lower case to get it to display. (eg UV01.gif to uv01.gif)

Ed


Thx
Ed
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425

Offline ed2kayak

  • Ed
  • Forecaster
  • *****
  • Posts: 613
  • Davis Vantage Pro2 w/12 hr FARS, solar/uv
    • Cumberland Valley Weather
Re: Alternative-Dashboard Version 6.10
« Reply #430 on: June 01, 2011, 11:10:00 PM »
Ok tonight's reports, for UV forecast.

FF browser don't show up for me
Chrome- yes they show up
IE, show as broken images.
Rest time for me, work in am.
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #431 on: June 01, 2011, 11:28:09 PM »
As of 10PM the dates, forecasts, and forecast icons aren't matching up between the get-UV-forecast-inc.php's results, attached as UVForecast.png,
 and the Ajax-Dashboard6.php's results, attached as DashboardUVForecast.png in the waning hours of the day.  As you can see,  DashboardUVForecast has forecasts and icons for the next 3 days, Thursday, Friday, and Saturday, while UVForecast.png has the forecasthas these forecasts and icons shown for Friday, Saturday, and Sunday.  Is this a time zone issue?  If I recall night before last things straightened out after midnight.  If I awaken before dawn I'll check on it then.  ](*,)

Regards, Jerry Wilkins
gwwilk@gmail.com

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #432 on: June 02, 2011, 09:45:02 PM »
I'm confused as to why you would need to rename the graphics to lower case UV.  I just walked back through the code and in both the java and the main code, it specifically calls for an upper case UV in the graphic name.  I'm confused now!   ](*,)

Scott


Scott,
I'll check tonight. Also my earlier post addresses the capitalization.

Scott, (or others)

Also I had to rename the UV icons to lower case to get it to display. (eg UV01.gif to uv01.gif)

Ed


Thx
Ed
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #433 on: June 02, 2011, 09:52:25 PM »
Ed

In both cases below with the broken images it's looking for a CAPITAL UV8.gif in the ajax-images directory.  Do you have a file like that or is it a lower case version?

Scott


Ok tonight's reports, for UV forecast.

FF browser don't show up for me
Chrome- yes they show up
IE, show as broken images.
Rest time for me, work in am.
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline ed2kayak

  • Ed
  • Forecaster
  • *****
  • Posts: 613
  • Davis Vantage Pro2 w/12 hr FARS, solar/uv
    • Cumberland Valley Weather
Re: Alternative-Dashboard Version 6.10
« Reply #434 on: June 02, 2011, 10:02:58 PM »
Scott,
Reloaded all CAPITAL UV icons. Yes that works. Its dark here now. I could have sworn, I changed to lower case so they would display during the day. :?: I did see the script called for caps.
I'll check tomorrow during the day.
Thanks

Ed
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #435 on: June 03, 2011, 12:37:43 AM »
I hope I have sorted out the skewed UV dates and values displayed in the evening after dark.  These code additions are working right now, and I'm waiting to see what will happen after midnight.  I added an $evening variable which is subtracted from the $UVptr that indexes the day during the UV prediction data access.  This prevents the skew that $UVptr++ produces before midnight after dark.
Code: [Select]
<?php } else {  //  don't have UV sensor or it's dark .. show UV forecast instead ?>
                 <?php
                   
if ($haveUV) { // Show todays high if evening or yesterdays high if morning
$evening=0// Need to adjust forecasts if it's before Midnight after dark
if ($time_hour>12) {  // because the forecasts points at wrong day otherwise
$evening=1// and forecast isn't for 'tomorrow'.
    }
                 
?>

            <tr>
            <td align="center" colspan="3" nowrap="nowrap" class="data2" style="text-align: center; font-size: 10px;">

                  <?php if ($time_hour 12) { // Display Summary if in the evening ?>
                  <?php langtrans('High Today'); ?>:&nbsp;&nbsp;<span style="font-size: 9px;">
                  <?php echo $highuv?>&nbsp;@&nbsp;<?php echo $highuvtime?></span>
                  <?php $UVptr++; // increment counter if it's evening ?>
                  <?php } else { ?>
                  <?php langtrans('High Yest'); ?>:&nbsp;&nbsp;<span style="font-size: 9px;">
                  <?php echo $highuvyest?>&nbsp;@&nbsp;<?php echo $highuvyesttime?></span>
                  <?php  ?>
               </td>
            </tr>
 <?php ?>
            <tr>
               <td align="center" width="35%" nowrap="nowrap" class="data2" style="text-align: center; font-size: 9px;">

   <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                  <?php echo date("M-d",$UVshortdate?><br/>
         <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-$evening],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
 <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr]; ?></a></b>
                  <?php $UVptr++; // increment counter ?>
</td>
                <td align="center" width="30%" class="data2" nowrap="nowrap" style="text-align: center; font-size: 9px;">
    <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                    <?php echo date("M-d",$UVshortdate?><br/>
           <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-$evening],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
   <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr]; ?></a></b>
                    <?php $UVptr++; // increment counter ?>
                </td>
                <td align="center" width="35%" class="data2" nowrap="nowrap" style="text-align: center; font-size: 9px;">
    <?php $UVshortdate mktime(0,0,0,date("m"), date(d)+$UVptrdate("y")); ?>
                   <?php echo date("M-d",$UVshortdate?><br/>
  <img src="/ajax-images/uv<?php echo round($UVfcstUVI[$UVptr-$evening],0); ?>.gif" height="45" width="34" alt="" title="Predicted UV rate" /><br/>
  <b><a href="<?php echo htmlspecialchars($UV_URL); ?>" title="<?php echo strip_tags($requiredNote); ?>"><?php echo $UVfcstUVI[$UVptr]; ?></a></b>
                   <?php $UVptr++; // increment counter ?>
</td>
              </tr>
<?php //$UVptr++; // increment counter ?>
<?php // end $haveUV  ---------------------------------------- ?>

I'm waiting to see what happens after midnight.

I also just checked my ajax-images directory and I see that my single integer uppercase UV images don't have leading zeros whereas my lowercase images do.  Does the script look for leading zeros, Scott?

The mods have passed the midnight test.  Today's (June 3rd) UV forecast is still correctly listed as the first one displayed, and it's value/icon is correct.
« Last Edit: June 03, 2011, 01:02:59 AM by gwwilk »
Regards, Jerry Wilkins
gwwilk@gmail.com

Offline staccermaccer

  • Senior Member
  • **
  • Posts: 72
    • Weather in Ekeren and Port of Antwerp
Re: Alternative-Dashboard Version 6.10
« Reply #436 on: June 03, 2011, 05:12:22 PM »
Hello,

Hope somebody an help me, i tweaked the ajax-dashboard a bit, everything is working fine but i am getting two errors: first one is in the current condition section, no matter what i do i keeps saying before the condition "it is" although with ajax off it works like it should work. Second glitch is my snow section, this should be changing but it doesn't? Help is greatly appreciated!

www.akker.be

Marc

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #437 on: June 03, 2011, 10:08:09 PM »
I also just checked my ajax-images directory and I see that my single integer uppercase UV images don't have leading zeros whereas my lowercase images do.  Does the script look for leading zeros, Scott?

It should be looking for only the number, the value is rounded and 8 should be 8 not 08. 

Scott
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #438 on: June 03, 2011, 10:09:20 PM »
Hope somebody an help me, i tweaked the ajax-dashboard a bit, everything is working fine but i am getting two errors: first one is in the current condition section, no matter what i do i keeps saying before the condition "it is" although with ajax off it works like it should work. Second glitch is my snow section, this should be changing but it doesn't? Help is greatly appreciated!

Marc,

The "It is" is coming from the file ajaxWDwx.js.  Search for it in the script and just delete it.  The snow section in version 6.xx is not controlled by the months or temp, it is either on or lightning.  I don't know what else to show there if there is not one of those two.

Scott
« Last Edit: June 03, 2011, 10:16:39 PM by WebsterWeather »
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #439 on: June 03, 2011, 11:10:34 PM »
I also just checked my ajax-images directory and I see that my single integer uppercase UV images don't have leading zeros whereas my lowercase images do.  Does the script look for leading zeros, Scott?

It should be looking for only the number, the value is rounded and 8 should be 8 not 08. 

Scott

Thanks, Scott.  I understand, and that's what I thought.  The insanity continues because this evening my modified ajax-dashboard6.php was giving skewed UV data, and eliminating my changes corrected it.  Today is the 3rd, yesterday was the 2nd, and tomorrow is the 4th, right?

I just now discovered that the data shown by get-UV-forecast.php changed when I reloaded it, and now it's skewed again in my dashboard!  I needed to reestablish my mods, and I'll also leave the lower case modification in place as well because when I used uppercase just now I again got placeholders.  The craziness involves data given by get-UV-forecast.php which is wrong in the earliest hours after dark, I guess, although we're dealing with some pretty nebulous forecast data to begin with.  I'm not sure how it's derived.  The data produced by get-UV-forecast.php is currently stable.
Regards, Jerry Wilkins
gwwilk@gmail.com

Offline staccermaccer

  • Senior Member
  • **
  • Posts: 72
    • Weather in Ekeren and Port of Antwerp
Re: Alternative-Dashboard Version 6.10
« Reply #440 on: June 04, 2011, 03:25:24 AM »
Hello,

Alright, sorry for the stupid question then  :oops:

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #441 on: June 04, 2011, 09:46:57 AM »
Hello,

Alright, sorry for the stupid question then  :oops:

Not a stupid question at all, it just works a bit different then the other versions.  I probably should have put something about it in the instructions

Scott
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #442 on: June 04, 2011, 04:51:16 PM »
The "It is" is coming from the file ajaxWDwx.js.  Search for it in the script and just delete it.  The snow section in version 6.xx is not controlled by the months or temp, it is either on or lightning.  I don't know what else to show there if there is not one of those two.
Scott

I stuck thumbnails of my webcams in there with links to the webcam pages.  Better than 'Coming Soon', maybe.
Regards, Jerry Wilkins
gwwilk@gmail.com

Offline staccermaccer

  • Senior Member
  • **
  • Posts: 72
    • Weather in Ekeren and Port of Antwerp
Re: Alternative-Dashboard Version 6.10
« Reply #443 on: June 05, 2011, 02:25:36 AM »
Hello, all

The more i try to fix it the worse it gets! I dont know anymore if it is a fault in my ajax-dashboard or in something else! My current icon is not correct anymore, without java it's correct but when i activate the java-updates(easy in FF) it messes up the current condition icon and goes into a random icon. I've tried all versions of ajaxWDwx.js and i think it has something to do with a path but i am really lost now! Is there someone out there who can help me, it is going to be difficult because my main website is in a subfolder....

Greetings from Marc (in desperate need  ](*,))

Offline gwwilk

  • Southeast Lincoln Weather
  • Forecaster
  • *****
  • Posts: 2578
    • SouthEast Lincoln, NE Weather
Re: Alternative-Dashboard Version 6.10
« Reply #444 on: June 05, 2011, 07:32:41 AM »
Hello, all

The more i try to fix it the worse it gets! I dont know anymore if it is a fault in my ajax-dashboard or in something else! My current icon is not correct anymore, without java it's correct but when i activate the java-updates(easy in FF) it messes up the current condition icon and goes into a random icon. I've tried all versions of ajaxWDwx.js and i think it has something to do with a path but i am really lost now! Is there someone out there who can help me, it is going to be difficult because my main website is in a subfolder....

Greetings from Marc (in desperate need  ](*,))

Check the GIF's in your ajax-images directory.  There is currently nothing available under 'current conditions' at http://www.akker.be/car/ajax-images/few.gif  Be sure all of your paths are correct.  If the image is there, delete the full qualification portion of the path in settings, i.e. './car/ajax-images/few.gif' rather than 'http://www.akker.be/car/ajax-images/few.gif' and it might display.  I have found that my webhost, GoDaddy, dislikes fully qualified paths.
Regards, Jerry Wilkins
gwwilk@gmail.com

Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #445 on: June 05, 2011, 09:08:10 AM »
Hello, all

The more i try to fix it the worse it gets! I dont know anymore if it is a fault in my ajax-dashboard or in something else! My current icon is not correct anymore, without java it's correct but when i activate the java-updates(easy in FF) it messes up the current condition icon and goes into a random icon. I've tried all versions of ajaxWDwx.js and i think it has something to do with a path but i am really lost now! Is there someone out there who can help me, it is going to be difficult because my main website is in a subfolder....

Greetings from Marc (in desperate need  ](*,))

You also MUST be using ajaxWDwx.js version 3.04 if you are using the alternative dashboard version 6.xx, it simply will not work right without it as I made several modifications to it for the dashboard.  The java script is included in the archive.

Scott
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline Chris_K

  • Contributor
  • ***
  • Posts: 115
    • Bucks County Weather
Re: Alternative-Dashboard Version 6.10
« Reply #446 on: June 05, 2011, 10:15:26 AM »
Is there a link to Bashewa's 9.11?? I was on his site and couldn't find it.
Thanks,

Chris


Offline CNYWeather

  • Forecaster
  • *****
  • Posts: 2297
    • CNYWeather
Re: Alternative-Dashboard Version 6.10
« Reply #447 on: June 05, 2011, 08:23:05 PM »
Here's version 9.13 on from Meerkat (Ranier)

http://www.bashewa.com/downloads/bws-script-ajaxWDwx.zip?v9.13
Tony




Offline BurnsvilleWeather

  • Burnsville, MN USA
  • Forecaster
  • *****
  • Posts: 863
  • Retired from Weather!
Re: Alternative-Dashboard Version 6.10
« Reply #448 on: June 05, 2011, 10:32:49 PM »
Just so everyone is clear... (since this is an alternative dashboard thread), Meerkat's (Ranier) version is NOT compatable with the alternative dashboard version 6.xx.  I'm just saying!

Scott
www.BurnsvilleWeatherLIVE.com (Formally Webster Weather LIVE)
Home of the Alternative Dashboard and Mobile Dashboard Scripts. Weather Display Scripts and Graphics


Davis VP2 with, UV, Solar, Leaf, Web Cam.

Offline ed2kayak

  • Ed
  • Forecaster
  • *****
  • Posts: 613
  • Davis Vantage Pro2 w/12 hr FARS, solar/uv
    • Cumberland Valley Weather
Re: Alternative-Dashboard Version 6.10
« Reply #449 on: June 07, 2011, 02:17:36 PM »
Scott,
What generates the current conditions icon on alt-dash originate. Just got solar/vu sensors for my Davis. Trying to figure out WD solar noon, hours of sunglight, etc.
Thanks
Ed
Ed
CoCoRaHS PA-CD-6,  Weather Underground KPAMECHA7, CWOP DW5425