ColdFusion and authorize.net

2014-07-21 Thread Eric Bourland
ColdFusion 9 MS SQL Server 2012 authorize.net API Hi. I need help with a problem, and am hoping someone here can guide me on the right path. In brief: I need to populate an authorize.net payment page using information from a simple form that is processed in coldfusion. Details: I need to do

best way to invoke cfc

2014-07-21 Thread Matthew Smith
I was using cfinvoke but someone here said it was better to do this: cfset variables.temp = cfcs.qry How do I set the method and pass parameters? Thanks. -- Regards, chedder is bedder ~| Order the Adobe Coldfusion Anthology

Re: need a host

2014-07-21 Thread Eric Bourland
Why not Vivio? They have been professional, competent, proactive with my CF9 server. not newtek, no hostmedia.co.uk(no mssql), no viviotek. Any suggestions? Need cf 9 and ms sql. Thanks. -- Regards, chedder is bedder ~|

RE: need a host

2014-07-21 Thread Robert Harrison
These guys have been great: http://www.edgewebhosting.net/ Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022  

Re: best way to invoke cfc

2014-07-21 Thread Andrew Scott
easy RTFM http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e0e.html Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Tue, Jul 22, 2014 at 5:14 AM, Matthew Smith

Excel Problem...

2014-07-21 Thread Les Mizzell
I've got an app that's been generating Excel without any problems for a number of years (pre cfspreadsheet tags) Hosting recently migrated the site to a new server, and suddenly the client can no longer open the Excel files on their end. They're using Excel 2010, and have been before the

Regex help maybe

2014-07-21 Thread UXB
I am terrible at Regex's. I looked all over and am going blind. Is there anyone here that can shorted my search? I need one to test true for: 10 to 20 Characters in length 3 numeric characters in any order 1 special character from basic list ~!@#$%^*()_+ Any help is appreciated. Dennis

RE: Regex help maybe

2014-07-21 Thread Duane Boudreau
Can't really help you with the regex, but regexlib.com might help you with future ones. I use it whenever I need a regular expressions -Original Message- From: UXB [mailto:denn...@uxbinternet.com] Sent: Monday, July 21, 2014 6:30 PM To: cf-talk Subject: Regex help maybe I am terrible

Re: ColdFusion and authorize.net

2014-07-21 Thread .jonah
Hi Eric. It sounds like you're a bit off on what you're looking for vs. what you're trying to implement. From the description of the process you want it sounds like you're looking for Simple Checkout or Server Integration Method while the code below is for Advanced Integration Method. You

Re: Regex help maybe

2014-07-21 Thread Michael Dinowitz
X{10,20} means that X should exist at least 10 times but no more than 20 times [0-9] means any single number from 0 till 9 [0-9]{3} means any 3 numbers of 0-9 one after the other [~!@#$%^*()_+] means a single character from the set of characters defined between the brackets Now do you want 3

Re: best way to invoke cfc

2014-07-21 Thread Matthew Smith
This uses the cfinvoke tag. I am looking to use cfset variables.temp On Mon, Jul 21, 2014 at 2:20 PM, Andrew Scott andr...@andyscott.id.au wrote: easy RTFM http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e0e.html Regards, Andrew Scott

Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread Matthew Smith
Could not find the ColdFusion component or interface site_theartoflovingcatsanddogs_com.cfcs.qrystodatabase. Ensure that the name is correct and that the component or interface exists. The error occurred in *D:/home/fatcate-juice.com/wwwroot/cfcs/paypal.cfc

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread Matt Quackenbush
I am trying really, really, really, really hard to not be rude here, but there's no way you can have 15 years of CF experience as you've claimed in other threads. Each thread you've posted recently has displayed an absolute dearth of information with which we can even attempt to help you, but

Re: Regex help maybe

2014-07-21 Thread Claude Schnéegans
I need one to test true for: I doubt you can do this with only one test, but using 3 tests is easy: 10 to 20 Characters in length 3 numeric characters in any order 1 special character from basic list ~!@#$%^*()_+ This should do it: CFSET stringOK = (len(form.text) GTE 20 AND len(form.text)

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread M.A. Kruger
Matt Q and everyone. I think it might be time to cut matt loose I think he's mostly pulling our chain. he certainly doesn't engage with the list in any way that makes me think he's trying. I'm perfectly fine helping beginners but this is a bit much. perhaps we should ask Mike D to remove

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread Russ Michaels
I think I would have to agree. He is just posting every single error here and expecting everyone to just fix his code for him On Tue, Jul 22, 2014 at 1:32 AM, M.A. Kruger mkru...@cfwebtools.com wrote: Matt Q and everyone. I think it might be time to cut matt loose I think he's mostly

IIS authentication with CF

2014-07-21 Thread Ben Conner
Hi, I have a server with CF 9 and several CF sites running on it. The CFIDE install admin UI points to one of the sites, and the other sites have virtual directories pointing to it. I decided to lock down the admin section a week or so ago. Appeared to work fine. Could still bring up all

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread M.A. Kruger
maybe he's a bot? he has no follow through. Sent from my iPhone On Jul 21, 2014, at 7:37 PM, Russ Michaels r...@michaels.me.uk wrote: I think I would have to agree. He is just posting every single error here and expecting everyone to just fix his code for him On Tue, Jul 22, 2014

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread Russ Michaels
a bot ? your just being too kind now :-) On Tue, Jul 22, 2014 at 1:52 AM, M.A. Kruger mkru...@cfwebtools.com wrote: maybe he's a bot? he has no follow through. Sent from my iPhone On Jul 21, 2014, at 7:37 PM, Russ Michaels r...@michaels.me.uk wrote: I think I would have to agree.

Re: IIS authentication with CF

2014-07-21 Thread Russ Michaels
it will be trying to load some JS or CSS probably. just view the source and trying clicking a few of those external links and see what happens On Tue, Jul 22, 2014 at 1:40 AM, Ben Conner b...@webworldinc.com wrote: Hi, I have a server with CF 9 and several CF sites running on it. The

Re: Having trouble with cfcI have removed all references to site_theartoflovingcatsanddogs_com and deleted the template cache. No luck. Any help?

2014-07-21 Thread Matthew Smith
What is the issue? I think you are being a bit harsh. I try to get this done on my own. I don't think it is your call to have someone remove from the list. On Mon, Jul 21, 2014 at 7:32 PM, M.A. Kruger mkru...@cfwebtools.com wrote: Matt Q and everyone. I think it might be time to cut matt

need help with two sites - willing to pay $45/hour

2014-07-21 Thread Matthew Smith
I have two sites with minor issues I need help with. http://www.theartoflovingcatsanddogs.com http://www.fatcate-juice.com The first is an image reference issue and the second has to do with a cfc issue. Please let me know if anyone is interested. Thanks. -- Regards, chedder is bedder

Re: Regex help maybe

2014-07-21 Thread Byron Mann
This would do one special, 3 consecutive numbers: ajfds123jdfs# ^(?=.*\d{3})(?=.*[\~\!\@\#\$\%\^\\*\(\)\_\+]+).{10,20}$ This would do one special, 3 numbers any position: a#bcdef2k3#4^ ^(?=.*\d.*\d.*\d)(?=.*[\~\!\@\#\$\%\^\\*\(\)\_\+]+).{10,20}$ And if your restricting to just numbers and the

Re: need help with two sites - willing to pay $45/hour

2014-07-21 Thread Mike K
I can help you. I've been building coldfusion sites for about 15 years now. I have 39 sites I look after, some of my own, and all coldfusion based. I have some time available now to take on new projects. Let me know if you are interested. Cheers Mike Kear Windsor, NSW, Australia Adobe

Re: best way to invoke cfc

2014-07-21 Thread Andrew Scott
You must be joking right!! What your asking is the most basic features of ColdFusion that IS well documented in the Adobe ColdFusion documentation, if you're too lazy to go and read that to get such a basic answer, that's not our problem. Regards, Andrew Scott WebSite:

Re: best way to invoke cfc

2014-07-21 Thread Andrew Scott
But I will give you a hint, read up on CreateObject() and if your on a supported release then you could also look at the import and new operand and as your are already familiar with cfinvoke, maybe reading what other attributes and features it offers couldn't hurt either. But seriously, these