Re: [nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Néstor
I have decided to use javascript which uses the system date and that way I do not have to worry about it. var rightNow = new Date(); // create a new variable called .rightNow. document.writeln(rightNow.toLocaleString()); Néstor :-) On 3/12/07, Néstor <[EMAIL PROTECTED]> wrote: I am using p

RE: [nyphp-talk] Ajax World Expo Passes

2007-03-12 Thread Hans Zaunere
Well that went quick - all gone. H Hans Zaunere wrote on Monday, March 12, 2007 4:17 PM: > All, > > Mike from Adobe is kind enough to offer us three free full conference > passes to: > > http://www.ajaxworldexpo.com/ > > It's on a first come first serve basis so email me and I'll get you > co

[nyphp-talk] Ajax World Expo Passes

2007-03-12 Thread Hans Zaunere
All, Mike from Adobe is kind enough to offer us three free full conference passes to: http://www.ajaxworldexpo.com/ It's on a first come first serve basis so email me and I'll get you connected. --- Hans Zaunere / President / New York PHP www.nyphp.org / www.nyphp.com _

Re: [nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Néstor
I am using php 4.3.2 I had to do the following to have my date show up correct but I have to remember to change it bac on NOv 4th 2007 (yack!!!) // echo date("F j, Y, g:i a"); //this line does what the next 3 line of code do //except that the date is wron gb

Re: [nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Darian Anthony Patrick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Néstor, There is an ini setting for timezone. You may need to set that. See this thread: http://lists.nyphp.org/pipermail/talk/2007-February/021239.html Darian - -- Darian Anthony Patrick Principal, Application Development Criticode LLC (215) 240-

[nyphp-talk] FOSS Event in Technopark Trivandrum -- Suggest a Event Management System

2007-03-12 Thread Jiju Thomas Mathew
Hi all Introduction: It has been a long time since we were having the idea of organising a FOSS event in Trivandrum. Most of you would not need an introduction about what Technopark ( http://www.technopark.org) is. Any way the use or adoption of FOSS in the Technopark is not quite that deep, a

Re: [nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Néstor
Maybe, but how would that fix the date in my PHP applications? The cronjob is perl file and when I type the command the following command the output is correct: # zdump -v /etc/localtime | grep 2007 /etc/localtime Sun Mar 11 09:59:59 2007 UTC = Sun Mar 11 01:59:59 2007 PST isdst=0 gmtoff=-28800

Re: [nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Allen Shaw
Néstor wrote: I update my time on my RHEL 3and when I type 'date' on my systems it is correct, but I noticed that my cron jobs are running an hour late and my PHP applications that are using ... Any ideas how to fix this problem. Hi Nestor. I'm no expert, but does restarting crond help any?

[nyphp-talk] DST & cron jobs running an hour late

2007-03-12 Thread Néstor
I update my time on my RHEL 3and when I type 'date' on my systems it is correct, but I noticed that my cron jobs are running an hour late and my PHP applications that are using the date command are displaying the time without the change I did not think that we needed to do anyhting on PHP to deal