Cannot find server. Some things you may want to check is in the source code see if it displays the server time in the javascript on this line in place of the part in red:
Code:
var servertimestring=(servermode=="server-php")? '<? print date("F d, Y H:i:s", time())?>' : (servermode=="server-ssi")? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>'
If it doesn't, you could try doing this for the part in red to see if that fixes it.
Code:
<?php print date("F d, Y H:i:s", time());?>
Hope this helps
Bookmarks