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

2014-07-22 Thread Claude Schnéegans
maybe he's a bot? If he is, sure he didn't programed it himself. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

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

2014-07-22 Thread Mark A Kruger
I hope the art of loving cats and dogs is painting or crafts or something :D -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: Tuesday, July 22, 2014 8:49 AM To:

Re: ColdFusion and authorize.net

2014-07-22 Thread Rob Voyle
Hi Eric I use coldfusion and authorize.net and I am big into simple Take a look at: https://www.appreciativeway.com/secure/paymentPortal.cfm If that is what you want I could help you off line. Biggest challenge is maintaining the PCI compliance to which end you may want to use their forms.

CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
We have a CF app that uses a CF_GRID with some filters to allow limiting the data retrieved. After moving the app from a host running CF10 to another host running CF11, the filters stopped working even though the other grid functions did not - grid still display data correctly and clicking column

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
where 0 = 0 looks like its obsolete in that query, in other words it shouldn't be needed if you have no if statements there. As you said it works on ColdFusion 10, what would happen if you removed the 0 = 0 or replaced it with 1 = 1? Other than that I really can't see any other issue with it.

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread John M Bliss
Here's the official replacement for cfgrid. Double-quotes because there're many way to replace cfgrid...this is just one suggestion. https://github.com/cfjedimaster/ColdFusion-UI-the-Right-Way/blob/master/chapters/cfgrid/index.md On Tue, Jul 22, 2014 at 1:34 PM, Andrew Scott

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 1:34 PM, Andrew Scott andr...@andyscott.id.au wrote: where 0 = 0 looks like its obsolete in that query, in other words it shouldn't be needed if you have no if statements there. As you said it works on ColdFusion 10, what would happen if you removed the 0 = 0 or

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 1:38 PM, John M Bliss bliss.j...@gmail.com wrote: Here's the official replacement for cfgrid. Double-quotes because there're many way to replace cfgrid...this is just one suggestion.

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
On Tue, Jul 22, 2014 at 1:08 PM, Stephen Hait stephenh...@gmail.com wrote: Does anyone know why the WHERE clauses in the query appear to be ignored when running the app with CF11 but work correctly with CF10? Or does anyone have a suggestion of how to best debug this? I can't seem to figure

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 2:01 PM, Maureen mamamaur...@gmail.com wrote: On Tue, Jul 22, 2014 at 1:08 PM, Stephen Hait stephenh...@gmail.com wrote: Or does anyone have a suggestion of how to best debug this? I can't seem to figure out how to view the contents of the 3 arguments used in the

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
You could check your Chrome developer tools, to then see what ColdFusion via its Ajax / JS stuff is actually sending across as parameters as well. This would help to see what is actually being passed. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Spelling Correction

2014-07-22 Thread Byron Mann
Working on a search feature on CF8 with Verity. I see that it returns suggestions for alternate searches. We were hoping to use this for a feature similar to Google's Did you mean, when you fat finger a word. However, the suggestions returned from Verity are pretty horrible and useless. Has

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 3:04 PM, Andrew Scott andr...@andyscott.id.au wrote: You could check your Chrome developer tools, to then see what ColdFusion via its Ajax / JS stuff is actually sending across as parameters as well. This would help to see what is actually being passed. Andrew,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
Stephen, Is this what you're experiencing? https://forums.adobe.com/thread/1490328 Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 5:38 AM, Stephen Hait stephenh...@gmail.com wrote: On Tue, Jul

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:10 PM, Andrew Scott andr...@andyscott.id.au wrote: Stephen, Is this what you're experiencing? https://forums.adobe.com/thread/1490328 Andrew, I don't think this is the same problem but it might be related. I had not noticed any javascript errors. Just to test,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
I know some things have changed with scope over the last few versions but not sure what changed when. Local scope for functions was added at some point. Make sure you are scoping all variables and declaring any that need to be with var. On Tue, Jul 22, 2014 at 2:53 PM, Stephen Hait

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:40 PM, Maureen mamamaur...@gmail.com wrote: I know some things have changed with scope over the last few versions but not sure what changed when. Local scope for functions was added at some point. Make sure you are scoping all variables and declaring any that need

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
I didn't see scopes on the variables in your return statement. cfreturn queryconvertforgrid(pilots, page, pagesize) / Not sure if that matters, but I would scope them just in case. On Tue, Jul 22, 2014 at 4:47 PM, Stephen Hait stephenh...@gmail.com wrote: On Tue, Jul 22, 2014 at 4:40 PM,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
Not sure what you're thinking their Maureen but what he has looks fine, he has nothing that needs var scoping in the function. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 6:51 AM, Maureen

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:51 PM, Maureen mamamaur...@gmail.com wrote: I didn't see scopes on the variables in your return statement. cfreturn queryconvertforgrid(pilots, page, pagesize) / Not sure if that matters, but I would scope them just in case. I'm not sure how to correctly scope

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
It will be in the variables scope for the query, but as this is an issue with the Ajax sending rather than receiving I doubt that is the issue. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 7:02 AM,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 5:06 PM, Andrew Scott andr...@andyscott.id.au wrote: It will be in the variables scope for the query, but as this is an issue with the Ajax sending rather than receiving I doubt that is the issue. Thanks, Andrew - I confused var variables. And none of that scoping

Re: Spelling Correction

2014-07-22 Thread .jonah
Maybe you could pass your input through something like http://cfspell.riaforge.org/ On 7/22/14, 12:37 PM, Byron Mann wrote: Working on a search feature on CF8 with Verity. I see that it returns suggestions for alternate searches. We were hoping to use this for a feature similar to Google's

RE: Regex help maybe

2014-07-22 Thread UXB
Thanks to everyone. I managed to come up with one similar to Byron's example and then tweaked it further (No spaces) so I could use it in JS on the client and CF on the server. I knew I could do it in 2 or three steps but wanted one step so I could hand off the regex to the client for

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

2014-07-22 Thread Rakesh Prasad
Hi, We have excellent experience in Coldfusion based website and web application development as mentioned below, Also we have a team of well experienced developers in Coldfusion technology. Experience : around 15 years Projects: 200 web application and website. We can provide help you to