FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » FUDforum Installation Issues » "Current time:" incorrect i dont know what to do!
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
"Current time:" incorrect i dont know what to do! [message #1272] Tue, 02 April 2002 06:55 Go to next message
[Ch0De]MIDIMan is currently offline  [Ch0De]MIDIMan   United States
Messages: 1
Registered: April 2002
Location: At MY server... lol
Karma: 0
Junior Member
I tried some stuff after doing a search on the forums and it didnt help

i am in eastern standard time (NJ)

and it its 2:05AM now it says "7:07:14 AMe"

what gives? i set it to eastern time/new york

in admin setup
and for my user

my system clock is correct...

http://midiman.cjb.net/forums/

somone please help i am completely lost

other than that its the damn coolest thing i have on my site! LOL
Re: "Current time:" incorrect i dont know what to do! [message #1279 is a reply to message #1272] Tue, 02 April 2002 17:56 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
This is a bug in FUDforum, which affects windows installations. I am currently looking for a solution to this problem.

FUDforum Core Developer
icon10.gif  Re: "Current time:" incorrect i dont know what to do! [message #1281 is a reply to message #1272] Tue, 02 April 2002 21:35 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
The reason, why your timezone is AMe, is because your system's timezone is AMe.

You can verify this fact by using a simple php script:


<?php
echo "TimeZone: ".date("T")."<br>\n";
echo "RFC Date: ".date("r")."<br>\n";
?>


FUDforum Core Developer
Re: "Current time:" incorrect i dont know what to do! [message #8450 is a reply to message #1281] Wed, 29 January 2003 16:19 Go to previous messageGo to next message
rnichols is currently offline  rnichols   United States
Messages: 1
Registered: January 2003
Karma: 0
Junior Member
I am having the same problem as this user. I ran your suggested php script and got the following results:

TimeZone: Eastern Standard Time
RFC Date: Wed, 29 Jan 2003 11:20:47 -0500


Yet the forum time and the bottom of each screen reads as follows:

Current Time: Wed Jan 16:21:10 Ame 2003

Also does not display the day of the month.

I am on a Windows 2000 server. The user and server time zone are set to United States New York Eastern.

What am I doing wrong?

Thanks for your help.
Re: "Current time:" incorrect i dont know what to do! [message #8451 is a reply to message #8450] Wed, 29 January 2003 16:29 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Win32 does not support timezone changing as well as Unix. To avoid this problem set the forum's timezone to the blank option and do the same for your personal forum profile.

FUDforum Core Developer
Re: "Current time:" incorrect i dont know what to do! [message #8495 is a reply to message #8451] Thu, 30 January 2003 22:42 Go to previous messageGo to next message
edav91 is currently offline  edav91   France
Messages: 8
Registered: January 2003
Karma: 0
Junior Member
Hi,

Putting the timezone to blank doesn't solve the problem for France where we've got a one-hour delay between summer and winter time. Right now, my forum displayed time (vendredi 31 janvier 2003 - 00:32) is one hour ahead the french official time (23:32). Here, it's displayed 'jeu jan 30 23:32:41 CET 2003'

Thx.
Re: "Current time:" incorrect i dont know what to do! [message #8496 is a reply to message #8495] Fri, 31 January 2003 03:18 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Maybe you have a DST (Daylight Savings Time) issue on the server?

FUDforum Core Developer
Re: "Current time:" incorrect i dont know what to do! [message #8502 is a reply to message #8496] Sat, 01 February 2003 13:26 Go to previous messageGo to next message
edav91 is currently offline  edav91   France
Messages: 8
Registered: January 2003
Karma: 0
Junior Member
Right.

Your time script gives on my ISP server:

TimeZone: CET
RFC Date: Sat, 1 Feb 2003 15:25:27 +0100

which is 1 hour late than the DST.

Thx.
icon5.gif  Re: "Current time:" incorrect i dont know what to do! [message #35534 is a reply to message #1272] Fri, 19 January 2007 21:12 Go to previous messageGo to next message
WyleySam is currently offline  WyleySam   United States
Messages: 2
Registered: January 2007
Location: Chicago, IL
Karma: 0
Junior Member
Hope someone is still monitoring this message. Has anyone found a solution???

My WinXP/Apache2054/PHP444/MySQL Server the date & time info is:

Friday 19th of January 2007 08:50:51 PM
TimeZone: Ame
RFC Date: Fri, 19 Jan 2007 20:50:51 +0000


I am located in Chicago, IL USA and it's CST not Ame. How do I fix this???

Re: "Current time:" incorrect i dont know what to do! [message #35538 is a reply to message #35534] Fri, 19 January 2007 23:36 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
What is your forum's timezone set to?

FUDforum Core Developer
Re: "Current time:" incorrect i dont know what to do! [message #35542 is a reply to message #35538] Sat, 20 January 2007 02:27 Go to previous messageGo to next message
WyleySam is currently offline  WyleySam   United States
Messages: 2
Registered: January 2007
Location: Chicago, IL
Karma: 0
Junior Member
It's not a forum. It's the localhost server itself. The output of this php code:
<?php
echo date('l dS \of F Y h:i:s A');
echo '<br>';
echo "TimeZone: ".date("T")."<br>\n";
echo "RFC Date: ".date("r")."<br>\n";
?>

at 3:50 CST was:
Friday 19th of January 2007 08:50:51 PM
TimeZone: Ame
RFC Date: Fri, 19 Jan 2007 20:50:51 +0000
Re: "Current time:" incorrect i dont know what to do! [message #35552 is a reply to message #35542] Sun, 21 January 2007 19:39 Go to previous message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
You need to export TZ env variable and set its value to the desired TimeZone.

FUDforum Core Developer
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Error on step 5
Next Topic: Installation CGI Error
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Jun 18 00:08:53 GMT 2024

Total time taken to generate the page: 0.02445 seconds