Is this right for settings.php
# Sitewide configuration - Station location, identity and date/time info
############################################################################
$SITE['organ'] = 'World Multilingual Website with PHP & AJAX';
$SITE['copyr'] = '© ' . gmdate("Y",time()) . ',www.MorrinsvilleWeatherLive.co.nz';
$SITE['location'] = 'Waikato, New Zealand';
$SITE['email'] = 'mailto:morrinsvilleweatherlive@xtra.co.nz';
# Station location: latitude, longitude, cityname
$SITE['latitude'] = '-35.31153397'; //North=positive, South=negative decimal degrees
$SITE['longitude'] = '-175.39274323'; //East=positive, West=negative decimal degrees
$SITE['cityname'] = 'Morrinsville';
$SITE['tz'] = 'New-Zealand/Auckland'; //NOTE: this *MUST* be set correctly to
// translate UTC times to your LOCAL time for the displays.
//
http://us.php.net/manual/en/timezones.php has the list of timezone names
// pick the one that is closest to your location and put in $SITE['tz'] like:
// $SITE['tz'] = 'America/Los_Angeles'; // or
// $SITE['tz'] = 'Europe/Brussels';
// note: date format used for PHP parts only. Weather software dates are not processed
// except on the astronomy page
// $SITE['timeFormat'] = 'D, d-M-Y g:ia T'; // Day, 31-Mar-2006 6:35pm Tz (USA Style)
// $SITE['timeFormat'] = 'm/d/Y g:ia'; // USA format 03/31/2006 14:03
$SITE['timeFormat'] = 'd/m/Y H:i'; // Euro format 31/03/2006 14:03
// $SITE['timeFormat'] = 'Y-m-d H:i'; // ISO format 2006-03-31 14:03
// $SITE['timeOnlyFormat'] = 'g:ia'; // USA format h:mm[am|pm\
$SITE['timeOnlyFormat'] = 'H:i'; // Euro format hh:mm (hh=00..23);
$SITE['dateOnlyFormat'] = 'd/m/Y'; // for 31-Mar-2008 or 'j/n/Y' for Euro format
Cheers