Re: IE7 ?

2006-10-20 Thread Robertson-Ravo, Neil (RX)
Did it remove your IE6 install? I run the RC standalone as our CMS software does not support IE7, will try stuff when I get in the office..see if it is buggier than the RC, which seemed fine. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN,

Re: Fifteen Minute Warning: MachII with Peter J Farrell

2006-10-20 Thread Adrian B
I had to leave the presentation before it finished. Any link to the recorded version? On 19/10/06, Kev McCabe [EMAIL PROTECTED] wrote: Starts in 15 Minutes: http://adobechats.adobe.acrobat.com/r94491404/?launcher=false

cf_pdf HTML/javascript

2006-10-20 Thread Juman Lop
Hi, Everyone up there, how to put HTML or Javascript code into CF_PDF? Thanks, Juman ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

Re: tartan website

2006-10-20 Thread Nick Tong - TalkWebSolutions.co.uk
Anyone know a RSS news feed for Tartan? On 20/10/06, Paul Kenney [EMAIL PROTECTED] wrote: The site works now. Don't know why it was causing errors earlier. On 10/19/06, Dan O'Keefe [EMAIL PROTECTED] wrote: Just so happens I was doing some searching on CFOOP today and I can get to the

Re: Fifteen Minute Warning: MachII with Peter J Farrell

2006-10-20 Thread Nick Tong - TalkWebSolutions.co.uk
Check out http://nil.checksite.co.uk/index.cfm/2006/10/19/SCFUG--Head-First-MachII-with-Peter-J-Farrell On 20/10/06, Adrian B [EMAIL PROTECTED] wrote: I had to leave the presentation before it finished. Any link to the recorded version? On 19/10/06, Kev McCabe [EMAIL PROTECTED] wrote:

cf_pdf HTML/javascript

2006-10-20 Thread Juman Lop
Hi, Every one up there, How to put javascript code or html code into cf_pdf or Cfdocument. Thanks, ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by

Including a file

2006-10-20 Thread Pete
Hi All Just a really quick question - if I have a main program and I include another file should I have the head and body tags in the included program ? Thanks in advance for replies. P ~| Introducing the Fusion Authority

RE: Including a file

2006-10-20 Thread Coldfusion
No you do not need a head/body tags, but then again it really depends on what the included file does. Example: this is an index.cfm file INDEX.CFM -- cfinclude template=header.cfm This is the index.cfmBR cfinclude template=test.cfm HEADER.CFM

RE: Including a file

2006-10-20 Thread Robertson-Ravo, Neil (RX)
You mean should your new document have duplicate HEAD/BODY Tags? The answer is no: this is an invalid document. Only one HEAD/BODY should be outputted. -Original Message- From: Pete [mailto:[EMAIL PROTECTED] Sent: 20 October 2006 11:08 To: CF-Talk Subject: Including a file Hi All

Google Maps API Coldfusion

2006-10-20 Thread Charles Sheehan-Miles
Hello all, I¹ve been given a sudden requirement to implement a new application for our organization which will: 1. Plot given data points on a map 2. Allow the user to click on a map, pick up the geocoordinates and pass them to another form. I¹m wondering if there are any open-source coldfusion

Best way to insert text as html, without a text editor

2006-10-20 Thread Will Tomlinson
What's the simplest way to maintain simple formatted text in a db, without using tinyMCE, FCKeditor, or typing html into the textarea? When I say simple, I mean I just want to show line breaks, carriage returns, etc. Not worried about boldness, tables, etc. I just tried using

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Bobby Hartsfield
Store it in the database just as it was typed. Don’t format it. When you output it, use... #replace(var, '#chr(13)##chr(10)#', 'br /', 'all')# -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 7:42 AM To: CF-Talk Subject: Best way to

Re: ANNOUNCE: CFFM 1.14 Released

2006-10-20 Thread Rick Root
Matt Robertson wrote: Hey Rick, how tough would it be to pull 1.13 (or whatever it is I have) and put 1.14 in its place? Just swap out the cffm directory? I am using it as the FCKEditor file manager. Easy - all you'll have to do is make sure you keep your original cfinvokeargument

RE: Including a file

2006-10-20 Thread Bobby Hartsfield
That would result in: HTMLHEADTITLE/TITLE/HEADBODY This is the header.cfm /BODY/HTML This is the index.cfmBR This is the test.cfmBR which, of course, is invalid. If your main including template already has the html and body tags, then no... the included template should not have them. When

Google Maps

2006-10-20 Thread Charles Sheehan-Miles
Never mind my previous email ‹ found at least two useful ones, which I¹ll link here if they are helpful to others: CFGoogleMaps ‹ haven¹t explored this one in any detail yet http://coldfusionpodcast.com/page.cfm/cfgooglemaps. And Using Google Maps as a Form Input Field

Rate your favorite coldfusion framework

2006-10-20 Thread Nick Tong - TalkWebSolutions.co.uk
http://cfframeworks.com/blog/index.cfm/2006/10/20/Rate-your-favorite-coldfusion-framework -- Nick Tong web: http://talkwebsolutions.co.uk blog: http://succor.co.uk short urls: http://wapurl.co.uk green link: http://wapurl.co.uk/?4Z2YDLX

Re: Rate your favorite coldfusion framework

2006-10-20 Thread Casey Dougall
On 10/20/06, Nick Tong - TalkWebSolutions.co.uk [EMAIL PROTECTED] wrote: http://cfframeworks.com/blog/index.cfm/2006/10/20/Rate-your-favorite-coldfusion-framework This is an easy one! How about none! Casey ~| Introducing

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Dan G. Switzer, II
Will, What's the simplest way to maintain simple formatted text in a db, without using tinyMCE, FCKeditor, or typing html into the textarea? When I say simple, I mean I just want to show line breaks, carriage returns, etc. Not worried about boldness, tables, etc. I just tried using

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Bobby Hartsfield
Agreed 110% -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 8:40 AM To: CF-Talk Subject: Re: Rate your favorite coldfusion framework This is an easy one! How about none! Casey -- No virus found in this outgoing message. Checked by AVG

RE: Including a file

2006-10-20 Thread Coldfusion
Doh.. Yeah I did not even think about the closing tags. I have those in a footer.cfm See what I get for not having morning coffee before typing. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 8:10 AM To: CF-Talk Subject: RE: Including

Re: Rate your favorite coldfusion framework

2006-10-20 Thread Nick Tong - TalkWebSolutions.co.uk
Where can i download that one ?? ;) On 20/10/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: Agreed 110% -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 8:40 AM To: CF-Talk Subject: Re: Rate your favorite coldfusion framework This is

RE: Rate your favorite coldfusion framework

2006-10-20 Thread David Low
It comes free with every copy of CF. -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: 20 October 2006 14:23 To: CF-Talk Subject: Re: Rate your favorite coldfusion framework Where can i download that one ?? ;) On 20/10/06, Bobby

RE: Where can I download Coldspring for use in MG:U?

2006-10-20 Thread Andy Matthews
Thanks for letting me know. Sadly, I haven't even been able to get to that point. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Dave Lyons

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Andy Matthews
www.nun.com !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Robertson-Ravo, Neil (RX)
Nah, that site is in PHP ;-) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: 20 October 2006 14:53 To: CF-Talk Subject: RE: Rate your favorite coldfusion framework www.nun.com !//-- andy matthews web developer certified advanced coldfusion

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Bobby Hartsfield
Lol! Sexy nun costumes... I've officially seen it all. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 9:53 AM To: CF-Talk Subject: RE: Rate your favorite coldfusion framework www.nun.com !//-- andy matthews web

RE: Rate your favorite coldfusion framework

2006-10-20 Thread kola.oyedeji
Casey Bob I'm curious, is every application you write different to the last one - do you have any common files or structures between the applications you writedo you re-write the way security is handled for example or the way logging is handled between every application? Or the way you

Your favorite CFFORM/Flash Forms tutorial...

2006-10-20 Thread Jeff Small
Do you have a personal favorite tutorial or website on using Flash Forms with the CFFORM tag? Like demos of how to do certain things, tricks, tips, sample code, etc? I wanna play with them and I'm curious to see what's out there. The Macromedia/Adobe site isn't *bad*, but I'm sure someone's

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Andy Matthews
That's just what they want you to think. :) !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL

RE: Your favorite CFFORM/Flash Forms tutorial...

2006-10-20 Thread Doug Bezona
ASFusion has some good info. http://www.asfusion.com/ -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 10:39 AM To: CF-Talk Subject: Your favorite CFFORM/Flash Forms tutorial... Do you have a personal favorite tutorial or website on

Re: Your favorite CFFORM/Flash Forms tutorial...

2006-10-20 Thread Jeff Small
ASFusion has some good info. http://www.asfusion.com/ Awesome, that's a great one... ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered

Re: How can I leverage the Benefits of CFForm in MX7?

2006-10-20 Thread Teddy Payne
Ali, I did not forget you. I am searching for some previous work that had a basis for what you are tryin to achieve. Teddy On 10/19/06, Ali Awan [EMAIL PROTECTED] wrote: ok the way it's laid out is that Think of 2 tables side by side on one page. We'll call the left table, table 1 and the

RE: Your favorite CFFORM/Flash Forms tutorial...

2006-10-20 Thread Doug Bezona
Word of warning - Flash Forms are kind of addictive once you really start digging in and understand how powerful they are - which the ASFusion folks really do a job of illustrating. Then you will wish Flash Forms did just a bit more, which will inevitably lead you to Flex, which is REALLY cool,

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Bobby Hartsfield
I reuse quite a bit of stuff with minor changes such as over all global settings. If you want to count the structure of my apps, then that's another reuse. Normally I have an include for global settings, an include for the layout, and an include for the body of individual pages. Between

CFContent and MIME Types

2006-10-20 Thread Green Parot
Hello, I'm trying to use cfcontent on Coldfusion 5 to display files. For security purposes, I cannot link directly to the files. I'm trying to get this to work for any type of file. Currently it works for .doc and .xls files but not PDF files. The page does not throw any exceptions just

Re: CFContent and MIME Types

2006-10-20 Thread Green Parot
Hello, I'm trying to use cfcontent on Coldfusion 5 to display files. For security purposes, I cannot link directly to the files. I'm trying to get this to work for any type of file. Currently it works for .doc and .xls files but not PDF files. The page does not throw any

RE: IE7 ?

2006-10-20 Thread Christine Davis
Here's a fun little note, the history shortcut is no longer ctrl-H it's now ctrl-shft-H. Our intranet App used to capture ctrl-shft-H for our help system... we'll be doing a minor rewrite for that one... Thanks! Christine Davis ColdFusion Lead Nations Technical Services Prairie Village, KS

Re: Best way to insert text as html, without a text editor

2006-10-20 Thread Will Tomlinson
Store it in the database just as it was typed. Don?t format it. When you output it, use... #replace(var, '#chr(13)##chr(10)#', 'br /', 'all')# Thangya dude me ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: Best way to insert text as html, without a text editor

2006-10-20 Thread Will Tomlinson
Thanks dan! Checkin it out. Will ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

RE: Rate your favorite coldfusion framework

2006-10-20 Thread kola.oyedeji
Bobby thanks for the response - I should add it sounds suspiciously like a framework ;-) I guess when people ask what framework do you use - many people interpret that as which out of Fusebox, onTap, Model-Glue, Mach-II...etc. do you use. In reality and certainly in my experience many people who

Re: Rate your favorite coldfusion framework

2006-10-20 Thread Casey Dougall
On 10/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Casey Bob I'm curious, is every application you write different to the last one - do you have any common files or structures between the applications you writedo you re-write the way security is handled for example or the way

RE: Foundry Server Iron

2006-10-20 Thread Andrew Tyrone
-Original Message- From: Christine Davis [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 5:21 PM To: CF-Talk Subject: RE: Foundry Server Iron However, having said that... We really are interested if anyone has any insight, our tech folks require hardware load balancing

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Andrew Tyrone
What's the simplest way to maintain simple formatted text in a db, without using tinyMCE, FCKeditor, or typing html into the textarea? When I say simple, I mean I just want to show line breaks, carriage returns, etc. Not worried about boldness, tables, etc. I just tried using

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
I'm not exactly sure what a keep alive connection looks like, unless you just mean periodically hitting a page with JavaScript once every 55 minutes. If I hit a CFM page, it would keep my session from ever expiring which would not be good. What if I requested something simple like an image from

RE: Foundry Server Iron

2006-10-20 Thread Russ
Is this setting between requests? Are you saying your session time out in CF is higher then 60 minutes? Russ -Original Message- From: Andrew Tyrone [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 12:24 PM To: CF-Talk Subject: RE: Foundry Server Iron -Original

RE: Foundry Server Iron

2006-10-20 Thread Andrew Tyrone
-Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 12:32 PM To: CF-Talk Subject: RE: Foundry Server Iron I'm not exactly sure what a keep alive connection looks like, unless you just mean periodically hitting a page with JavaScript once

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
Our CIO wants our users to be logged in to our web app for 12 hours at a time regardless of activity. That means I have to allow someone to log in, walk away for their computer for 11 hours and 59 minutes, and then click on something and still be logged in (for another 12). Our load balancer

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
Yes, that would be an option. It's not like you couldn't also hit an HTML or other page that is not processed by CF as well. You could even send the request with a basic AJAX http request. We might end up doing that, but it sure seems like a lot of wasted work just because foundry decided

Serving up content

2006-10-20 Thread Huff, Jerome P.
I have been requested to set up a server (server B) that will serve video/audio clips. The problem I am having is that Server A is located in another secure domain with users anywhere in the world. How do I only let valid requests for the video/audio and reject others? I am running windows 2003

RE: Foundry Server Iron

2006-10-20 Thread Snake
How about using client variables instead, or setting up a CFMX jrun cluster on both servers and using jsessions. Russ -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: 20 October 2006 17:57 To: CF-Talk Subject: RE: Foundry Server Iron Our CIO wants our users to be

Re: Where can I download Coldspring for use in MG:U?

2006-10-20 Thread Dave Ross
Sorry about the outage - we had a complete drive failure on the server last weekend and it took a few days to find a new home. http://www.coldspringframework.org should now be operational again. thanks, Dave I'm back to trying to learn MG:U again and now I'm getting a different error. So I've

Re: ANNOUNCE: CFFM 1.14 Released

2006-10-20 Thread Matt Robertson
On 10/20/06, Rick Root [EMAIL PROTECTED] wrote: Look for FCKeditor/editor/dialog/common/fck_dialog_common.js In that file look for sOptions = those are the window options. You'll want to add scrollbars=auto Crud. I already did that and it didn't work. Same result in both FF and IE7. Loaded

RE: Serving up content

2006-10-20 Thread Snake
Map a drive to server B from server A and use CFCONTENT to deliver the file. Or if a login is required to access the files anyway, use server side authentication using something like IISPASSWORD. Russ -Original Message- From: Huff, Jerome P. [mailto:[EMAIL PROTECTED] Sent: 20 October

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
Well technically we do use client (stored in db) with user cookies enabled to tell if a user is logged in. We also store quite a bit in session (including some complex variables) which is not an option for client storage. If you bounce servers and lose that session info, you can't use the app

RE: Serving up content

2006-10-20 Thread Huff, Jerome P.
Snake, I can't map a drive, they are in a secure domain, no outside connections allowed. The client also requires no name/password to access the data. They can send an encrypted token with the request, could I parse that and use CFCONTENT? Maybe? Thanks -Original Message- From:

Can I use replace function on a string to create form drop box options?

2006-10-20 Thread [EMAIL PROTECTED]
I've got a database field called option1 that contains two colors seperated by a comma: red,yellow. What I'm trying to do is create a drop down form box that takes each color (delineated by the comma) and puts it into it's own option value like this: select name=option1 optionvalue=red

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Charlie Griefer
why not just: cfloop list=#option1# index=i option value=#i##i#/option /cfloop On 10/20/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've got a database field called option1 that contains two colors seperated by a comma: red,yellow. What I'm trying to do is create a drop down form

RE: Foundry Server Iron

2006-10-20 Thread Russ
Brad, Officially, you need Enterprise to do a jrun cluster. Unofficially, I've been getting some promising results by hacking the xml files with cf standard. We've abandoned that project though and bought enterprise, but if you have a lot of spare time, you can probably hack something

Re: Foundry Server Iron

2006-10-20 Thread Ben Koshy
We use a server Iron and it works great. However we found sticky ports to be flaky so we just moved all the session variables to client variables and had no session issues across multiple servers. - Original Message - From: Brad Wood [EMAIL PROTECTED] To: CF-Talk

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Charlie Griefer
and just because if i don't say it, somebody else will... it's generally not a good idea to store lists (delimited data) in relational databases. you've got a one-to-many relationship and would probably run into fewer issues in the future if you were to break it out as such. On 10/20/06,

RE: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Doug Bezona
select name=option1 class=formbox cfloop list=#option1# index=listItem option value=#listItem##listItem#/option /cfloop /select -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 1:27 PM To: CF-Talk Subject: Can I use replace

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Jeff F
That worked perfectly. So simple too. Yes, I understand the practice is not the best, and I see potential problems in the future by storing this string in the field. This is just a one-time thing, used for just two records that I was hoping for a quick shortcut that tutned into a

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
Even though that would be a fairly large rewrite of existing code (all session vars to client vars) ... it seems like just a waste to not be able to use your session scope all because of a silly load balancing setting. And then we would have to serialize everything which wasn't a simple variable.

RE: Foundry Server Iron

2006-10-20 Thread Brad Wood
Hmmm, sounds scary. :) -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 12:32 PM To: CF-Talk Subject: RE: Foundry Server Iron Brad, Officially, you need Enterprise to do a jrun cluster. Unofficially, I've been getting some promising results by

RE: Where can I download Coldspring for use in MG:U?

2006-10-20 Thread Andy Matthews
Ah yes...there is it. Thank you Dave. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Dave Ross [mailto:[EMAIL PROTECTED] Sent: Friday,

Can't get the right path for my error template

2006-10-20 Thread Will Tomlinson
Ok, this is annoying. I'm testing my store app within another site, on a shared server, using a shared SSL. The root is luckydogvolleyball. The subfolder is Store - luckydogvolleyball/Store The domain for the SSL is: https://www1024.ssldomain.com/luckydogvolleyball The site works fine when

Frameworks Conference Registration open, Flex training, and more.

2006-10-20 Thread Michael Smith
In this week's Newsletter: *Frameworks Special Offer *Vote for the Framworks Conference Topics! *Flex training and help *Michael Smith - Interveiw *CF_Underground and MiniMAX *CFUNITED video -- Frameworks Conference Special OFFER! If you register by October 31st 2006 you can attend

RE: Can't get the right path for my error template

2006-10-20 Thread Brad Wood
It looks like your root dir must be different on the secure version. Try a fully qualified path as a test. Also dump a cfdirectory of all the root directory / and see if it is what you expect on the ssl version. ~Brad -Original Message- From: Will Tomlinson [mailto:[EMAIL

RE: Foundry Server Iron

2006-10-20 Thread Russ
You can also get a different load balancer (or set up a linux box). I believe the latest apache also has some load balancing features... Perhaps the cache settings in apache are a bit more configurable... It looks like the latest version of apache supports sticky sessions. From

Re: IE7 ?

2006-10-20 Thread Matt Robertson
gmail is flopping around on a continuous refresh of a blank screen today. Works great in FF but in IE7 its dead as a doornail -- [EMAIL PROTECTED] Janitor, MSB Web Systems mysecretbase.com ~| Introducing the Fusion Authority

RE: CFMX stopped logging

2006-10-20 Thread Chris Norloff
No, ownership permissions are okay. But thanks for the idea! Chris -- Original Message -- From: Munson, Jacob [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 19 Oct 2006 12:58:59 -0600 Maybe the CF user's permissions changed? Or the

RE: Can't get the right path for my error template

2006-10-20 Thread Andrew Tyrone
Ok, this is annoying. I'm testing my store app within another site, on a shared server, using a shared SSL. The root is luckydogvolleyball. The subfolder is Store - luckydogvolleyball/Store The domain for the SSL is: https://www1024.ssldomain.com/luckydogvolleyball The site

Re: Can''t get the right path for my error template

2006-10-20 Thread Will Tomlinson
Ok, this is annoying. When you use /store, you're instructing the web server to retrieve a document from http://www1024.ssldomain.com/store, because luckydogvolleyball is a directory below the webroot in this case. I assume you want /luckydogvolleyball/store/ instead. Use a relative link to

RE: Rate your favorite coldfusion framework

2006-10-20 Thread Bobby Hartsfield
I guess when people ask what framework do you use - many people interpret that as which out of Fusebox, onTap, Model-Glue, Mach-II... etc No, pretty much everyone interprets it that way when the question is asked. I'm sure if you ask the original poster, those would be some of the same

CF_GoogleMap

2006-10-20 Thread John Blayter
http://www.blayter.com/john/cf_googlemap/ I still need to wrap up some of the documentation and examples but I thought I would release what I have so far. HTH John ~| Introducing the Fusion Authority Quarterly Update. 80 pages

File comparison

2006-10-20 Thread Konopka, David
Can anyone recommend a way to determine whether or not two given text files are not exactly the same in ColdFusion? I know the contents of both files can be loaded into variables, and compared against each other, but I'm looking for a more efficient way. I don't need to see the

flashform object expected

2006-10-20 Thread Kris Jones
Hi all, I'm trying to get a flashform working here, and I keep getting the object expected error. The path/mapping to the CFIDE/scripts directory is alive and well. On checking the line that is erroring, I see it is looking for a file called CF_RunActiveContent.js, which is nowhere to be found.

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Bobby Hartsfield
I'm in total agreement that you COULD do that but I'd recommend not. It's been my experience that putting the data into the database in the same exact format that it was entered by the user and formatting it only for display purposes (that don’t affect the data directly) is your best bet to avoid

Validating if dropdown box has an input

2006-10-20 Thread Rick Dennis
I am modifying some existing code. i am adding a dropdown box. for some reason the code at the bottom here is not bring back the error message and i have to use this type of hidden validation. what do i need to change? select name=CourseHoursCompleted size=1 option value= selectedPlease

Re: Recommendations for a mail server...

2006-10-20 Thread Matt Robertson
On 10/19/06, Rick Faircloth [EMAIL PROTECTED] wrote: Apparently that wasn't an option for 4.5.2. Actually, it was. It just depended on the mail server as to whether it worked or not, and had a few other problems. Don't remember exactly what but it wasn't something you wanted to mess with if

RE: Validating if dropdown box has an input

2006-10-20 Thread Doug Bezona
I assume you are using the cfform validation? Then the tags needs to be cfselect, cfinput, etc. -Original Message- From: Rick Dennis [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 4:21 PM To: CF-Talk Subject: Validating if dropdown box has an input I am modifying some

Re: Validating if dropdown box has an input

2006-10-20 Thread Rick Dennis
I am just using the 2 blocks of code i put in the post. can you edit them? i am a bit of a new B to CF. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your

Re: Validating if dropdown box has an input

2006-10-20 Thread Kris Jones
I don't think you have to use CFFORM for these types of validations--the ones that have the _required extensions, etc. They happen server-side, and should result in a validation message after posting when the validation fails. Cheers, Kris I assume you are using the cfform validation? Then the

RE: File comparison

2006-10-20 Thread Mosh Teitelbaum
Konopka, David wrote: Can anyone recommend a way to determine whether or not two given text files are not exactly the same in ColdFusion? I know the contents of both files can be loaded into variables, and compared against each other, but I'm looking for a more efficient way. I don't need

RE: Validating if dropdown box has an input

2006-10-20 Thread Sandra Clark
Its cause your first option is selected with a blank in the value. So it is of course returning a value. Maybe dump the option value= selected, then it will work. Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets and Accessibility

Re: Validating if dropdown box has an input

2006-10-20 Thread Aaron Rouse
I would try dumping just the selected There is no need for it anyway since it is a size 1 and it is the first option element listed. So try: option value=Please Select/option Kris, you are correct you do not have to use CFFORM with the _required and other server side validation.

Re: File comparison

2006-10-20 Thread Rey Bango
Hi Dave, I'm not sure if you're asking for a method to do this from within CF or just a general comparison tool. If its the latter, check out Beyond Compare: http://www.scootersoftware.com/ Its very good for that purpose. Rey Konopka, David wrote: Can anyone recommend a way to determine

displaying a product with size selections, when each size is unique id?

2006-10-20 Thread Jeff F
I've got a table with products. Each product has a unique id. And, the product has are different sizes and each size is a new product id. example: redcar large has a unique id. redcar medium as a inique id. Now, I can't seem query display the products on a page so the product shows

CFDOCUMENT and CFCONTENT

2006-10-20 Thread Bryan Stevenson
Hey All, I'm trying to stick an image retrieved from a BLOB into a CFDOCUMENT generated page using this technique: img src=binaryImage.cfm binaryImage.cfm cffile action=readbinary file=d:\appName\images\image.jpg variable=outputImage cfcontent type=image/jpg variable=#outputImage# This

Documents within CFDocument

2006-10-20 Thread Henry Wright
I have been working with CFDocument for a while now and I am quite happy with the way it works. There is one final thing that I am now failing to accomplish. Creating a document within a document or creating a document with thumbnail sections split by contents, e.g left hand margin containing

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Andrew Tyrone
You could format it with a SELECT statement though if that's what Andy meant? That would not affect the data but format it for display. Yep, that is what I meant. Sometimes I find it easier to just send it back formatted in the correct way, but I'll always store it the way it was entered by

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Claude Schneegans
and just because if i don't say it, somebody else will... Argh... I was affraid someone would indeed :-) This is right IN THEORY, and in most cases, but in practice, when the list has only a few elements, and is not expected to have many ever, a list in one field is a much simpler and more

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Charlie Griefer
i said GENERALLY :P On 10/20/06, Claude Schneegans [EMAIL PROTECTED] wrote: and just because if i don't say it, somebody else will... Argh... I was affraid someone would indeed :-) This is right IN THEORY, and in most cases, but in practice, when the list has only a few elements, and is

Re: File comparison

2006-10-20 Thread Claude Schneegans
Can anyone recommend a way to determine whether or not two given text files are not exactly the same in ColdFusion? Funny, I just developed a CFX tag to get a checksum, an 8 digits hexadecimal value from any file. This was for image files, but it could work as well for text files. Contact me

Re: File comparison

2006-10-20 Thread Claude Schneegans
You could read in the contents of each file, generate a checksum for each This is what I've done, except that it could be quite cumbersome for large files. So I made a CFX in C that can read the file in chunks in a buffer. ~|

RE: Can''t get the right path for my error template

2006-10-20 Thread Andrew Tyrone
Well the problem with a relative link is I have subfolders with their own Application.cfc's. It'd throw an error on those pages. Unless I dropped the same error templates into all those directories. The root-relative links worked, but then the problem with the SSL came up. I guess

RE: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Andrew Tyrone
Argh... I was affraid someone would indeed :-) This is right IN THEORY, and in most cases, but in practice, when the list has only a few elements, and is not expected to have many ever, a list in one field is a much simpler and more efficient solution. I'd actually rather brush my teeth

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Claude Schneegans
i said GENERALLY Good point ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Claude Schneegans
I'd actually rather brush my teeth with a chainsaw than store a delimited list in a database field You see? This is unbelievable what kind of weirdness people can do when they go by the book ;-) -- ___ REUSE CODE! Use custom tags; See

Re: CF_GoogleMap

2006-10-20 Thread John C. Bland II
Good stuff Blayter. The docs look extensive. I can't wait to see what the rest of it looks like. On 10/20/06, John Blayter [EMAIL PROTECTED] wrote: http://www.blayter.com/john/cf_googlemap/ I still need to wrap up some of the documentation and examples but I thought I would release what I

  1   2   >