Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Chris Hayes
Hi Don http://www.fckeditor.net/roadmap some things already in the pipeline. CF8's integration of the editor is somewhat minimal as the core FCK code is really simple to embed on a page without the use of a CF tag, as are many of the alternative editors. Considering how I can't keep pace

CF8 documention

2007-05-30 Thread Chris Hayes
I think I'm right in saying there isn't any CF8 documentation yet (please correct me if I'm wrong). What's the status here? ~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7.

FCKeditor spell checker

2007-05-17 Thread Chris Hayes
Hi Folks Has anybody found an easy route to spell checking on FCKE without an extra client install? Do I head-down the SpellChecker road? I'm on a Win32 server and I don't think this is well supported in ASpell. Does anybody have this working satisfactorily? Any other suggestions? Would a

IIS6 configuration

2007-02-16 Thread Chris Hayes
How do we go about configuring IIS6 from CF these days. I only found a tag for 4/5. So it looks like juggling and hacking about in the VB scripts, or maybe it's better to learn the API. ? Chris ~| Upgrade to Adobe

Re: How do you debug this one?

2006-10-17 Thread Chris Hayes
- Original Message - From: Will Tomlinson [EMAIL PROTECTED] I know the file is there. Where do ya start figurin this one out? ColdFusion could not delete the file C:\CFusionMX7\wwwroot\plutonation\productImages\ScienceTeacherShirt_Small.gif for an unknown reason. It might be

Developer Edition Single IP Address

2006-10-16 Thread Chris Hayes
Morning Has anything changed regarding changing the dev edition IP address? CFMX 7.02 licence.properties no longer has allowedIP, adding it doesn't help. Is there a definitive up-to-date howto on this. Official docs go up to MX6.1 Chris

Re: Convincing CF to process xml files

2006-10-16 Thread Chris Hayes
- Original Message - From: James Smith [EMAIL PROTECTED] Maybe I'm missing something here, but why does CF have to process this file? Why not write the XML file to your web root (or any other URI-accessible location) and then let the web server handle it? Because it has to be

Re: Convincing CF to process xml files

2006-10-16 Thread Chris Hayes
- Original Message - From: James Smith [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, October 16, 2006 3:24 PM Subject: RE: Convincing CF to process xml files Any chance you're using Apache? This would be a perfect exercise for mod_rewrite. If not, maybe one

Re: Developer Edition Single IP Address

2006-10-16 Thread Chris Hayes
- Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] The developer edition of coldfusion will only run on localhost / 127.0.0.1 Rick Is that right? You can no longer specify another IP address as of version 7?

Re: fusebox stats

2000-09-08 Thread Chris Hayes
Webtrends are happy to index these URLs, allegedly. HTH -- Chris Hayes London Web Communications 69 Ballards Lane London N3 1LW Email: [EMAIL PROTECTED] Web: http://corp.londonweb.net/ Tel: +44 (0)20 8349 4500 Fax: +44 (0)20

Re: Which one will take?

2000-08-31 Thread Chris Hayes
Does this work on NT? - Original Message - From: Hryckowiak, Miro [EMAIL PROTECTED] To: Cf-Talk (E-mail) [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 2:01 PM Subject: Which one will take? Hi all, I'm writing an app which should work on NT and in the FUTURE on UNIX platform

Re: Okay, this query should be simple...

2000-08-31 Thread Chris Hayes
Stab in the dark... with a very inadequate stabbing utensil... Maybe ORACLE requires an end semi-colon. - Original Message - From: Terri Stocke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 2:03 PM Subject: Okay, this query should be simple... Hey All,

Nested Recursive Custom Tags AttributeCollection Nightmare

2000-08-02 Thread Chris Hayes
I have a tag which is going to call itself many times over. I want to be able to create a structure, call the custom tag and be left with a modified structure at the end of it. cfset myStructure = StructNew() cfmodule template="acustomtag.cfm" AttributeCollection="#menuStructure#" In the

Re: Looping through form fields

2000-06-07 Thread Chris Hayes
(I posted this yesterday, seems to have gotten lost) Do the PROJECT_COMPONENTS bit outside of the loop and put a condition in the loop to ignore that field: PROJECT_COMPONENTS - #evaluate("PROJECT_COMPONENTS ")# cfloop list="#form.fieldnames#" index="field" cfif field NEQ

hey I can't see mine either RE Looping through form fields.

2000-06-07 Thread Chris Hayes
I have posted two replies to Steve Robson [EMAIL PROTECTED] RE Looping through form fields. I'm not going to repeat the message in case it is jinxed :-) Mail me Steve, if you've had no luck. -- Archives:

Re: Download Question Using CFINCLUDE and Java Applets

2000-06-07 Thread Chris Hayes
I can't see why using CFINCLUDE should make any difference to its DL time. CFINCLUDE merely includes code in a page, once this is rendered client-side, the browser wouldn't "know" the difference between included code and any other. - Original Message - From: Double Down, Inc [EMAIL

Re: Looping through form fields

2000-06-06 Thread Chris Hayes
Do the PROJECT_COMPONENTS bit outside of the loop and put a condition in the loop to ignore that field: PROJECT_COMPONENTS - #evaluate("PROJECT_COMPONENTS ")# cfloop list="#form.fieldnames#" index="field" cfif field NEQ "PROJECT_COMPONENTS" AND field neq "Submit" #field#

Re: Slightly OT: Lighten things up a little

2000-05-15 Thread Chris Hayes
I doesn't... if you had years of sitting around with nothing to useful to do, you'd achieve exactly the same, college or not :-) Chris - Original Message - From: Todd Ashworth [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 2:51 PM Subject: Re: Slightly OT: Lighten

Now what?

2000-05-09 Thread Chris Hayes
I have a conditional form post: cfif blah cfform cfelse cfform ... /cfif . . /cfform But ColdFusion gives a JIT error that there is an extraneous /cfform tag. What other ways are there of doing this?