Point of clarification ..   normally in a default ilnstallation of
fckeditor,   the file you want is in the 'editor' folder.

Also you didnt say, and I assumed you're not using CF8.  If you have
ColdFusion 8 FCKEditor is part of the core code and you can use a CF
tag to use it if you want (it's got a parameter in the CFTEXTAREA tag)
 but you can still set it up yourself if you want.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month


On 4/1/08, Mike Kear <[EMAIL PROTECTED]> wrote:
> Yes.  The "editorbasepath" parameter is pointing to the wrong place.
>
> It should point to the location of a file called fckkeditor.html.  in
> a default installation its in the same folder as the editor
>
> I normally have mine installed in a folder called fckeditor, which is
> located at /cfforms/scripts/fckeditor    under the root of the site.
>
> If you use the scripting/ cfc way of using the editor you should ahve
> something like this:
>
>  <cfscript>
> fckEditor =  createobject("component","cfforms.scripts.fckeditor.fckeditor");
> fckEditor.instanceName = "fieldname";
> fckEditor.value = '#ContentsOfFieldnamewhenitLoads';
> fckEditor.basePath = "/cfform/scripts/fckeditor/";
> fckEditor.toolbarset = "Default"; // or Basic for less functionality
> fckEditor.width = "90%";
> fckEditor.height = 500;
> fckEditor.create(); // create the editor.
> </cfscript>
>
>
> HTH.
>
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer
> AFP Webworks
> http://afpwebworks.com
> ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month
>
>
>
> On 4/1/08, Rob Parkhill <[EMAIL PROTECTED]> wrote:
> > Good afternoon (or morning, or night),
> >
> > I have installed FCKeditor on my dev machine and have it working fine, but 
> > when I go to install to my hosted site, I get a 'page not found' error 
> > where the input box should be.  I haven't done anything special to the 
> > code.  It is a CF7 Server.
> >
> > Any thoughts?
> >
> > Thanks,
> >
> > Rob
> >
> > 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302345
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to