Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server Time 1 hour behind

Status
Not open for further replies.

OldWilly

Programmer
Mar 1, 2002
66
0
0
I suspected that our server didn't update the clock after the last time change. I logged on and found the time to be correct. Then I ran a .cfm displaying #Now()# and found IT to be behind 1 hour. Is there some setting in CF for this?
 
Check your jvm version. It sounds like CF is running atop an older version that may not contain the necessary dst updates.


Code:
<cfset prop = createObject("java", "java.lang.System").getProperties()>
<cfoutput>
java.runtime.version #prop["java.runtime.version"]#<br>
java.version #prop["java.version"]#<br>
</cfoutput>



----------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top