RE: Implementing FCK Editor in CF8.01

2009-02-08 Thread Terry Troxel

Thanks Rob.it's just like you suggested.
Works fine now.

Terry 

-Original Message-
From: Rob Parkhill [mailto:robert.parkh...@gmail.com] 
Sent: Friday, February 06, 2009 12:52 PM
To: cf-talk
Subject: Re: Implementing FCK Editor in CF8.01


is the CFIDE directory mapped?  or inside your webroot for the hosting
provider?  I usually upload the CFIDE directory, and add the scriptsrc=CFIDE
location, and then you should have no problems.
HTH

Rob




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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319045
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Implementing FCK Editor in CF8.01

2009-02-06 Thread Terry Troxel

My provider updated my server to cf801 and I have been calling FCK Editor
from the siteroot/admin/fckeditor folder structure very successfully with
the install from fckeditor's site.

My question is what do I do to switch to the embedded version in stead of
the one I downloaded?

This is how I am trying to call the embedded editor:

cfform
cftextarea richtext = true name=richtext11234/cftextarea
/cfform
It gives me a plain textbox.


This is how I call it with the downloaded version:

cfmodule
template=fckeditor/fckeditor.cfm
basePath=fckeditor/
instanceName=pagecontent
value='1234'
width=760
height=400


This works.

Any positive help will be greatly appreciated.

Terry



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318997
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Implementing FCK Editor in CF8.01

2009-02-06 Thread Rob Parkhill

is the CFIDE directory mapped?  or inside your webroot for the hosting
provider?  I usually upload the CFIDE directory, and add the scriptsrc=CFIDE
location, and then you should have no problems.
HTH

Rob

On Fri, Feb 6, 2009 at 3:13 PM, Terry Troxel te...@it-werks.com wrote:


 My provider updated my server to cf801 and I have been calling FCK Editor
 from the siteroot/admin/fckeditor folder structure very successfully with
 the install from fckeditor's site.

 My question is what do I do to switch to the embedded version in stead of
 the one I downloaded?

 This is how I am trying to call the embedded editor:

 cfform
 cftextarea richtext = true name=richtext11234/cftextarea
 /cfform
 It gives me a plain textbox.


 This is how I call it with the downloaded version:

 cfmodule
 template=fckeditor/fckeditor.cfm
 basePath=fckeditor/
 instanceName=pagecontent
 value='1234'
 width=760
 height=400
 

 This works.

 Any positive help will be greatly appreciated.

 Terry



 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319000
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Implementing FCK Editor in CF8.01

2009-02-06 Thread Mike Kear

My advice is to stick with the way you've been doing it.When you
learn how to manipulate FCKEditor yourself (as you have done already)
you have much more control over the way it's presented to the user -
things like skins,  customised toolbars etc and it's easier to keep up
to date with current versions.

If you use the native version, you're always going to have to wait for
Adobe to put out an updater to ColdFusion to update your editor, and
you wont have anything like the control and options available to you
when you call it into your form.

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 Sat, Feb 7, 2009 at 7:51 AM, Rob Parkhill robert.parkh...@gmail.com wrote:

 is the CFIDE directory mapped?  or inside your webroot for the hosting
 provider?  I usually upload the CFIDE directory, and add the scriptsrc=CFIDE
 location, and then you should have no problems.
 HTH

 Rob

 On Fri, Feb 6, 2009 at 3:13 PM, Terry Troxel te...@it-werks.com wrote:


 My provider updated my server to cf801 and I have been calling FCK Editor
 from the siteroot/admin/fckeditor folder structure very successfully with
 the install from fckeditor's site.

 My question is what do I do to switch to the embedded version in stead of
 the one I downloaded?

 This is how I am trying to call the embedded editor:

 cfform
 cftextarea richtext = true name=richtext11234/cftextarea
 /cfform
 It gives me a plain textbox.


 This is how I call it with the downloaded version:

 cfmodule
 template=fckeditor/fckeditor.cfm
 basePath=fckeditor/
 instanceName=pagecontent
 value='1234'
 width=760
 height=400
 

 This works.

 Any positive help will be greatly appreciated.

 Terry




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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319009
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Implementing FCK Editor in CF8.01

2009-02-06 Thread Scott Stroz

Not treu, you can have every bit as much controlover the toolbars and other
options using cftextarea as you can using it 'natively'.  You just need to
know how.  You can use the scroptsrc attribute to tell CF where to look for
the config files and such.  From there, you can make changes just as easily
as if you used FCK on its own.

On Fri, Feb 6, 2009 at 10:20 PM, Mike Kear afpwebwo...@gmail.com wrote:


 My advice is to stick with the way you've been doing it.When you
 learn how to manipulate FCKEditor yourself (as you have done already)
 you have much more control over the way it's presented to the user -
 things like skins,  customised toolbars etc and it's easier to keep up
 to date with current versions.

 If you use the native version, you're always going to have to wait for
 Adobe to put out an updater to ColdFusion to update your editor, and
 you wont have anything like the control and options available to you
 when you call it into your form.

 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 Sat, Feb 7, 2009 at 7:51 AM, Rob Parkhill robert.parkh...@gmail.com
 wrote:
 
  is the CFIDE directory mapped?  or inside your webroot for the hosting
  provider?  I usually upload the CFIDE directory, and add the
 scriptsrc=CFIDE
  location, and then you should have no problems.
  HTH
 
  Rob
 
  On Fri, Feb 6, 2009 at 3:13 PM, Terry Troxel te...@it-werks.com wrote:
 
 
  My provider updated my server to cf801 and I have been calling FCK
 Editor
  from the siteroot/admin/fckeditor folder structure very successfully
 with
  the install from fckeditor's site.
 
  My question is what do I do to switch to the embedded version in stead
 of
  the one I downloaded?
 
  This is how I am trying to call the embedded editor:
 
  cfform
  cftextarea richtext = true name=richtext11234/cftextarea
  /cfform
  It gives me a plain textbox.
 
 
  This is how I call it with the downloaded version:
 
  cfmodule
  template=fckeditor/fckeditor.cfm
  basePath=fckeditor/
  instanceName=pagecontent
  value='1234'
  width=760
  height=400
  
 
  This works.
 
  Any positive help will be greatly appreciated.
 
  Terry
 
 
 

 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319010
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4