Re: What do I have to do to get toolbars to show in a cftextarea?

2007-12-15 Thread Azadi Saryev
while stand-alone fckeditor does have image upload functionality, it has been disabled in its implementation in CF8. however, Rakshith from Adobe CF team has posted on his blog how to enable it:http://www.rakshith.net/blog/?p=41 hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
Something I should add - I can not redirect at this point as facebook will throw a Too many redirects error. All redirects must be handled in a view state using a special FBML tag. Dominic On 15/12/2007, Dominic Watson [EMAIL PROTECTED] wrote: So I'm digging Model Glue and ColdSpring and have

SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
So I'm digging Model Glue and ColdSpring and have managed to get a facebook starter up and running with MG, hoorah! The trouble I am having is this: In the OnRequestStart() method in my controller, I check for certain errors from the Facebook request (authenticating that it is actually a FB

Re: SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
Ok, I solved my problem but not how I would have liked (if there is an answer to the original post I'd love to hear it). I set up a new controller method that does all the fb checking code. I then broadcast a message in my default template event-handler. The controller listener that calls my new

Re: HTTPServerError

2007-12-15 Thread Claude Schneegans
Any suggestions on how to debug this ? This what? all I get is a Internal Server 500.. Doing what? Has been working for years until today What has been working for years? ;-) -- ___ REUSE CODE! Use custom tags; See

Re: ColdFusion.Window.getWindowObject causes exception on IE

2007-12-15 Thread Dustin M. Snell
Thank you so much. I really appreciate it. Composed via iPhone. Please forgive typos. On Dec 14, 2007, at 10:55 PM, Azadi Saryev [EMAIL PROTECTED] wrote: well, here it is: tested it - saw exception. tested it in FF with ?cfdebug added to url - saw same exception logged in the logger. why

Re: SOT: Model Glue Help

2007-12-15 Thread Sean Corfield
Just checking but you did declare onRequestStart as an event-handler so you could add results to it, right? That's how you trap results set by a listener for onRequestStart. On 12/15/07, Dominic Watson [EMAIL PROTECTED] wrote: So I'm digging Model Glue and ColdSpring and have managed to get a

Re: SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
No I have not. It gets called by MG on every request without having to call it from an event handler so if you were to call it from an event handler I assume it would get call twice(?). But yeh, because it gets called automatically, there doesn't appear to be anywhere to pick up any results from

Re: SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
I clearly didn't read your post properly! Will do :) Thankyou Dominic On 15/12/2007, Dominic Watson [EMAIL PROTECTED] wrote: No I have not. It gets called by MG on every request without having to call it from an event handler so if you were to call it from an event handler I assume it

Re: SOT: Model Glue Help

2007-12-15 Thread Dominic Watson
Just checking but you did declare onRequestStart as an event-handler so you could add results to it, right? That's how you trap results set by a listener for onRequestStart. Yeh, I didn't read you properly first time round, shame on me. The works beautifully thankyou :) Dominic -- Blog it

Creating links like http://www.mydomain.com/SomeIDValue

2007-12-15 Thread Jason Fill
I would like to be able to set a system up so we can have urls like http://www.mydomain.com/SomeIDValue. Basically the /SomeIDValue would be like a memberID. Of course I don't want to create directories for each ID value. It would be similar to how MySpace does it, http://myspace.com/myname

RE: What do I have to do to get toolbars to show in a cftextarea?

2007-12-15 Thread Rick Faircloth
I was able to modify the toolbar to include the Imagebutton and Image toolbar buttons, but I'm getting an error when I attempt to use the Browse button after clicking the Image toolbar button. I suspect it has to do with the fact that I'm using a different webroot that is specified or expected in

Re: Creating links like http://www.mydomain.com/SomeIDValue

2007-12-15 Thread C. Hatton Humphrey
you'll need to use IIS to redirect 404's to a CF template and have it parse the URL called to action. Hatton On Dec 15, 2007 1:43 PM, Jason Fill [EMAIL PROTECTED] wrote: I would like to be able to set a system up so we can have urls like http://www.mydomain.com/SomeIDValue. Basically the

Re: Creating links like http://www.mydomain.com/SomeIDValue

2007-12-15 Thread jonese
or you can use any of the url rewrite tools out there. http://www.sitepoint.com/blogs/2007/11/05/friendly-urls/ jonese On Dec 15, 2007 2:12 PM, C. Hatton Humphrey [EMAIL PROTECTED] wrote: you'll need to use IIS to redirect 404's to a CF template and have it parse the URL called to action.

Re: SOT: Model Glue Help

2007-12-15 Thread Sean Corfield
On Dec 15, 2007 10:46 AM, Dominic Watson [EMAIL PROTECTED] wrote: Yeh, I didn't read you properly first time round, shame on me. The works beautifully thankyou :) Yeah, it's not well documented that you can declare event-handlers for the onXyz events and actually have those be actioned

RE: HTTPServerError

2007-12-15 Thread Dave Watts
Any suggestions on how to debug this ? all I get is a Internal Server 500.. Has been working for years until today (altho we've been upgrading.. from CF 4.5 to 7 this summer and to CF8 12 days ago) You haven't provided enough information for anyone to give you a definitive answer. I would

Responding to Dan G. Switzer

2007-12-15 Thread d l
on thread titled cfthread nor not? -- any best practice out there?, my two follow-up posts yesterday did not show up, so, just want to post a quick note to say thanks. After some documentation digging I know now why the threaded one initially did not load fast as expected, problem resolved.

Re: Creating links like http://www.mydomain.com/SomeIDValue

2007-12-15 Thread J.J. Merrick
yeah mod_rewrite ( on apache) or ISAPI rewrite will do exactly that. http://jeremiahx.com/2007/11/22/mod_rewrite-and-fusebox-a-match-made-is-seo-heaven/ http://jeremiahx.com/2007/12/03/more-mod_rewrite-and-ses-fun/ Hope that helps, J.J. On 12/15/07, Jason Fill [EMAIL PROTECTED] wrote: I