Re: announce: ColdFusion Cookbook hits 100

2006-06-14 Thread John C. Bland II
Ray, big props on the cookbook. It has come a long ways since the first time I looked at it. Thx for the great resource. I'll have to cook up some examples and post, whenever I get a chance. :-) On 6/13/06, Raymond Camden [EMAIL PROTECTED] wrote: I hope folks don't mind the advertisement

Re: cfloop query= bug?

2006-06-14 Thread Auke van Leeuwen
Can we agree that with the code above, the expected output would be: Outside Loop: a = 1 , Inside Loop: a = 1 , a = 1 , a = 1 , a = 1 , a = 1 , Outside Loop: b = 2 , Inside Loop: b = 2 , b = 2 , b = 2 , b = 2 , b = 2 , Outside Loop: c = 3 , Inside Loop: c = 3 , c = 3 , c = 3 , c = 3 , c = 3 ,

Re: Recurring CFMAIL problem

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 03:49, dave wrote: Yeah, oh well... The reason 4 it was that if you don't set the mail server in the cfmail tag it will use whatever is configured in the administrator, if anything. To the original poster: Do you have a variable called, or value of a variable, that

Re: the infamous 'table_insert_id()' inquiry

2006-06-14 Thread Tom Chiverton
On Wednesday 14 June 2006 06:07, Charlie Griefer wrote: cfquery name=verify datasource=mod select max(pk_id) AS MAXID from users where email = '#session.email#' /cfquery But make sure that's in the same transaction as the insert :-) -- Tom Chiverton

Re: Recurring CFMAIL problem

2006-06-14 Thread James Holmes
No; these are templates that work perfectly well across all three servers and then for some reason (I'm guessing a network hiccup) mail suddenly stops working until the server is restarted. On 6/14/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 14 June 2006 03:49, dave wrote: Yeah, oh

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-14 Thread Tom Chiverton
On Tuesday 13 June 2006 20:10, Qasim Rasheed wrote: Not to contradict the usefulness of SVN, there is a plugin for VSS that you use within Eclipse which essentially gives you all the feature from VSS IDE that you are accustomed to. But only on Windows. -- Tom Chiverton

Itext Checkbox

2006-06-14 Thread Robert Everland III
How the heck do I set a checkbox field to be checked, I have tried setField(IMACHECKBOX, TRUE); setField(IMACHECKBOX, 1); setField(IMACHECKBOX, 0); setField(IMACHECKBOX, On); Nothing works, the text fields fill in correctly, this won't Bob

Create CF web service to return a PDF file

2006-06-14 Thread sonicDivx
I am trying to determine if I can create a web service that generates a PDF document. Then call the web service to return the PDF. Here is the basic web service I wrote cfcomponent displayname=printpdf cffunction name=printme returntype=binary access=remote output=no

Re: Itext Checkbox

2006-06-14 Thread Mark Drew
checked? On 6/14/06, Robert Everland III [EMAIL PROTECTED] wrote: How the heck do I set a checkbox field to be checked, I have tried setField(IMACHECKBOX, TRUE); setField(IMACHECKBOX, 1); setField(IMACHECKBOX, 0); setField(IMACHECKBOX, On); Nothing works, the text fields fill in

Re: Itext Checkbox

2006-06-14 Thread |Rens| 0
checked? Robert Everland III wrote: How the heck do I set a checkbox field to be checked, I have tried setField(IMACHECKBOX, TRUE); setField(IMACHECKBOX, 1); setField(IMACHECKBOX, 0); setField(IMACHECKBOX, On); Nothing works, the text fields fill in correctly, this won't

Re: Itext Checkbox

2006-06-14 Thread Robert Everland III
Negatory, checked and check didn't work. Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243440 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: Itext Checkbox

2006-06-14 Thread Paul Hastings
Robert Everland III wrote: Nothing works, the text fields fill in correctly, this won't setField in FdfWriter? it requires a PdfObject which in this case should probably be com.lowagie.text.pdf.PdfBoolean. ~| Message:

Re: Itext Checkbox

2006-06-14 Thread Mark Drew
snap! On 6/14/06, |Rens| 0 [EMAIL PROTECTED] wrote: checked? Robert Everland III wrote: How the heck do I set a checkbox field to be checked, I have tried setField(IMACHECKBOX, TRUE); setField(IMACHECKBOX, 1); setField(IMACHECKBOX, 0); setField(IMACHECKBOX, On); Nothing

Re: Itext Checkbox

2006-06-14 Thread Robert Everland III
I'm using a stamper to fill in the fields of PDF. I just tried PdfBoolean.TRUE, that did not work. No errors, just won't check the checkbox. Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243443 Archives:

Worldpay Integration Help!

2006-06-14 Thread cf coder
Hello everybody, I'm working on an e-commerce website which uses Worldpay's Select Junior service to connect my online store to worldpay. To give you an overview, users visiting the site can add items to the shopping basket. I want to send the users to worldpay to enter their card details and

Re: Create CF web service to return a PDF file

2006-06-14 Thread James Holmes
Did you convert the Binary to base64 before returning it? On 6/14/06, sonicDivx [EMAIL PROTECTED] wrote: I am trying to determine if I can create a web service that generates a PDF document. Then call the web service to return the PDF. Here is the basic web service I wrote cfcomponent

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-14 Thread Jochem van Dieten
Qasim Rasheed wrote: Not to contradict the usefulness of SVN, there is a plugin for VSS that you use within Eclipse which essentially gives you all the feature from VSS IDE that you are accustomed to. And in addition you get a few 'features' you are not accustomed too. If you have VSS

RE: Create CF web service to return a PDF file

2006-06-14 Thread Turetsky, Seth
Funny, I'm tweaking a cfc to do this right now. I use either a savePath attribute or a binary String return var I find saving it is much more reliable. Then you can redirect to it or use an iframe to view the pdf. But, if you really must stream it to the browser, try something like this:

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-14 Thread Rob Wilkerson
LOL. I'm pushing to move away from VSS for many more reasons than the availability of an Eclipse plugin, so sticking with VSS just isn't an option. Regardless of the attractiveness of these features you've so eloquently described. On 6/14/06, Jochem van Dieten [EMAIL PROTECTED] wrote: Qasim

Re: Itext Checkbox

2006-06-14 Thread Paul Hastings
Robert Everland III wrote: I'm using a stamper to fill in the fields of PDF. I just tried PdfBoolean.TRUE, that did not work. No errors, just won't check the checkbox. pdfStamper? yeah it's setField methods want strings. i guess start dumb, does getFieldType on that field return

RE: Create CF web service to return a PDF file

2006-06-14 Thread Turetsky, Seth
sorry, i was assuming itext, i didn't see you were using cfdocument. i don't know much about that tag -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 10:46 AM To: CF-Talk Subject: RE: Create CF web service to return a PDF file Funny,

Re: Worldpay Integration Help!

2006-06-14 Thread Mark Drew
In the worldpay documentation there should be a setting that you can say that you are doing a test, and a list of creditcard numbers to use. I dont have the docs to hand or access to their system anymore. Nearly all payment providers have this (I have used DataCash in this manner) HTH MD On

Re: Create CF web service to return a PDF file

2006-06-14 Thread sonicDivx
I just tried that and no luck. It seems the returned result from the service is a ByteArray. This is what I tried in CFC cfset myResult = BinaryEncode(myResult,'Base64') On 6/14/06, James Holmes [EMAIL PROTECTED] wrote: Did you convert the Binary to base64 before returning it? On 6/14/06,

Re: Create CF web service to return a PDF file

2006-06-14 Thread Rick Root
Don't know if this will work for you, but here's what our web service does: - creates the PDF, saves it to the file system - returns a URL to a cfm page that delivers the PDF using CFCONTENT, which also deletes the PDF. rick

CF-based photo sharing app?

2006-06-14 Thread Rick Root
Anyone seen such a thing? I'd like to build a web site allowing many users to upload and share photos. Rick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243454 Archives:

Re: Worldpay Integration Help!

2006-06-14 Thread cf coder
Hi Mark, I've looked on the the worldpay support website: http://support.worldpay.com/integrations/jnr/data.html but can't find any url which I could use to send the users to enter the card information. ~| Message:

Re: Worldpay Integration Help!

2006-06-14 Thread Jim
livemode: input type=hidden name=testMode value=0 testmode: input type=hidden name=testMode value=100 everything else stays the same cf coder wrote: Hello everybody, I'm working on an e-commerce website which uses Worldpay's Select Junior service to connect my online store to worldpay.

Re: Worldpay Integration Help!

2006-06-14 Thread cf coder
what page do I link to on worldpay when the user is ready to enter his/her payment details? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243457 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

Re: CF-based photo sharing app?

2006-06-14 Thread Paul Hastings
Rick Root wrote: I'd like to build a web site allowing many users to upload and share photos. have a look at seth duffey's photoblog: http://www.leavethatthingalone.com/projects/CFCPhotoBlog/ it's pretty cool. ~| Message:

Re: CF-based photo sharing app?

2006-06-14 Thread Jerry Johnson
Darn, but that is nice. Looks like I am losing some sleep this week! (And I thought I was spending it on Galleon. This just bumped it!) On 6/14/06, Paul Hastings [EMAIL PROTECTED] wrote: Rick Root wrote: I'd like to build a web site allowing many users to upload and share photos. have a

virtual directory in IIS?

2006-06-14 Thread Johnny Le
Is there a way to add a virtual directory to the IIS through CF code or Java? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243460 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: Worldpay Integration Help!

2006-06-14 Thread Mark Drew
Have you read this yet? http://support.worldpay.com/kb/integration_guides/junior/quickstep/quickstep_guide.html MD On 6/14/06, cf coder [EMAIL PROTECTED] wrote: what page do I link to on worldpay when the user is ready to enter his/her payment details?

Re: CF-based photo sharing app?

2006-06-14 Thread Raymond Camden
Just checking - are you losing sleep because Galleon is giving you trouble? If so, let me know. Also, check out my model-glue series on building a photo sharing application. On my blog you can find a link to it in the Quick Guide pods in the upper right. I walk through the entire process of

The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Andy Matthews
I'm getting this error when a complex query is run. It has multiple inner joins and is returning potentially thousands of records with about 60 columns each. --- The request has exceeded the allowable time limit Tag: cfoutput The error occurred on line 111. --- Is it timing out when

Re: Worldpay Integration Help!

2006-06-14 Thread Jim
Go here: http://support.worldpay.com/kb/integration_guides/junior/integration/help/sjig.html Click on getting started Click on basic purchase submission form Then continue to RTFM cf coder wrote: what page do I link to on worldpay when the user is ready to enter his/her payment

Re: CF-based photo sharing app?

2006-06-14 Thread Rick Root
Paul Hastings wrote: Rick Root wrote: I'd like to build a web site allowing many users to upload and share photos. have a look at seth duffey's photoblog: http://www.leavethatthingalone.com/projects/CFCPhotoBlog/ it's pretty cool. Damn that is pretty sweet.. doesn't do quite what I

Re: virtual directory in IIS?

2006-06-14 Thread Jim Wright
On 6/14/06, Johnny Le [EMAIL PROTECTED] wrote: Is there a way to add a virtual directory to the IIS through CF code or Java? If you are using IIS 6, they have added in some administrative command line scripts that you could probably call to handle this...

Re: CF-based photo sharing app?

2006-06-14 Thread Jerry Johnson
Oh, no no no. I am losing sleep because I am setting it up for a personal genealogy site (intending to this week), and I'm working 12 hours days at my real job. I've got 4 family reunions this summer, and am trying to get everything in place before then. On 6/14/06, Raymond Camden [EMAIL

Re: CFMX Java server recommendation

2006-06-14 Thread Martin Thorpe
Ok just thought I would update this after doing some research and experimenting. I installed JRUN and started running through some struts tutorials and came up with a couple of reasons not to use JRUN as a J2EE server. It is great for multiple instances of Coldfusion but if you start doing

Re: virtual directory in IIS?

2006-06-14 Thread Rob Wilkerson
Sort of, but not the way you're thinking. You need to write a VB script to handle that kind of interaction. At least, that's the only way I know to handle it. CF could then execute the VB script, of course. On 6/14/06, Johnny Le [EMAIL PROTECTED] wrote: Is there a way to add a virtual

Re: Worldpay Integration Help!

2006-06-14 Thread cf coder
thanks for this. What do I do to tell worldpay to redirect the users back to my site and display the transaction status i.e success or failure Go here: http://support.worldpay. com/kb/integration_guides/junior/integration/help/sjig.html Click on getting started Click on basic

Re: Create CF web service to return a PDF file

2006-06-14 Thread sonicDivx
Seth and Rick, Thanks for the replies, the save to file then read I figured would work, and I may do that. Seth, I'll give you way a try, but could you elaborate a little on the CFC. I think I'm mentally missing something. Thanks On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: Don't know if

Re: CF-based photo sharing app?

2006-06-14 Thread Raymond Camden
Wow, ok. Sleep is for the weak anyway. :) On 6/14/06, Jerry Johnson [EMAIL PROTECTED] wrote: Oh, no no no. I am losing sleep because I am setting it up for a personal genealogy site (intending to this week), and I'm working 12 hours days at my real job. I've got 4 family reunions this

Re: Worldpay Integration Help!

2006-06-14 Thread Ken Ferguson
You must have skipped straight over the part where you actually READ what's at the end of that link, huh? Those integration manuals are pretty straightforward and even give you sample HTML code for what a form might look like before it's posted to worldpay. --Ferg cf coder wrote: thanks

Re: Worldpay Integration Help!

2006-06-14 Thread cf coder
sorry folks! I am in a bit of a panic state and so do apologise for being a bit cheesey. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243474 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

RE: CF-based photo sharing app?

2006-06-14 Thread Burns, John D
Rick- I've been tinkering with the same kind of thing. I haven't gotten very far though. My thing is that I take a ton of pictures and have people ask me if they can get copies. I'd like to do something where I could upload via ftp or something and then have galleries created where people can

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Paul Ihrig
or if any one wants to split a room that you already have reserved! i know its a long shot, but thought i would try again! thanks -paul On 6/13/06, Paul Ihrig [EMAIL PROTECTED] wrote: any one canceling there room at the north marriot, please email me. would like to get in there. thanks!

RE: Create CF web service to return a PDF file

2006-06-14 Thread Turetsky, Seth
Ignore what I said about the cfc, I thought you were using itext So, maybe try this: cfset newResult = ToString(myResult, ISO-8859-1)!---not sure if this will work with a byte[]--- cfcontent type=application/pdf; charset=ISO-8859-1cfheader name=Content-Disposition

Sorta OT: Form Spam Bots

2006-06-14 Thread Les Mizzell
These little buggers drive me CRAZY! They visit your guest books and other forms and put in the most unimaginable porn links and crap ... OK, so I've carefully programmed filters to prevent any of this stuff from actually getting entered into my databases, and protected myself against SQL

RE: virtual directory in IIS?

2006-06-14 Thread Burns, John D
There are scripts in the inetpub/adminscripts directory that can do some of that. Just call them via cfexecute. I have seen some other products out there that can do this as well but can't think of any off the top of my head. John Burns Certified Advanced ColdFusion MX Developer Wyle

Re: CF-based photo sharing app?

2006-06-14 Thread Rick Root
Burns, John D wrote: I've been tinkering with the same kind of thing. I haven't gotten very far though. My thing is that I take a ton of pictures and have people ask me if they can get copies. I'd like to do something where I could upload via ftp or something and then have galleries created

Re: CF-based photo sharing app?

2006-06-14 Thread Matt Williams
And you can't just use flickr because... On 6/14/06, Burns, John D [EMAIL PROTECTED] wrote: Rick- I've been tinkering with the same kind of thing. I haven't gotten very far though. My thing is that I take a ton of pictures and have people ask me if they can get copies. I'd like to do

RE: CF-based photo sharing app?

2006-06-14 Thread Terry L Schmitt
I've never seen a robust CF photo sharing app. My most recent adventure, since I'm using a VPS with Bluedragon and PHP, is to use DAlbum. It's PHP, but who cares, it works! It is totally file driven with no database. FTP the files to the server and run a php script to re-index. Pretty simple. A

RE: CF-based photo sharing app?

2006-06-14 Thread Burns, John D
Because I can't host it myself and because it costs money. I was thinking flickr is a good example of what I want. The big thing that I'd like it to do that it can't is to be able to read the directories I have on my server at home (where CF is also running) and build galleries and such

RE: Sorta OT: Form Spam Bots

2006-06-14 Thread Dawson, Michael
If you use fake email addresses that contain bogus domain names, I would think that they would get bounced at the first DNS server it encounters. Good luck and keep up the good fight! M!ke -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006

Re: CFMX Java server recommendation

2006-06-14 Thread Dave Carabetta
On 6/14/06, Martin Thorpe [EMAIL PROTECTED] wrote: Ok just thought I would update this after doing some research and experimenting. I installed JRUN and started running through some struts tutorials and came up with a couple of reasons not to use JRUN as a J2EE server. It is great for

RE: virtual directory in IIS?

2006-06-14 Thread Dave Watts
Is there a way to add a virtual directory to the IIS through CF code or Java? Yes. However, doing this involves a specific COM interface called ADSI. Generally, your best bet probably is to interact with this through Windows Script Host, which you can invoke through CFEXECUTE. As several

Re: CF-based photo sharing app?

2006-06-14 Thread mac jordan
On 6/14/06, Matt Williams [EMAIL PROTECTED] wrote: And you can't just use flickr because... to my mind, the big problem with Flickr is its speed. Quite aside from the fact that I wouldn't ever have anything for my own sites on another site, IYSWIM. we're over half way to writing a sharing

SOT: IIS6 extension issues

2006-06-14 Thread J W
WIndows 2003 and IIS6 is DRIVING me up a wall... I have a virtual directory under my secured ssl page. I use this virtual directory to write files to and create files in coldfusion to dump there temporarily for some people to right click and save them. (they may be of various types and

Re: Sorta OT: Form Spam Bots

2006-06-14 Thread Claude Schneegans
This is what I do : 1º have a robots.txt file in the root containg: User-agent: * Disallow: /noBots.cfm Any well behave robot should ignore file /noBots.cfm 2º hide a link to noBots.cfm somewhere in all pages like in div having style set to display:none ie : DIV STYLE=display: none;A

Re: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread James Holmes
The template is running past the time allowed in the CF Admin. It could be either the DB or the post DB processing time. Anyway, you can increase the time available to the template with a cfsetting tag. On 6/14/06, Andy Matthews [EMAIL PROTECTED] wrote: I'm getting this error when a complex

RE: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Andy Matthews
James... Do you have an example of using cfsetting in this way? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: James Holmes [mailto:[EMAIL

RE: CF-based photo sharing app?

2006-06-14 Thread Andy Matthews
For the record (AFAIK) flickr is free for base users. You only have to pay if you want the Pro edition. I personally don't use Flickr because I wrote a photo gallery system for my own site. Why use something on someone else's site if you can do it yourself. !//-- andy

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Michael Traher
You know there are still rooms at the other marriott just down the road and a shuttle bus I think http://marriott.com/property/propertypage/WASBT On 6/14/06, Paul Ihrig [EMAIL PROTECTED] wrote: or if any one wants to split a room that you already have reserved! i know its a long shot, but

Re: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Ray Champagne
Just put this at the top of your page: cfsetting requesttimeout=3600 Set the time to be whatever you want in seconds. Andy Matthews wrote: James... Do you have an example of using cfsetting in this way? !//-- andy matthews web developer certified advanced

Re: virtual directory in IIS?

2006-06-14 Thread Jose Diaz
Hi Johnny, There is a custom tag named CFX_IIS this tag should do what you are asking. Thanks Jose Diaz On 6/14/06, Dave Watts [EMAIL PROTECTED] wrote: Is there a way to add a virtual directory to the IIS through CF code or Java? Yes. However, doing this involves a specific COM

Re: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Rob Wilkerson
cfsetting requesttimeout=[# of seconds] / On 6/14/06, James Holmes [EMAIL PROTECTED] wrote: The template is running past the time allowed in the CF Admin. It could be either the DB or the post DB processing time. Anyway, you can increase the time available to the template with a cfsetting tag.

Re: virtual directory in IIS?

2006-06-14 Thread Jose Diaz
Hi Johnny, Forgot to mention, I'm not sure if the tag is supports IIS 6 if definatly works for 5. All the best Jose Diaz On 6/14/06, Dave Watts [EMAIL PROTECTED] wrote: Is there a way to add a virtual directory to the IIS through CF code or Java? Yes. However, doing this involves a

Re: CF-based photo sharing app?

2006-06-14 Thread Rick Root
Matt Williams wrote: And you can't just use flickr because... Because I am a programmer! I like to build stuff and host things on my own sites, with my own domain names. Plus, I can't put google ads on Flickr =) Rick ~|

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Paul Ihrig
yeh... but there like 295/night if i stay off site it will most likley be a cheaper place. still may just bring a tent sleeping bag set up by the pool. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243499

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Ray Champagne
No, it's not. Tell the ppl at the Mariott CS that you want to stay at the overflow hotel at the conference price ($170 p/night), using the code CFCCFCA (or CFU). See this page, under overflow hotel http://cfunited.com/travel.cfm I'm staying there. See you at the bar! = ) Paul Ihrig wrote:

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Rick Root
I would consider sharing my room but I think I got a king bed =) Please refrain from commenting, we don't need to go down that road! Rick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243501 Archives:

Re: CF-based photo sharing app?

2006-06-14 Thread Tony
sure you can... look at how steven erat does it on his blog... and im pretty sure there are some google ads there somewhere! http://www.talkingtree.com/blog/index.cfm?mode=catcatid=25A93633-45A6-2844-7C6221AAB295E022 tw On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: Matt Williams wrote: And

Re: Sorta OT: Form Spam Bots

2006-06-14 Thread Rick Root
Les Mizzell wrote: These little buggers drive me CRAZY! They visit your guest books and other forms and put in the most unimaginable porn links and crap ... on bobguiney.com I have always approved guestbook entries but I still hated dealing with tons and tons of obnoxious spambot entries on a

Re: CF-based photo sharing app?

2006-06-14 Thread Rick Root
Tony wrote: sure you can... look at how steven erat does it on his blog... and im pretty sure there are some google ads there somewhere! http://www.talkingtree.com/blog/index.cfm?mode=catcatid=25A93633-45A6-2844-7C6221AAB295E022 That doesn't really count, he's just linking to photos stored

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Paul Ihrig
they told me the cut off date was the 14th of may i think. and that price wasnt honored, but i will try again real quick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243505 Archives:

Re: CF-based photo sharing app?

2006-06-14 Thread Tony
yeah, but he can display images from flickr whilst making google ad money. thats better than nothin' tw On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: Tony wrote: sure you can... look at how steven erat does it on his blog... and im pretty sure there are some google ads there somewhere!

cfUNITED-talk?

2006-06-14 Thread Rick Root
It'd be kind of cool to have a cfunited-talk list here Michael, suitable for all the CFUNITED attendees to discuss stuff related to the conference. cf, non-cf, etc. Rick ~| Message:

Re: OT: CF-United : Rooms at the north

2006-06-14 Thread Paul Ihrig
yeh the blocks of rooms reserved under the good price is full cheapest they can do with out taking over some one Else's reservation is 279.00 (USD) per night but, will still hold out a day or two more to see what happens. On 6/14/06, Paul Ihrig [EMAIL PROTECTED] wrote: they told me the cut

Re: CF-based photo sharing app?

2006-06-14 Thread Jason Radosevich
Why not just by the Alagad image tool, which you can upload photos and do the same image manipulation that flickr does? On Wed, 14 Jun 2006 13:23:39 -0400, Rick Root wrote Tony wrote: sure you can... look at how steven erat does it on his blog... and im pretty sure there are some

Re: cfUNITED-talk?

2006-06-14 Thread Casey Dougall
Why not use the message board. http://www.cfunited.com/fusetalk/forum/ Casey On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: It'd be kind of cool to have a cfunited-talk list here Michael, suitable for all the CFUNITED attendees to discuss stuff related to the conference. cf, non-cf, etc.

Re: cfUNITED-talk?

2006-06-14 Thread Charlie Griefer
There is a forum up on the cfunited site (http://www.cfunited.com/fusetalk/forum), but yeah, the HoF lists probably get much more traffic. Depending on how much of a hassle it is to set up a new list, might not be a bad thing. Altho...cf-community would probably be an appropriate place for

Re: cfUNITED-talk?

2006-06-14 Thread Ray Champagne
Because it's not mail-based, and there are strangers lurking over there. Scary. :) Casey Dougall wrote: Why not use the message board. http://www.cfunited.com/fusetalk/forum/ Casey On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: It'd be kind of cool to have a cfunited-talk list here

Re: CF-based photo sharing app?

2006-06-14 Thread Rick Root
Jason Radosevich wrote: Why not just by the Alagad image tool, which you can upload photos and do the same image manipulation that flickr does? Why would I buy Alagad when I can do the basic image resizing and stuff with imageCFC? Besides, yes I can do all that stuff... but I want a system

Re: cfUNITED-talk?

2006-06-14 Thread Paul Ihrig
cf-comunity is a good place for it. or here, its all good... cant wait to hear the presentations! though the intro to cfc over laps another one i have scheduled by 30 minutes! o, well On 6/14/06, Ray Champagne [EMAIL PROTECTED] wrote: Because it's not mail-based, and there are strangers

Re: Sorta OT: Form Spam Bots

2006-06-14 Thread Les Mizzell
on bobguiney.com I have always approved guestbook entries but I still hated dealing with tons and tons of obnoxious spambot entries on a daily basis. Same here - all guestbook entries *must* be approved before going live. The form bots are blocked from the database completely, so they're

RE: CF-based photo sharing app?

2006-06-14 Thread Andy Matthews
Rick actually coded his own image CFC. But that's not the point. Flickr is more than just the ability to upload and manipulate photos. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

Re: cfUNITED-talk?

2006-06-14 Thread Tony
at least you have yours picked out... i fgured i would just where my friends were going, and then hit the speakers i really wanted to hit, if it all worked out, if not, fck it, up to the room and xbox :) On 6/14/06, Paul Ihrig [EMAIL PROTECTED] wrote: cf-comunity is a good place for it. or

application variables

2006-06-14 Thread Daniel Kessler
I'm doing something obviously wrong but can't seem to see it. In my Application.cfm, I declare a variable and in a page, I use it. But it's not showing up. The page at first displayed the information, but it's not doing so now. I have a cfapplication tag in the Application file and it

Re: cfUNITED-talk?

2006-06-14 Thread Mark Drew
There are presentations?!! Gawd, I thought I was going on a four day drinking binge... wow... I can have the best of both worlds! I shall see you all over there... now.. where's the bar? MD On 6/14/06, Paul Ihrig [EMAIL PROTECTED] wrote: cf-comunity is a good place for it. or here, its all

Re: Sorta OT: Form Spam Bots

2006-06-14 Thread Michael Dinowitz
There is a simple solution to this. Flash Forms. These little buggers drive me CRAZY! They visit your guest books and other forms and put in the most unimaginable porn links and crap ... ~| Message:

Re: cfUNITED-talk?

2006-06-14 Thread Michael Dinowitz
CF-Community or CF-OT would be the best places but I'll put up a CFUnited list tonight. There is a forum up on the cfunited site (http://www.cfunited.com/fusetalk/forum), but yeah, the HoF lists probably get much more traffic. Depending on how much of a hassle it is to set up a new list, might

Re: CF-based photo sharing app?

2006-06-14 Thread mac jordan
On 6/14/06, Rick Root [EMAIL PROTECTED] wrote: Besides, yes I can do all that stuff... but I want a system that will allow multiple users to submit photos to a single photo gallery. Essentially, everyone comes in and submits their own photos relating to say Game 5 of the Stanley Cup Finals,

Re: cfUNITED-talk?

2006-06-14 Thread Ray Champagne
When you get there, come find me. I have an amazing ability to sniff out the nearest one, within 1 foot. Some say it's a gift, some (wife) say its a burden. Either way, I have it. :) Mark Drew wrote: There are presentations?!! Gawd, I thought I was going on a four day drinking binge...

Re: cfUNITED-talk?

2006-06-14 Thread Paul Ihrig
maybe some one needs to build a quick googlemap xml deal with all of them listed draft specials. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243524 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4

Re: cfUNITED-talk?

2006-06-14 Thread Jeff Small
if not, fck it, up to the room and xbox :) Whoa whoa whoa...people are bringing xboxes? Are we talking Oldschool, or 360s? I know of one other person on the list who's an Xbox360'er, and I'd totally be up for a night of LAN play. Some of us old married folks don't need to be out in DC

RE: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Andy Matthews
Oh...that's easy enough. Thanks. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Wednesday,

RE: application variables

2006-06-14 Thread Andy Matthews
Try changing the name of your App. It's most likely caching the application variables as set up in the initial load of your app.cfm file. I've had that happen to me before and changing the app name did it for me. !//-- andy matthews web developer certified advanced coldfusion

RE: application variables

2006-06-14 Thread Ben Nadel
Have you tried putting [] around the value... It might be there, just empty?? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 x 14 212.691.3477 fax www.nylontechnology.com Some people call me the space cowboy. Some

Re: Itext Checkbox

2006-06-14 Thread Robert Everland III
I found the answer, if you do a AcroFields.getAppearanceStates(fieldName) it will return what value it expects. So the correct answer is: setField(IMACHECKBOX, Yes); Bob ~| Message:

  1   2   >