Not really so easy to compare ColdFusion as the scripting essence of ColdFusion has not changed that much as far as how you code/use it. There is a radical...
... Wait ! I have more :-) ! -- Tom Chiverton Helping to appropriately reinvent transparent systems **************************************************** This...
I am sure I can sit down and write a cf script to search for the images in any of the cfm files, but was wondering if there is anything already in existence? I...
Hi, I was wondering if anybody can recommend any good MX7.0 training companies / consultants in Scotland? I've been asked to look around for suggestions on...
hi greg, just noticed that you said you were using a mysql-connector-java-3.1.12. i dont know if it makes any difference but i am using dreamweaver and have...
This is just how it works and why you shouldn't use auto return. If the user does not return from paypal to your site for any reason then u have no record of...
Yes I ran into the exact same thing. Very irritating! I use both IPN AND PDT. The IPN will take care of the background work anyway when the auto return thing...
... Buy ? Never. I had Norton because my bank gave it away for free, but it got soooo bloated and slow, and then they wanted money of me, so I moved to AVG. As...
The beginnings of such an app can be found at http://www.steveeray.com/webdesign/registration.cfm. It would take modifications to make it do what you need...
XOR is great for adding things like "include / exclude" to an argument. Here's a real world example: I have a function that strips out non-numeric data from...
Did you know PayPal bought Payflow Pro? Their is now an easy solution that will integrate right into your current application. I have posted a couple things...
Thanks Brad - I think we certainly can do a better job on the CF product page of informing customers that hosting is an option. We do have a page for CF...
Can any point in the direction of documentation for: coldfusion.runtime.java.JavaProxy. Or is this one of those undocumented, potentially unsupported features ...
... One other way would be to get a list of files that have been called from the images directory in your web server logs. There is a command line utility...
... Use brackets to split the where clause up: WHERE id_field=id and ( a=1 or b=2 or c=3 ) -- Tom Chiverton Helping to competently compete visionary models ...
That seems to have worked. I did it with a 1=1 because there might not be anything in the brackets, but I dunno if it's needed. Here's what I ended up with...
The only problem I see is that if you end up with only an OR after the 1=1, the OR becomes essentially meaningless. 1=1 is always true, so all rows with the...
Then if it's only an AND after the 1=0, it always fails because 1=0 evaluates as false, and the query will always return NO rows. Both scenarios are possible...
so he should use 1=0 Mingo. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80...
I am in the early phases (and still considering) starting an Open Source ColdFusion video tutorial site. The site will have training videos for ColdFusion (how...
Super ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, ...
... There's an unprotected remotely controllable variable there, what happens if I call you app with (say): http://host.domain/file.cfm?and_or_1=;drop all -- ...
Dammit, when are my good tunes going to infuse the group? ... MD ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the...
... That would exclude the ANDs...but you could do something like... (<cfif url.and_or_1 IS "AND">1=1<cfelse>1=0</cfif> <cfif url.meeting_name neq ""> ...
http://adobechats.adobe.acrobat.com/p40259141/ for the recording ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the...
Tim... Are you guys using good SEO practices for your site? Ideally, if someone searched for coldfusion, or coldfusion hosting Adobe should come up on top! ...
Thanks for the info, and I hope I wasn't prying too much by asking. I was very curious because I'm setting up a site for a customer that will allow his renters...
I have a search that builds a query. It only returns records on the users ID, so I want it to always require that ID be in the record. Then I build a few AND...