RE: [Reply To] Re: FW: local date time minus 17 hours

2005-12-11 Thread Bobby Hartsfield
Maybe this will help too. It just came in this morning. getNISTTime Created by: Ben Forta ([EMAIL PROTECTED]) CF Version: ColdFusion MX Obtains current time data from NIST Internet Time Service servers. http://www.cflib.org/udf.cfm?id=1377 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: local date time minus 17 hours

2005-12-11 Thread Matthew Walker
I have the same problem (hosting in the US) and I use Paul Hastings' -Original Message- From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Sunday, 11 December 2005 4:16 p.m. To: CF-Talk Subject: local date time minus 17 hours How do I get my local date and time when my ISP's local

RE: local date time minus 17 hours

2005-12-11 Thread Matthew Walker
Whoops! I have the same problem (hosting in the US) and I use Paul Hastings' timezone CFC (http://www.sustainablegis.com/projects/tz/testTZCFC.cfm) in application.cfc, then just refer to request.now instead of now() cfset request.now = application.environment.tz.castFromServer(now(),

Open source forum

2005-12-11 Thread Snake
One thing that has always been lacking for CF is a decent forums product, especially a free one. Even the commercial Fusetalk I personally think is pretty dire. Anyway I recently came across this one as the guy who wrote it is hosting with us, and he is soon planning to make open source, and I

Re: Open source forum

2005-12-11 Thread Sean Corfield
On 12/11/05, Snake [EMAIL PROTECTED] wrote: One thing that has always been lacking for CF is a decent forums product, especially a free one. Ray Camden's Galleon forums? -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying somebody, you're not really alive. --

RE: Open source forum

2005-12-11 Thread Bobby Hartsfield
From what I see of it, I'd go with Galleon. It's got all the functionality you need in a forum and then some. Mine (http://acoderslife.com/msgbrd) also has all the functionality but it's bloated with all the bells and whistles you find in phpbb (skins, frilly little icons, pms, groups, bbml,

RE: Open source forum

2005-12-11 Thread Snake
Take a look, I think you will see the difference. Ray's is TOO basic. -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: 11 December 2005 23:52 To: CF-Talk Subject: Re: Open source forum On 12/11/05, Snake [EMAIL PROTECTED] wrote: One thing that has always been

RE: Open source forum

2005-12-11 Thread Snake
Had a look on your site, but there doesn't appear to be anywhere to download it. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: 12 December 2005 00:01 To: CF-Talk Subject: RE: Open source forum From what I see of it, I'd go with Galleon. It's got all the

Re: Calendar Module

2005-12-11 Thread Larry Lyons
I am looking for some code that builds a small calendar display. A basic version that creats the calendar display that allows me to move from one month to another will do just fine. I would like to create a calendar display function that I can simply pass an array or list of dates and

Re: local date time minus 17 hours

2005-12-11 Thread Mike Kear
Thanks Matthew. I didnt know about that CFC. It does the same job I do, changing for daylight savings etc, only it does it automatically, and i think it's quite a bit more elegant than my way of doing it. I'm going to change over to using this cfc as I work on my sites. Cheers Mike Kear

Re: Open source forum

2005-12-11 Thread Raymond Camden
Galleon has quite a few features. It doesn't have smileys - but I think most folks can live with out it. ;) On 12/11/05, Snake [EMAIL PROTECTED] wrote: Take a look, I think you will see the difference. Ray's is TOO basic. --

Re: Open source forum

2005-12-11 Thread Raymond Camden
Sorry, hit submit too early. Can you tell me what features you use in other forums you think are missing in Galleon? I don't mean features missing in general - but features you actually use. On 12/11/05, Snake [EMAIL PROTECTED] wrote: Take a look, I think you will see the difference. Ray's is

RE: Open source forum

2005-12-11 Thread Bobby Hartsfield
There is nowhere to download it yet, sorry. [quote] plus I'm too busy or lazy too finish it... take your pick :)[/quote] I was just pointing out the difference between Ray's which is all of the basics plus a little flare... compared to a ton of bloated flare (like mine). Of course I like

RE: Open source forum

2005-12-11 Thread Rick Faircloth
What's the URL for Galleon, Ray? Rick -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Sunday, December 11, 2005 9:31 PM To: CF-Talk Subject: Re: Open source forum Sorry, hit submit too early. Can you tell me what features you use in other forums you

Re: Open source forum

2005-12-11 Thread Raymond Camden
ray.camdenfamily.com/projects/galleon On 12/11/05, Rick Faircloth [EMAIL PROTECTED] wrote: What's the URL for Galleon, Ray? Rick -Ray ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: Open source forum

2005-12-11 Thread Rick Faircloth
Thanks, Ray...looks good to me... Rick -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Sunday, December 11, 2005 9:45 PM To: CF-Talk Subject: Re: Open source forum ray.camdenfamily.com/projects/galleon On 12/11/05, Rick Faircloth [EMAIL PROTECTED]

How to determine the name of a file upload

2005-12-11 Thread Burns, John D
I'm trying to build a sort of upload status display for large file uploads. I've seen some before and I know the subject has bounced around the list some in the past, however, I'm having trouble figuring out the name of the temp file that's being uploaded. I'm on CFMX 6.1 and the file name

Re: How to determine the name of a file upload

2005-12-11 Thread John Wilker
You need to know before upload? cffile provides the info in the file scope. file.ServerDirectory, file.ServerFile, etc.. On 12/11/05, Burns, John D [EMAIL PROTECTED] wrote: I'm trying to build a sort of upload status display for large file uploads. I've seen some before and I know the

Re: Web Analytics

2005-12-11 Thread Dan O'Keefe
Did this product become Google Analytics? Dan On 2/14/05, Eric Creese [EMAIL PROTECTED] wrote: Statistex -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 8:17 AM To: CF-Talk Subject: RE: Web Analytics WebLog Expert isn't too bad.

Re: Web Analytics

2005-12-11 Thread Howard Fore
Prior to its acquisiton Google Analytics was known as Urchin. On 12/11/05, Dan O'Keefe [EMAIL PROTECTED] wrote: Did this product become Google Analytics? Dan -- Howard Fore, [EMAIL PROTECTED] ~| Logware (www.logware.us):

Re: How to determine the name of a file upload

2005-12-11 Thread James Holmes
But it doesn't provide the temp file name and it does all of this after the upload anyway. On 12/12/05, John Wilker [EMAIL PROTECTED] wrote: You need to know before upload? cffile provides the info in the file scope. file.ServerDirectory, file.ServerFile, etc.. -- CFAJAX docs and other

Re: Web Analytics

2005-12-11 Thread Kay Smoljak
On 12/12/05, Howard Fore [EMAIL PROTECTED] wrote: Prior to its acquisiton Google Analytics was known as Urchin. It is still possible to purchase Urchin standalone to run on your own server (and do proper log file analysis) from Google, and it's a kick-arse product - but I don't know for how