My currents conditions at the moment are Sunny, Windy but no icon is displayed.
Ok, your wind-rose icons are listed as
http://www.mangawhaiweather.co.nz/ajax-images/wr-SSW.jpg <<<-- Note the .JPG but once the ajax updates it is .PNG. This means you didn't change the config for wind-rose in ajax-dashboard.php
// optional settings for the Wind Rose graphic in ajaxwindiconwr as wrName . winddir . wrType
$wrName = 'wr-'; // first part of the graphic filename (followed by winddir to complete it)
$wrType = '.jpg'; // extension of the graphic filename <<<<--------------- This needs to end in .PNG for your site
// Webster Weather LIVE Mod Note:
// Set $wrHeight and $wrWidth to 74 for larger graphic, set to 25 for standard size graphics
$wrHeight = '74'; // windrose graphic height=
$wrWidth = '74'; // windrose graphic width=
$wrCalm = 'wr-calm.jpg'; // set to full name of graphic for calm display ('wr-calm.gif') <<<---This needs to end in .PNG for your site
$haveUV = true; // set to false if no UV sensor
$haveSolar = true; // set to false if no Solar sensor
$WXtags = 'testtags.php'; // source of our weather variables
$fcstorg = 'NWS'; // default forecast organization ('NWS','EC','WU','WXSIM')
$fcstscript = 'advforecast2.php'; // default forecast script
// NWS - 'advforecast2.php', EC - 'ec-forecast.php',
// WU - 'WU-forecast.php', WXSIM - 'plaintext-parser.php',
$UVscript = 'get-UV-forecast-inc.php'; // worldwide forecast script for UV Index
The current conditions icon seems to be working when I looked at it but it was only cloudy. If only a couple are not showing, be sure the correct images are uploaded to your site with the correct type. I see that wind.jpg is missing in that directory.
Also, you are a few revisions behind in code, there have been some changes that fix some of the other cosmetic issues on the script.
Scott