CF7.1 CFHTTP to Amazon S3: cfhttp.filecontent = 'Connection Failure'?

2010-07-20 Thread Ed Griffiths
hi, hope someone has some insight into this! we're interfacing a legacy app written in CF7.1 with Amazon S3. CF7.1 is configured in J2EE mode as a standalone environment, using JDK 1.5.0_06 as the JVM. we're using CFHTTP, through Barney Boisvert's Amazon S3 CFC rewritten for CF7, to connect

Re: Access Data Source Problem with ColdFusion 9 on 64 bit Windows 7

2010-07-20 Thread girum...@yahoo.com girum...@yahoo.com
I have a post on this... http://www.coldfusionmuse.com/index.cfm/2009/4/7/MS.Access.Proxy Note the comments - there is an acceptable 64bit commercial driver that does not cost an arm and a leg. -mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com

Re: Access Data Source Problem with ColdFusion 9 on 64 bit Windows 7

2010-07-20 Thread girum...@yahoo.com girum...@yahoo.com
Mark, I saw the JDBC driver from http://www.hxtt.com and i am going to download and try. Secondly what about ColdFusion 9 on windows 7 connectivity to MS Access 2010? Any readily available drivers or do we need to buy? Any thoughts on this? Appreciate your help Girumala

CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Will Blake
Hello all, I have a select menu that I need to be dynamically populated with the results of a db query. I am using jQuery/ajax to pass a value to search for in the database. This all seems to work fine except what is returned is a WDDX packet and I cannot figure out how to take the data

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread James Holmes
WDDX can't be turned into variables with eval() - that's JSON you're thinking of. Why are using WDDX? Can you either use the JSON returntype from a CFC or, if you are on an old version of CF, build a JSON return? -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 20

Export CF app as HTML files to save on cd

2010-07-20 Thread Matthew VanderMeer
I have built a large CF application that tracks many different things about the center that I work for. One example is all of the publications that the scientists in the center have written. Our center is undergoing and external review and as a part of that review they would like lists of

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread John M Bliss
I am using jQuery/ajax to pass a value to search for in the database. This all seems to work fine except what is returned is a WDDX packet Do you have control of code that currently returns WDDX packet? If so, why not edit it to use cfwddx action = wddx2js SEE

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Shannon Rhodes
It's been a long time since I've done this so this may not be useful, but isn't the returned packet a Javascript array? At least it was when I used to use cfwddx, so it was just a matter of normal array manipulation. ~|

Re: Export CF app as HTML files to save on cd

2010-07-20 Thread John M Bliss
I've used this very successfully in the past: http://softbytelabs.com/us/bw/index.html On Tue, Jul 20, 2010 at 8:08 AM, Matthew VanderMeer mlvan...@uwaterloo.cawrote: I have built a large CF application that tracks many different things about the center that I work for. One example is all

Re: Export CF app as HTML files to save on cd

2010-07-20 Thread Mark Mandel
If you're on a linux platform, you can always cfexecute a wget to mirror a website to HTML very easily. Mark On Tue, Jul 20, 2010 at 11:08 PM, Matthew VanderMeer mlvan...@uwaterloo.cawrote: I have built a large CF application that tracks many different things about the center that I work

Re: Export CF app as HTML files to save on cd

2010-07-20 Thread Andrew Clarke
Greetings, local Waterloo (I presume) ColdFusion user! Check out http://www.httrack.com . I haven't used it but site ripper is probably the Google term you're looking for. - Andrew. On 2010-07-20, at 09:08, Matthew VanderMeer wrote: I have built a large CF application that tracks many

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Will Blake
It's been a long time since I've done this so this may not be useful, but isn't the returned packet a Javascript array? At least it was when I used to use cfwddx, so it was just a matter of normal array manipulation. Thanks for the response! You would think so, but from my experience I

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread James Holmes
No, WDDX is XML, not Javascript; it always has been. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 20 July 2010 21:13, Shannon Rhodes shan...@rhodesedge.com wrote: It's been a long time since I've done this so this may not be useful, but isn't the returned packet a

RE: Export CF app as HTML files to save on cd

2010-07-20 Thread Andy Matthews
Another SUPER easy way to do this is to use HTTrack: http://www.httrack.com/ It spiders a website and creates a local copy. Lots of config options too. andy -Original Message- From: Mark Mandel [mailto:mark.man...@gmail.com] Sent: Tuesday, July 20, 2010 8:23 AM To: cf-talk Subject:

Re: send content to head and body in single call module

2010-07-20 Thread Brent Nicholas
Dave and Dominic, these ideas worked very well. Thanks for your time. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread John M Bliss
Right...and cfwddx action = wddx2js should convert that WDDX to a WddxRecordset javascript object. SEE http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_u-z_2.html#2682044 On Tue, Jul 20, 2010 at 8:40 AM, James Holmes james.hol...@gmail.comwrote: No, WDDX is XML, not

RE: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Andy Matthews
Make sure to check the casing of your returned variables. If you're using dot notation in any of your CF code, ColdFusion will force upper case on keys that it returns. andy -Original Message- From: Will Blake [mailto:willbl...@printelect.com] Sent: Tuesday, July 20, 2010 8:33 AM To:

Extracting part of a string

2010-07-20 Thread Rick Sanders
Hey All, What I need is simple, but I'm struggling with how to do it. I want to extract everything between [y] and [/y] example: [y] http://www.youtube.com/watch?v=uBV00ZGkRJ0[/y] I just want to extract the URL between the opening and closing y tags. Thanks! Rick Sanders

Re: Extracting part of a string

2010-07-20 Thread Shannon Rhodes
Does this help? http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:61637 ~| Order the Adobe Coldfusion Anthology now!

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Cameron Childress
On Tue, Jul 20, 2010 at 9:40 AM, James Holmes james.hol...@gmail.com wrote: No, WDDX is XML, not Javascript; it always has been. The WDDX SDK actually shipped with a fairly robust (for the time) set of JS libraries for manipulating WDDX data via JavaScript. Looks like the official home(s) for

Re: Extracting part of a string

2010-07-20 Thread Claude Schnéegans
What I need is simple Try a simple solution : CF_REextract : http://www.cftagstore.com/tags/cfreextract.cfm ~| Order the Adobe Coldfusion Anthology now!

RE: Extracting part of a string

2010-07-20 Thread Andy Matthews
Assuming there's nothing more to your search, then this regex would do you fine: \[y\](.+)\[/y\] -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Tuesday, July 20, 2010 9:23 AM To: cf-talk Subject: Extracting part of a string Hey All, What I need is simple,

Re: Export CF app as HTML files to save on cd

2010-07-20 Thread Scott Stewart
this used to allow you to run CF from a CD, I don't know if it still does http://www.smithproject.org/ On Tue, Jul 20, 2010 at 9:08 AM, Matthew VanderMeer mlvan...@uwaterloo.ca wrote: I have built a large CF application that tracks many different things about the center that I work for.  

Re: Access Data Source Problem with ColdFusion 9 on 64 bit Windows 7

2010-07-20 Thread John Pullam
I am successfully using the HXTT driver on a 64 bit platform for that purpose. The only glitch I have run into is that the queries were all case sensitive. They do have a parameter you can set to turn that off. ~| Order the

Re: Export CF app as HTML files to save on cd

2010-07-20 Thread Gerald Guido
+1 for httrack. It is a nice piece of software. G! On Tue, Jul 20, 2010 at 9:42 AM, Andy Matthews li...@commadelimited.comwrote: Another SUPER easy way to do this is to use HTTrack: http://www.httrack.com/ It spiders a website and creates a local copy. Lots of config options too. andy

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Will Blake
OK, first not sure why there are two threads going about this question... Anyway, to address some of the comments: I currently on CF 6.1 so I (should?) be able to get a JSON response, I will take a look at that route. I do not have a lot of experience doing this type of thing so I am pretty

What has happened to my Firebug?

2010-07-20 Thread Rick Faircloth
Ok... I must be stupid, or just ignorant. All of a sudden, I noticed that Firebug won't display the source of a page. When I click the HTML tab and the arrow, I usually get the source of the page and the CSS in the right pane. I cannot figure out how to get this back. All I can get now when I

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Shannon Rhodes
Sorry, meant as per John's suggestion cfwddx action = wddx2js, not the packet itself. No, WDDX is XML, not Javascript; it always has been. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 20 July 2010 21:13, Shannon Rhodes shan...@rhodesedge.com wrote: It's

Extracting part of a string (part 2)

2010-07-20 Thread Che Vilnonis
I also have a regex I can't seem to get right and could you some help. Take the following string... buick 322 engine (76023) $400 (dallas) How would I extract just the price ($400) without the dollar sign? TIA, Che ~| Order

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Cameron Childress
On Tue, Jul 20, 2010 at 11:07 AM, Will Blake willbl...@printelect.com wrote: OK, first not sure why there are two threads going about this question... Probably something about the HOF email/BB interface splitting it up. I currently on CF 6.1 so I (should?) be able to get a JSON response, I

Problems with multiple instances in CF9

2010-07-20 Thread Josh Walker
I'm having a few issues with a couple of our staging servers that are running multiple instances of CF9, and I'm not sure if they're set up correctly. I have CF9 Enterprise multiserver installed and I created 4 additional instances using the Instance Manager. I also created a specific jvm for

Re: CF Query to WDDX to Javascript. Possible?

2010-07-20 Thread Will Blake
Cameron, Agreed. We do have CF 9 we just have not installed it yet. I am not 100% sure what is taking so long to get it done, but that is a decision that much higher up in the food chain than I am. I'll check out CFLib.org and see what I can find. Thanks for the info. Will OK,

RE: Problems with multiple instances in CF9

2010-07-20 Thread brad
it seems that all the instances are still tied to the main service. Output the following in a cfm template to see what instance you are hitting. This works for CF8 and I assume it still works in CF9. #createObject(java, java.net.InetAddress).localhost.getHostName()# #createObject(java,

RE: What has happened to my Firebug?

2010-07-20 Thread Rick Faircloth
Well, thanks anyway... I just uninstalled Firebug and all customizations, then reinstalled, and everything is back to normal. I hadn't realized just how dependent on Firebug I had become! If you don't use it, try it! Rick -Original Message- From: Rick Faircloth

RE: Extracting part of a string

2010-07-20 Thread Rick Sanders
Thank you Andy, this was most helpful! -Original Message- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: Tuesday, July 20, 2010 11:49 AM To: cf-talk Subject: RE: Extracting part of a string Assuming there's nothing more to your search, then this regex would do you fine:

Re: Facebook Connect and coldfusion

2010-07-20 Thread Jeff Gladnick
Glad you liked it. Let me know if you (or anyone else) would like commit privelages to contribute to the project. We still need to build out the post-to-facebook functionality. Awesome! Thank you for posting this! Rick Sanders Webenergy www.webenergy.ca I finally got this roughly working

Re: Extracting part of a string (part 2)

2010-07-20 Thread Charlie Griefer
For that specific string, \$(\S+) seems to work. The \S is any character that is not a whitespace character, so it'd work for $400.01 as well. \$(\w+) should also return the same result. On Tue, Jul 20, 2010 at 8:24 AM, Che Vilnonis ch...@asitv.com wrote: I also have a regex I can't seem to

Re: CF7.1 CFHTTP to Amazon S3: cfhttp.filecontent = 'Connection Failure'?

2010-07-20 Thread Ed Griffiths
hope someone has some insight into this! we're interfacing a legacy app written in CF7.1 with Amazon S3. CF7.1 is configured in J2EE mode as a standalone environment, using JDK 1.5.0_06 as the JVM. we're using CFHTTP, through Barney Boisvert's Amazon S3 CFC rewritten for CF7, to connect

RE: Extracting part of a string (part 2)

2010-07-20 Thread Che Vilnonis
Thanks Charlie. I found that (\$\d+(\.\d+)?) works as well. The RegExr site was very helpful. http://www.gskinner.com/RegExr/ -Original Message- For that specific string, \$(\S+) seems to work. The \S is any character that is not a whitespace character, so it'd work for $400.01 as

RE: CF7.1 CFHTTP to Amazon S3: cfhttp.filecontent = 'Conn ection Failure'?

2010-07-20 Thread brad
the problem is that when we try to retrieve the binary data for a file using CFHTTP, cfhttp.filecontent says 'connection failure' even though the cfhttp.responseheader from Amazon returns a 200 OK Is the response compressed? Post the HTTP headers that you are getting back. ~Brad

Re: CF7.1 CFHTTP to Amazon S3: cfhttp.filecontent = 'Conn ection Failure'?

2010-07-20 Thread Ed Griffiths
the problem is that when we try to retrieve the binary data for a file using CFHTTP, cfhttp.filecontent says 'connection failure' even though the cfhttp.responseheader from Amazon returns a 200 OK Is the response compressed? Post the HTTP headers that you are getting back. ~Brad thanks.

Error registering remote instance

2010-07-20 Thread Ben Densmore
I'm trying to set up a cluster in CF 9.0.1. Prior to creating the cluster I'm trying to register a remote instance on one of the servers. Every time I try to create the remote instance I get the following error. Variable ORGSPECDIR is undefined. The error occurred

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
Don't forget if you switch to Chrome you've got pretty much the same toolset built in. On Tue, Jul 20, 2010 at 11:36 AM, Rick Faircloth r...@whitestonemedia.com wrote: Well, thanks anyway... I just uninstalled Firebug and all customizations, then reinstalled, and everything is back to

RE: What has happened to my Firebug?

2010-07-20 Thread Rick Faircloth
Oh, really? Good to know. Liking Chrome these days, are we Ray? :o) Rick -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, July 20, 2010 1:44 PM To: cf-talk Subject: Re: What has happened to my Firebug? Don't forget if you switch to Chrome you've got

ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
I am trying to install ColdFusion 9.0 Developer in Multi-home on a 64bit Windows 7 workstation for the first time. Every time I try, I am getting the dreaded HTTP 500.0 Internal Server Error when I connect ColdFusion to an IIS 7 web site. I've made sure that IIS 7 has the IIS Metadatabase and

RE: Extracting part of a string

2010-07-20 Thread Andy Matthews
Glad to help. -Original Message- From: Rick Sanders [mailto:c...@webenergy.ca] Sent: Tuesday, July 20, 2010 11:40 AM To: cf-talk Subject: RE: Extracting part of a string Thank you Andy, this was most helpful! -Original Message- From: Andy Matthews

RE: Extracting part of a string (part 2)

2010-07-20 Thread Andy Matthews
+1 for the RegExr site. Skinner is awesome. -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Tuesday, July 20, 2010 12:12 PM To: cf-talk Subject: RE: Extracting part of a string (part 2) Thanks Charlie. I found that (\$\d+(\.\d+)?) works as well. The RegExr site

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
Chrome's developer tools are not bad, but they're nothing compared to Firebug. It's the only thing I ever open Firefox any more these days. andy -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, July 20, 2010 1:27 PM To: cf-talk Subject: RE:

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
I am trying to install ColdFusion 9.0 Developer in Multi-home on a 64bit Windows 7 workstation for the first time. Every time I try, I am getting the dreaded HTTP 500.0 Internal Server Error when I connect ColdFusion to an IIS 7 web site. I've made sure that IIS 7 has the IIS Metadatabase

Re: What has happened to my Firebug?

2010-07-20 Thread Rob Parkhill
Just be careful with Chrome and the now built-in Flash player. You need to go into chrome://plugins and disable Flash Player if you want access to the debug version of Flash player. I still prefer Firebug for the Javascript debugging on AJAX requests. Cheers, Rob On Tue, Jul 20, 2010 at

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 12:07 PM, Dave Watts wrote: If you're using the 64-bit version of CF 9, you're using the 64-bit connector. You need to change your application pool back to 64-bit and reinstall the connector. I thought setting 32bit seemed to be odd, but still no joy! I've removed and

RE: CF7.1 CFHTTP to Amazon S3: cfhttp.filecontent = 'Conn ection Failure'?

2010-07-20 Thread brad
Hmm, I don't' see any signs of HTTP compression. The content length is 423K so it looks like the remote server at least intended to send the file. If you run a packet sniffer like WireShark on your CF box while it makes the request can you confirm if the actual binary content is sent back?

Re: CFTEXTAREA onClick

2010-07-20 Thread Bryan Stevenson
Thanks Den!! I tried your example and it does in fact fire off the alert! I modified it to adjust the textarea heightno love!! Here's the JS I tried: - script function doIt() { //alert( Say

Re: deaddocs (was Re: CFTEXTAREA onClick)

2010-07-20 Thread Bryan Stevenson
hehe...well I've never been a fan of LiveDocs...mainly because the original docs always seem to be lackingthen it gets locked down as you found and staleness sets in! So yeah...deaddocs is bang on!! Cheers On Mon, 2010-07-19 at 18:22 -0600, denstar wrote: Now this is lame: I went to

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Bradley Stone
I am trying to install ColdFusion 9.0 Developer in Multi-home on a 64bit If you're using the 64-bit version of CF 9, you're using the 64-bit connector. You need to change your application pool back to 64-bit and reinstall the connector. Dave Watts, CTO, Fig Leaf Software

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Bradley Stone
Ian, I had the same problem. It wasn't a connector issue; it was a rights issue with IIS. I'm not in a position to give you the exact place, but I had to grant ColdFusion access rights to the applicable file structure mapped to IIS... This same issue occurs with Vista as well.

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 1:08 PM, Bradley Stone wrote: Ian, I had the same problem. It wasn't a connector issue; it was a rights issue with IIS. I'm not in a position to give you the exact place, but I had to grant ColdFusion access rights to the applicable file structure mapped to IIS... This

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
Are you referring to the IIS websites or the IIS web server application? CF needs to have read/execute access to the web root directory (and any other place .cfm/cfc files live). The IIS user account (which can either be the IIS anonymous user or the logged-in user visiting an IIS URL) needs to

Re: CFTEXTAREA onClick

2010-07-20 Thread morgan l
If you examine the source created by instantiating the fck editor, you'll see that it's not just a CSS height on a textarea anymore. You'll find that you're inside an iframe. If this line from Den's example works: ColdFusion.RichText.getEditorObject('your_textarea_id'); then you would do

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 1:21 PM, Dave Watts wrote: Are you referring to the IIS websites or the IIS web server application? IIS anonymous user or the logged-in user visiting an IIS URL) needs to have read/execute access to whatever directory contains the CF ISAPI module. Where would one look for the

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 1:08 PM, Bradley Stone wrote: Ian, I had the same problem. It wasn't a connector issue; it was a rights issue with IIS. I'm not in a position to give you the exact place, but I had to grant ColdFusion access rights to the applicable file structure mapped to IIS... This

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
Where would one look for the CF ISAPI module. By default, c:\jrun4\lib\wsconfig if you're using the multiserver install. I'm suspecting this permissions issue might be something though.  I am finding that I am having to work so much harder to do anything on this Win7 machine.  *Everything*

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
So now that I have these directories wide open.  What would be more sensible security settings for them? The CF service user account should have RWXD for \jrun4, and RX for your web content (unless you want to write to those content directories using CFFILE, in which case you'll need W). To

Re: CFTEXTAREA onClick

2010-07-20 Thread Bryan Stevenson
Thanks Morgan.but unfortunately no luckbut it does give me lots more to go on! Actually I found an issue with Den's example as well.every 20 or so characters the function fires again.even when using the UNDO button on the toolbaras you are changing the contents of the

Re: CFTEXTAREA onClick

2010-07-20 Thread Bryan Stevenson
re-read one of Den's older posts and followed the link to the docs...DOH! Thanks Den! On Tue, 2010-07-20 at 13:59 -0700, Bryan Stevenson wrote Is there an equivalent to onFocus? Where are these options documented? Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 1:57 PM, Dave Watts wrote: So now that I have these directories wide open. What would be more sensible security settings for them? The CF service user account should have RWXD... As this is a vanilla, out-of-the-box installation, that is the LocalSystem account. A) Is this a

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Jordan Michaels
Can you get more detail then just a 500 error? Have you tried turning on detailed error messages to get a better idea of what's going wrong? Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Open BlueDragon Steering Committee Railo Community Distributions On 07/20/2010

Re: CFTEXTAREA onClick

2010-07-20 Thread morgan l
The new docs don't seem as complete as the old ones, but the developer seems to have done a good job purging the olds ones. Hopefully you can at least find what you need over there. On Tue, Jul 20, 2010 at 4:02 PM, Bryan Stevenson br...@electricedgesystems.com wrote: re-read one of

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
As this is a vanilla, out-of-the-box installation, that is the LocalSystem account. A) Is this a normal Win7 thing that I have to set permissions for this account to the resources it needs for ColdFusion to do it's job? Well, LocalSystem (or SYSTEM) has all the file permissions it needs.

Re: CFTEXTAREA onClick

2010-07-20 Thread denstar
On Tue, Jul 20, 2010 at 2:59 PM, Bryan Stevenson wrote: ... Is there an equivalent to onFocus?  Where are these options documented? http://docs.cksource.com/FCKeditor_2.x/Developers_Guide/JavaScript_API There is an OnFocus! Personally, I'd switch to a ckeditor tag (I have one if you don't,

Re: CFTEXTAREA onClick

2010-07-20 Thread Bryan Stevenson
Thanks again Den! Now I know where the answer liesI just have to RTFM (or source..hehe). Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: br...@electricedgesystems.com

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Ian Skinner
On 7/20/2010 2:17 PM, Dave Watts wrote: As this is a vanilla, out-of-the-box installation, that is the LocalSystem account. A) Is this a normal Win7 thing that I have to set permissions for this account to the resources it needs for ColdFusion to do it's job? Well, LocalSystem (or SYSTEM)

RE: What has happened to my Firebug?

2010-07-20 Thread Rick Faircloth
Yeah, I do a lot of AJAX work/debugging...so Firebug is superior in that respect? -Original Message- From: Rob Parkhill [mailto:robert.parkh...@gmail.com] Sent: Tuesday, July 20, 2010 3:22 PM To: cf-talk Subject: Re: What has happened to my Firebug? Just be careful with Chrome and

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
Andy, I've not found Chrome's tools lacking in anyway. The only thing that comes to mind is that you can't expand it like Firebug, so no ColdFire. On Tue, Jul 20, 2010 at 2:04 PM, Andy Matthews li...@commadelimited.com wrote: Chrome's developer tools are not bad, but they're nothing compared

Re: ColdFusion 9.0 Windows 7 64bit IIS7 and HTTP Error 500.0

2010-07-20 Thread Dave Watts
I would have thought so to.  But apparently it did not, as I had to open these directories to everyone to get ColdFusion to work with my website.  It it is things like this that lead me to believe that there might be something a bit hinky about how my permissions are working on this machine.

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
Absolutely. There is no comparison. andy -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, July 20, 2010 4:29 PM To: cf-talk Subject: RE: What has happened to my Firebug? Yeah, I do a lot of AJAX work/debugging...so Firebug is superior in that

RE: What has happened to my Firebug?

2010-07-20 Thread Andy Matthews
I'll deathmatch you during your presentation tomorrow night. Heckling throughout the entire duration. :) andy -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, July 20, 2010 4:33 PM To: cf-talk Subject: Re: What has happened to my Firebug? Andy,

bind a method to all remotely accessed methods in a cfc

2010-07-20 Thread Tony Bentley
Is it possible to bind a private or package method to any method with remote access within a cfc? I want run checks on each request to lock down security but not on the application level. I want to automate this procedure instead of having to place the call inside of each method. I would use

Re: bind a method to all remotely accessed methods in a cfc

2010-07-20 Thread denstar
I'm not 100% sure what you're after, but perhaps ColdSpring's remote facade generation stuff would fit the bill? :Den -- Even he, to whom most things that most people would think were pretty smart were pretty dumb, thought it was pretty smart. Douglas Adams On Tue, Jul 20, 2010 at 5:07 PM,

Re: bind a method to all remotely accessed methods in a cfc

2010-07-20 Thread Tony Bentley
ColdSpring has something like what I want but I thought someone might have something that uses GetMetaData() and then grabs the calling method and then checks the access and returns it. I'm just not sure how to do it! I dont want a framework just for this one task. On Tue, Jul 20, 2010 at 4:59

Re: What has happened to my Firebug?

2010-07-20 Thread Raymond Camden
Ive been growing my beard in preparation. On Tuesday, July 20, 2010, Andy Matthews li...@commadelimited.com wrote: I'll deathmatch you during your presentation tomorrow night. Heckling throughout the entire duration. :) andy -Original Message- From: Raymond Camden