RE: HTML In Application.cfm

2006-01-02 Thread Snake
Lol, yea she gave up on that site, I was trying to teach her some basic web design, but she lost interest. Every rose was always my song :-) -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 02 January 2006 02:38 To: CF-Talk Subject: RE: HTML In Application.cfm was looking

Testing New Mail Server...Just Ignore

2006-01-02 Thread Rick Faircloth
Just running a test to see if my mail server is indeed serving mail! Rick ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a

RE: CFSCRIPT Question

2006-01-02 Thread Andy McShane
I was under the impression that there was a performance gain with cfscript, is that not the case? Is there no benefit to using cfscript? -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: 30 December 2005 19:03 To: CF-Talk Subject: Re: CFSCRIPT Question Probably not,

Tracking downloads of mp3 files

2006-01-02 Thread Mike Kear
I have a site where I have a series of mp3 files for radio hosts to download, for their radio shows. I want to track who's downloading what. I have a simple stats app that keeps track of who goes where, based on teh cgi info and their login information, but it doesnt record the links they click

Re: CFSCRIPT Question

2006-01-02 Thread Charlie Griefer
pre-MX6.1 there was a performance gain. Now, if I understand correctly, it all compiles down to the same java bytecode, so there's no performance gain to speak of. As far as there still being a 'benefit' to using it...I guess that's subjective. Some people like the script syntax better than

RE: Tracking downloads of mp3 files

2006-01-02 Thread Adrian Lynch
You could also look at the server logs if you don't mind a delay in the reporting. Ade -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 02 January 2006 13:22 To: CF-Talk Subject: Tracking downloads of mp3 files I have a site where I have a series of mp3 files for

Re: Tracking downloads of mp3 files

2006-01-02 Thread Matt Robertson
Use cfcontent to push the files to them. Then you can work whatever tracking code you want into the picture. http://mysecretbase.com/How_To_Display_Protected_Files.cfm -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Jennifer Gavin-Wear
Don't forget your spf and reverse dns ... :-) Jenny -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 01 January 2006 17:56 To: CF-Talk Subject: RE: Using CF with ArgoSoft Email Server Plus Well...you know, Dave...seems to have turned out that SmarterMail (Free

RE: Tracking downloads of mp3 files

2006-01-02 Thread Jennifer Gavin-Wear
instead of a direct link to the file ... eg. http://www.mysite.com/music.mp3 add a url variable to a link to a download processing template. .. eg... http://www.mysite.com/download.cfm?mp3ID=#filename or some identifier# then you can use the url value to record the download in your database

RE: Currency formatting

2006-01-02 Thread Jennifer Gavin-Wear
Thanks Paul, You say by jvm version, and I take this to mean jvm that comes with the Mx 6.1 install? Jenny -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 01 January 2006 12:19 To: CF-Talk Subject: Re: Currency formatting Jennifer Gavin-Wear wrote: looks like

RE: Best Approach for Survey Question

2006-01-02 Thread Dave Francis
ALWAYS use separate columns. I've been bit in the a$$ just about every time I tried the comma-delim list approach. Another plus is it's really easy to return an Excel file directly to those doing the tabulating - which they seem to like - without bugging me for the latest

OT: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Rick Faircloth
Hi, Jenny... I've actually gone back to SmarterMail (Free Version) and CF. I figured out that the free version of SmarterMail can relay, too. I just needed to work on the settings. SmarterMail was (and is) my attempt at running an email server. Speaking of first attempts, I never have quite

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Mark A Kruger
Rick, I have a blog post on SPF - having recently implemented it. There's a resource link or 2 at the bottom as well. http://mkruger.cfwebtools.com/index.cfm/2005/11/3/spf -Mark -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 10:08 AM

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Mark A Kruger
Rick, Do a search for SPF on my blog - I have several posts that mention it besides just the one I sent. -Mark -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 10:43 AM To: CF-Talk Subject: RE: RE: Using CF with ArgoSoft Email Server Plus

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Rick Faircloth
Thanks a lot, Mark...that's probably just what I need. I did some research on it awhile back when I first put SmarterMail in, but just couldn't quite pull in enough info to put it all together. I was afraid I was doing more harm than good...not that any of my software settings or code has does

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Rick Faircloth
Will do...thanks! Rick -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 11:46 AM To: CF-Talk Subject: RE: RE: Using CF with ArgoSoft Email Server Plus Rick, Do a search for SPF on my blog - I have several posts that mention it

RE: Best Approach for Survey Question

2006-01-02 Thread Snake
I once made a form build that could be used for pretty much anything, profiles, questionnaires, anything that required a form. It was constructed something like thus:- Table: questions questionID int primarykey Questionvarchar Fieldtype varchar

Re: Tracking downloads of mp3 files

2006-01-02 Thread Owner, Three Ravens Consulting
Couldn't you also pull that from the server logs? Eric On Mon, 2 Jan 2006 05:42:50 -0800 Matt Robertson [EMAIL PROTECTED] wrote: Use cfcontent to push the files to them. Then you can work whatever tracking code you want into the picture.

Re: CFSCRIPT Question

2006-01-02 Thread Owner, Three Ravens Consulting
I am not aware of any benefit other than personal preference... Eric On Mon, 2 Jan 2006 11:38:27 - Andy McShane [EMAIL PROTECTED] wrote: I was under the impression that there was a performance gain with cfscript, is that not the case? Is there no benefit to using cfscript?

RE: Best Approach for Survey Question

2006-01-02 Thread Snake
I thought that when I made it the first time :-) Russ -Original Message- From: Rick Colman [mailto:[EMAIL PROTECTED] Sent: 02 January 2006 17:52 To: [EMAIL PROTECTED] Subject: RE: Best Approach for Survey Question This is a very cool approach to doing it. Thank you. -Original

Re: Currency formatting

2006-01-02 Thread Paul Hastings
Jennifer Gavin-Wear wrote: You say by jvm version, and I take this to mean jvm that comes with the Mx 6.1 install? or one that you used instead of that one. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

RE: CFSCRIPT Question

2006-01-02 Thread Bobby Hartsfield
I think the benefit was always a SLIGHT performance increase. I don't know that it was ever actually processed faster than a normal tag based method but 99.9% of the time, it takes less code in cfscript to get the job done which makes for a smaller file size in the end which WOULD be

Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
I currently work for a school system that is in need of a bug tracking application as backend. Cost is a factor, as this is a school system, something with educational pricing or open source would be preferred. Does anyone know of any offhand? Bob Everland

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Rick Faircloth
Mark, I checked out the blog on the SPF. One part: That last record with the string ' v=spf1 ip4:66.37.232.199 ip4:66.37.232.195 -all ' says that cfwebtools.com mail is only supposed to come from 1 of 2 IPs. My concern is this: I use the free version of Smarter Mail to handle mail

RE: Bug tracking app using Oracle as a backend

2006-01-02 Thread Bobby Hartsfield
What kind of bugs are you planning to track? Just CF errors? I haven't used any third party apps for it but cferror in the application.cfm file and a couple queries would do the job (if it is indeed just CF errors that you're looking to track down and log).

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
I need to track enhancements for applications, bugs, issues graphic designers need to take care of on the website. Also issues with some of our other software applications such as Peoplesoft. We use cferror to catch the common errors so we can put out any fires before they become raging

RE: Bug tracking app using Oracle as a backend

2006-01-02 Thread Bobby Hartsfield
Gotcha... sorry, I haven't used anything like that web based. I'm sure someone has though. But... my college had plenty of computer courses and needed plenty of software so they had an agreement with Microsoft to use basically any and all of their software (not the MAPS) which included (I think

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
Anything Microsft related will need to use SQL Server. We have a copy of that running, but not enterprise edition and the memory is pretty maxed at the moment. Our Oracle server on the other hand is under special pricing for educational use and we have some monster hardware under that. I'm not

RE: Bug tracking app using Oracle as a backend

2006-01-02 Thread Ian Skinner
Nobody mention Ray Cambdons Lighthouse yet? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole use of the intended

RE: SERVER scope in CF Enterprise

2006-01-02 Thread Dave Watts
If you're running CF Enterprise with sandboxes, does the SERVER scope still apply to the entire server or dos each sandbox have its own SERVER scope? I'm pretty sure that you still only have one Server scope with sandboxes. You would have separate Server scopes if you used separate CFMX

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
Forgot one more requirement. It has to run on ColdFusion 6.1 or .NET, sorry. I would definitely use Lighthouse if not for the CFMX 7 requirement. Bob Everland ~| Logware (www.logware.us): a new and convenient web-based time

RE: CFSCRIPT Question

2006-01-02 Thread Dave Watts
I was under the impression that there was a performance gain with cfscript, is that not the case? Is there no benefit to using cfscript? I haven't been able to determine any significant performance change one way or the other with CFMX. There may have been performance differences in prior

RE: Bug tracking app using Oracle as a backend

2006-01-02 Thread Mark Fuqua
Check lighthouse again. I think Ray may have got rid of the flash forms which I think were the primary reason it had to run on 7.0 Mark Fuqua -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 1:52 PM To: CF-Talk Subject: Re: Bug

RE: Bug tracking app using Oracle as a backend

2006-01-02 Thread Bobby Hartsfield
Yeah, seems like he mentioned that recently. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Mark Fuqua [mailto:[EMAIL PROTECTED] Sent: Monday, January 02, 2006 3:03 PM To: CF-Talk Subject: RE: Bug tracking app using Oracle as

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
That's awesome, I've been out because the school system gets a ridiculous amount of time off for the holidays. So now my question is, has anyone started on getting this application to work in CFMX 6.1 and Oracle? If not I'd be happy to start. If you're on here Ray let me know, I also sent you

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have written my own Bug Tracking Application for the CFMX Applications which I have written for Schools. I am not sure if the applications will run under Oracle as the Backend as we do not have license for it. All of my applications use Apache and

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Raymond Camden
Heya Robert. So while Lighthouse Pro does not use Flash Forms anymore, it is still CFMX7 only. It uses Application.cfc and isValid(). However - you could replace that in about 20 minutes probably. On 1/2/06, Robert Everland III [EMAIL PROTECTED] wrote: That's awesome, I've been out because the

RE: RE: Using CF with ArgoSoft Email Server Plus

2006-01-02 Thread Jennifer Gavin-Wear
Hi Rick, I think this is a bit far OT so I'll reply to your email address. If anyone would like me to post the info here, then by all means I will :-) Jenny -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: 02 January 2006 16:08 To: CF-Talk Subject: OT: RE: Using

Re: Bug tracking app using Oracle as a backend

2006-01-02 Thread Robert Everland III
That's what I'm thinking Ray. I will be working on this tomorrow. I will keep you apprised of my progress. I'm really glad you took out the flash forms, that was going to take too much time for me to replace. Once I'm done I will have Lighthouse working on CFMX 6.1 and Oracle. I will try to

ColdFusion Cookbook

2006-01-02 Thread Raymond Camden
I'd like to announce the creation of a ColdFusion Cookbook. The site will be found at: www.coldfusioncookbook.com (not up yet) The idea is simple - provide a set of simple problems (how do I do X) and solutions, as well as alternative solutions. (Since we all know CF provides many ways to skin

RE: SPAM-LOW: ColdFusion Cookbook

2006-01-02 Thread Rick Faircloth
Hi, Ray... Sounds like a great idea. Consider categorizing the solutions by CF version as well as difficulty, e.g. easy, intermediate, difficult. I'm sure there are other ways to categorize the cookbook information, too, but those were the first ideas that popped into my mind... Rick

Re: SPAM-LOW: ColdFusion Cookbook

2006-01-02 Thread Sean Corfield
On 1/2/06, Rick Faircloth [EMAIL PROTECTED] wrote: Consider categorizing the solutions by CF version as well as difficulty, e.g. easy, intermediate, difficult. And perhaps categorizing by framework use as well since that will be a useful yardstick for many developers. Fusebox, Mach II,

re: ColdFusion Cookbook

2006-01-02 Thread Mike Kear
One of the great things about this ColdFusion discipline is the wealth of free, or nearly free material to learn from. As we al lknow its next-to useless trying to find an up-to-date course on ColdFusion at a tertiary educational institution. So I applaud Ray's initiative. And with Ray's

Re: ColdFusion Cookbook

2006-01-02 Thread Raymond Camden
I think the difference will be in how the information is setup. It is my understanding that easycfm and communitymx are more general, like CFDJ. My idea for the cookbook is to be a bit more particular. I.e., every article is simply a question and an answer. So for example, How do I email a form to

Re: SPAM-LOW: ColdFusion Cookbook

2006-01-02 Thread Raymond Camden
I'm not sure how frameworks may come into play. Note I'm thinking of small, atomic type problems. Looping over an array - sending form results to an email address - reading a file line by line, etc. -r On 1/2/06, Sean Corfield [EMAIL PROTECTED] wrote: On 1/2/06, Rick Faircloth [EMAIL PROTECTED]

Re: ColdFusion Cookbook

2006-01-02 Thread Mike Kear
Quite so, Ray! Every resource is valuable. I am always hunting up resources I've read about. I'll see a hint or a tip someone will post somewhere, and I'll say to myself that will be useful for me one day, or I'll be able to use that when I come to redevelop X site. The problem is always