Re: ajax cfc not working for Access DB -- odd stuff

2009-08-20 Thread Dominic Watson
If the cfc is being hit, and with the right data, you can absolutely rule out the cfajaxproxy tag. Can we clarify that the data being returned from the method is the problem? Try posting a form directly to the cfc method, e.g. form method=post action=pathtocfc.cfc?method=fubar!--- I think that's

Re: ajax cfc not working for Access DB -- odd stuff

2009-08-20 Thread Dominic Watson
Of course ;) 2009/8/20 Emmit Larson emmit.lar...@gmail.com 't ever do that. Shirley, you jest? Kind Regards, Emmit ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

Re: returning all table records ColdBox ColdSpring via an object?

2009-08-20 Thread Glyn Jackson
@ Judah McAuley thanks very detailed response. its just a simple record set to display. So what your saying makes sense. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: Replacing characters in a string

2009-08-20 Thread Peter Boughton
This wouldn't match anchor tags with upper case, but could be changed like so: /?[a|A][^]* You've got two syntaxes mixed up there. (?:a|A) or [aA] is what you want - no bar needed for square brackets. And I think it might be best to use a lazy match: /?[a|A][^]+ That's not a lazy

Re: Replacing characters in a string

2009-08-20 Thread Jason Fisher
Good call on the parens. I had those in the original since I had ripped from code that did use the /1 element later on. Also, you could use #reReplaceNoCase()# as an alternative to [aA] ... but I like the [aA] better, for no particular reason.

Re: ajax cfc not working for Access DB -- odd stuff

2009-08-20 Thread Rick Root
On Wed, Aug 19, 2009 at 7:13 PM, Don Ldo...@yahoo.com wrote: Sorry, Dominic, I wasn't clear about the browser, the inline editing feature is IE specific, that is, Firefox has a hell time with it, hence, it's IE only, yes, I like Firefox's firebug and find it very helpful but not for this

What ColdFusion Instance Memory values to use...

2009-08-20 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all, It has been a while... I have a question about multiple instances and memory allocation... I have a box with multiple instances. Each one has a different amount of ram set aside for it in jvm.config files. I have three setups: JVM-BIG.CONFIG has: # Arguments to VM java.args=-server

Re: returning all table records ColdBox ColdSpring via an object?

2009-08-20 Thread Judah McAuley
On Thu, Aug 20, 2009 at 3:52 AM, Glyn Jacksonglyn.jack...@newebia.co.uk wrote: @ Judah McAuley thanks very detailed response. its just a simple record set to display. So what your saying makes sense. Of course. It has taken me some time to figure it out myself and without the help of

How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Philip Kaplan
I'm allowing people to FTP-upload into one of my web server directories, but I don't want them to be able to upload and run cfm (or asp, etc) scripts. I right-clicked on the directory in IIS and changed execute permissions to none, but it seems the cfm files in that directory are still running.

RE: Inserting NULL between characers using CFFILE

2009-08-20 Thread Leigh
I had got it working in the meantime by doing this: Jason, I give you an A for a creative work-around ;) -Leigh ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Agha Mehdi
You can add application.cfm or Application.cfc to the folder and cfabort any request. that will ensure that no cfm file is executed On Thu, Aug 20, 2009 at 11:21 AM, Philip Kaplan pkap...@gmail.com wrote: I'm allowing people to FTP-upload into one of my web server directories, but I don't

(ot) jQueryGrid

2009-08-20 Thread Rick Root
So I'm using this jquerygrid plugin () and it's working pretty well. I'm trying to use the inline edit feature to edit a couple fields in the row using checkboxes... the values in the DB are 1 and 0. So in my colModel, I have this: {name:'ISOWNER',index:'ISOWNER', width:50,

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Philip Kaplan
That's a clever idea but I would preferably like to give users delete permission on that directory, in which case someone could just delete the application.cfm file. On Thu, Aug 20, 2009 at 11:40 AM, Agha Mehdi aghaime...@gmail.com wrote: You can add application.cfm or Application.cfc to the

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread sslone
Phil- Your FTP folder should be below your web root - I believe anything in the web path will be served via the browser. I don't think you can turn off processing for a directory in the web path. If you are using the content of the FTP as web content, you can use an upload function through

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Ian Skinner
ssl...@rubbergumball.net wrote: Phil- Your FTP folder should be below your web root - I beleive that quote should be above or outside or possible not be below. I.E. Yes, your FTP folder should have NO relation to your web root folder. Only after you have scrutinized ANYTHING uploaded

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Agha Mehdi
There are multiple ways you can do it depending on your setup. 1. Have your ftp folder below the web root 2. Add cfabort to a directory above the ftp folder in the web root so that it stops any processing on any sub folders. 3. uncheck all options (Read, Write etc) under Directory for that folder

Re: ajax cfc not working for Access DB -- odd stuff

2009-08-20 Thread Don L
If the cfc is being hit, and with the right data, you can absolutely rule out the cfajaxproxy tag. Can we clarify that the data being returned from the method is the problem? Try posting a form directly to the cfc method, e.g. form method=post action=pathtocfc.cfc?method=fubar!--- I think that's

Outputting implicit arrays?

2009-08-20 Thread Tony Bentley
I thought this would be something fun to discuss. How do you output implicit arrays? here is the array (we will use a navigation as an example): navigation = [ {name=home,href=index.cfm,class=nav}, {name=contact,href=contact.cfm,class=nav} ];

Re: Outputting implicit arrays?

2009-08-20 Thread Barney Boisvert
The same was as non-literal arrays? CFLOOP, CFDUMP, serializeJson, there are lots of ways. I'm not sure what you want to discuss? On Thu, Aug 20, 2009 at 1:30 PM, Tony Bentleyt...@tonybentley.com wrote: I thought this would be something fun to discuss. How do you output implicit arrays?

Re: Outputting implicit arrays?

2009-08-20 Thread Rick Root
On Thu, Aug 20, 2009 at 4:30 PM, Tony Bentleyt...@tonybentley.com wrote: I thought this would be something fun to discuss. How do you output implicit arrays? Once you create the array, there is no difference between an implicitly created array and an array created via ArrayNew() So... you

Re: How do I remove execute permissions from a directory in IIS?

2009-08-20 Thread Dave Watts
I'm allowing people to FTP-upload into one of my web server directories, but I don't want them to be able to upload and run cfm (or asp, etc) scripts. I right-clicked on the directory in IIS and changed execute permissions to none, but it seems the cfm files in that directory are still