ckeditor in CF 11?

2015-01-16 Thread Nick Gleason
Hi Folks, I have a question about ckeditor. We use it in our CMS, but have not used the version bundled with CF before. I have a couple of questions that I am hoping folks here can answer: 1. Is ckeditor included in CF 11? 2. If so, have people had good experiences with it (we've used

Re: ckeditor in CF 11?

2015-01-16 Thread Russ Michaels
better to use a standalone version inside your site really, which you can easily update and patch without breaking anything else. On Fri, Jan 16, 2015 at 3:30 PM, Nick Gleason n.glea...@citysoft.com wrote: Hi Folks, I have a question about ckeditor. We use it in our CMS, but have not used

Re: ckeditor in CF 11?

2015-01-16 Thread Pete Freitag
CKeditor is not included in CF11. CF8-11 includes FCKeditor, which is the predecessor to CKeditor. To answer question 3 in the context of FCKeditor, yes your updates to it could potentially be overwritten by the updater. -- Pete Freitag - Adobe Community Professional http://foundeo.com

Re: ckeditor in CF 11?

2015-01-16 Thread Dave Watts
It looks like your other questions have been answered already, so I'll just answer this one. 4. Are there licensing issues with the CF bundled version? In other words, if you use the free version from cksource in a commercial product, there is typically a license fee. If you use the CF

Re: ckeditor in CF 11?

2015-01-16 Thread Russ Michaels
IF being the operative word here. And you should know as well as I that is usually not the case. We have a person on this very list, who likes to tell us about her 15+ years experience in IT and security expertise, but her CF server was about as insecure as can be, and her cfadmin was hackable in

(ot) CKEditor

2013-09-13 Thread Stephens, Larry V
Any CKEditor (v. 4+) gurus who can contact me off-list about an issue? I'm getting no responses in the CKEditor forum. Larry Stephens ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion

Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
Has anyone figured out how to show a different toolbar in ckeditor based on a variable? I want to do this: cfif session.role = Admin textarea class=ckeditor toolbar=Full name=englishText#englishText#/textarea cfelse textarea class=ckeditor toolbar=Basic name=englishText#englishText#/textarea

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Russ Michaels
I can;t see any reason why that wouldn't work. do both those toolbars display normally without your if/else ? On Wed, Oct 10, 2012 at 3:02 PM, Torrent Girl moniqueb...@gmail.com wrote: Has anyone figured out how to show a different toolbar in ckeditor based on a variable? I want to do

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
I can;t see any reason why that wouldn't work. do both those toolbars display normally without your if/else ? It won't :( Here is what is in my config.js file config.toolbar_Full = [ { name: 'document', items : [

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
I can;t see any reason why that wouldn't work. do both those toolbars display normally without your if/else ? This may be a stupid question but can I add coldfusion code within the config.js file like so? cfif session.user.roleID EQ 1 config.toolbar = Full; cfelse config.toolbar =

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Russ Michaels
no because it is a JS file so will never be processed by coldfusion. however if you make it a CFM file instead then it will be, but you will need to make sure there are no HASHES in the file or they will throw errors. You will also need to change anything that includes that to use the new

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
no because it is a JS file so will never be processed by coldfusion. however if you make it a CFM file instead then it will be, but you will need to make sure there are no HASHES in the file or they will throw errors. You will also need to change anything that includes that to use the new

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
no because it is a JS file so will never be processed by coldfusion. however if you make it a CFM file instead then it will be, but you will need to make sure there are no HASHES in the file or they will throw errors. You will also need to change anything that includes that to use the

Re: Showing diffent toolbars in ckeditor based on roles

2012-10-10 Thread Torrent Girl
I found the solution!!! YAY!! http://nils.realeyesmedia.com/?p=126 You have to put the script to replace the toolbar after the text area (???) Here is my final: textarea id=englishText class=ckeditor name=englishText#englishText#/textarea cfif session.user.roleID EQ 3 script

Re: cflayout and CKEditor don't play well together...sometimes.

2012-05-31 Thread David Moore
make sure they work. Does no one have an idea why CKEditor works in the first cflayoutarea, but if it is in any other where a tab has to be selected it does not appear correctly? ~| Order the Adobe Coldfusion Anthology now

cflayout and CKEditor don't play well together...sometimes.

2012-05-30 Thread David Moore
I am using CF 9.1 on a Windows 2008 Web Server and have noticed another issue with cflayout(area). This (of course) only occurs in IE9. It works fine in Firefox. Let's say I build a cflayout page with 3 cflayoutareas (tabs). If I place a rich cftextarea (CKEditor) within tab 2 or 3 it does

Re: cflayout and CKEditor don't play well together...sometimes.

2012-05-30 Thread Gerald Guido
fine in Firefox. Let's say I build a cflayout page with 3 cflayoutareas (tabs). If I place a rich cftextarea (CKEditor) within tab 2 or 3 it does not display correctly. If I place the CKEditor in the first tab (or cflayoutarea) it displays and functions correctly? Besides the obvious, don't use

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Azadi Saryev
                  });             }          },          customConfig : '../ckeditor/ckeditor/ckeditor.js',       });    /script cfoutputtextarea class=ckeditor name=editor1#content.englishText#/textarea/cfoutput ~| Order

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
Dean when I add the script code to my file, it's grayed out and Dreamweaver gives me a script error alert. I am adding it to the top of my editortest.cfm page I got this to work. I am calling CKEditor as such. script type=text/javascript charset=utf-8 //![CDATA

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
I added the removePlugin line and still no luck: It just lines everything up nicely (see below) but my tags are still out of place: cfloop query=founders cfoutput /cfoutput /cfloop cfloop query=advisors cfoutput /cfoutput /cfloop cfloop query=developers cfoutput /cfoutput /cfloop Here is

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
that is supposed to be within each loop. Hi All I have had a year long headache with ckeditor and it changing my CF code. I got around the issue for a while by using a straight text area to enter code in the DB. Now other users will be using the system and I need to get the text editor

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
); config.protectedSource.push( /cfinclude[\s\S]*?\/cfinclude/g); config.protectedSource.push( /cfloop[\s\S]*?\/cfloop/g) Hi All I have had a year long headache with ckeditor and it changing my CF code. I got around the issue for a while by using a straight text area to enter code in the DB

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
So the editor is no longer displacing my tags. BUT it is adding closing cfinvoke and cfincludes to the bottom of the page. All of the tags are closed like so / Any ideas? Hi All I have had a year long headache with ckeditor and it changing my CF code. I got around the issue

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-12 Thread Torrent Girl
Ok I finally worked out all of the kinks FOR NOW. Here is my link to the editor file (include on the page that I am using to edit the content) script type=text/javascript src=../ckeditor/ckeditor/ckeditor.js/script The CONFIG file that I added my customizations to is: /ckeditor/ckeditor

RE: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Nick Gleason
Hi there. We've had the same experience as others. We use it for HTML editing but haven't tried it for CF code. My assumption has always been that it would not accept scripting language directly, but that may be wrong. If you are frustrated about it changing around your HTML or not following

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Russ Michaels
are you perhaps referring to it changing cfsometag to lt;cfsometaggt; if so then this is the correct behaviour if you put code into a WYSIWYG editor. you would need to use the HTML mode to do this, On Wed, Jan 11, 2012 at 9:39 AM, Nick Gleason n.glea...@citysoft.comwrote: Hi there. We've

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
Hi there. We've had the same experience as others. We use it for HTML editing but haven't tried it for CF code. My assumption has always been that it would not accept scripting language directly, but that may be wrong. If you are frustrated about it changing around your HTML or not following

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
(http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR. config.html#.protectedSource). This allows you to use regular expressions to specify which tags should not be affected by the editor. On Tue, Jan 10, 2012 at 7:51 PM, Torrent Girl moniqueb...@gmail.com wrote: Hi All I have had

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
I have a few cfloops within one cfoutput tag. It changes it to this: cfloop query=founders cfoutput /cfoutput/cfloopcfloop query=advisors cfoutput /cfoutput/cfloopcfloop query=developers cfoutput /cfoutput/cfloop When you say change it to edit mode what do you mean? Do you mean hit View

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
have it wrong. You should take a look at the protectedSource method in the config settings (http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR. config.html#.protectedSource). This allows you to use regular expressions to specify which tags should not be affected by the editor. On Tue

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
into the editor and expect it to come through intact? There is quite a community of tech-savvy users on the CKEditor forum - have you checked there? It includes some CF people. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
Here is the line in the core/config.js file where the protected tags are defined: /** * List of regular expressions to be executed on input HTML, * indicating HTML source code that when matched, must strongnot/strong be available in the WYSIWYG * mode for

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Bryan Stevenson
On Wed, 2012-01-11 at 10:03 -0500, Torrent Girl wrote: When you say change it to edit mode what do you mean? Do you mean hit View Source? If so that is what I am doing and where I see the code distorted. He means the editor must be set to HTML mode in order to enter and change text that

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
How do I do this? He means the editor must be set to HTML mode in order to enter and change text that contains HTML. How and where do I set the editor to html mode? So here is what I do: The content is saved in the DB. I open a page (editPage.cfm) Pull the content from the DB and display

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Bryan Stevenson
under the hood, but there was an attribute for that tag that allowed me to indicate plain text or HTML. So CKEditor may handle that in another way.or the CFTEXTAREA tag needed that attribute so it could behave like a regular text are OR an HTML editor (and CKEditor is simply always in HTML mode

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Dean Lawrence
You are correct in the way that you were trying to implement this in the config file (or better yet, in an external config file that overrides the base config file). The problem is, is that it is not what you are looking for. I misunderstood your original post, in that I thought that CKEditor

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Torrent Girl
}); } }, customConfig : '../ckeditor/ckeditor/ckeditor.js', }); /script cfoutputtextarea class=ckeditor name=editor1#content.englishText#/textarea/cfoutput ~| Order the Adobe

RE: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Phillips, Dave
Shouldn't your second line be: CKEDITOR.replace( 'cfoutput#content.englishText#/cfoutput', { Dave Phillips -Original Message- From: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Wednesday, January 11, 2012 1:38 PM To: cf-talk Subject: Re: anyone using ckeditor? I will PAY you

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-11 Thread Dean Lawrence
Thank you. But once again, the proper syntax is not included. I got this to work. I am calling CKEditor as such. script type=text/javascript charset=utf-8 //![CDATA[ $(function() { var config = { customConfig : '/config

anyone using ckeditor? I will PAY you for your help!

2012-01-10 Thread Torrent Girl
Hi All I have had a year long headache with ckeditor and it changing my CF code. I got around the issue for a while by using a straight text area to enter code in the DB. Now other users will be using the system and I need to get the text editor to work. I STILL have not been able to figure

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-10 Thread Mike Kear
Are you trying to enter CF code into the editor and expect it to come through intact? There is quite a community of tech-savvy users on the CKEditor forum - have you checked there? It includes some CF people. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-10 Thread Russ Michaels
both ckeditor and TinyMCE have filters to disallow.remove dangerous tags and content. If you are using the editor to edit CFML code, then it would get changed. So you need to change the default settings. The easiest way would be to just set it to allow everything, or set the disallow list

Re: anyone using ckeditor? I will PAY you for your help!

2012-01-10 Thread Dean Lawrence
PM, Torrent Girl moniqueb...@gmail.com wrote: Hi All I have had a year long headache with ckeditor and it changing my CF code. I got around the issue for a while by using a straight text area to enter code in the DB. Now other users will be using the system and I need to get the text

Re: KCfinder with CKeditor and Coldfusion?

2011-12-08 Thread Captain Obvious
CKfinder and CKeditor and Coldfusion? Yes. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk

KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Terry Troxel
Anyone have any success with KCeditor integration into CKeditor? I do not need file uploading of any kind, just to be able to browse to a predefined image directory Under the website root to insert images stored there. Any help would be appreciated. Terry

Re: KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Mike Kear
If you mean CKFinder and CKeditor, i find they cooperate beautifully and flawlessly with ColdFusion. I use them both together in my CMS systems. The trick is to note that when they install, they put application.cfm in a few places, which creates new applications and therefore all your

RE: KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Terry Troxel
Mike, If you google CKfinder Alternative you will find KCfinder. It supposedly works with FCKeditor, CKeditor and Tinymce. http://kcfinder.sunhater.com/ I was asking if anyone has gotten it to hook up with Coldfusion safely. I do not want to allow uploading just want to browse a single image

Re: KCfinder with CKeditor and Coldfusion?

2011-12-07 Thread Mike Kear
Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month On Thu, Dec 8, 2011 at 3:32 PM, Terry Troxel terry.tro...@gmail.com wrote: Mike, If you google CKfinder Alternative you will find KCfinder. It supposedly works with FCKeditor, CKeditor and Tinymce. http://kcfinder.sunhater.com/ I

Re: Licensing on CKEditor - included?

2010-08-19 Thread Adrocknaphobia
No. The CKEditor is not currently licensed with ColdFusion. -Adam On Wed, Aug 18, 2010 at 11:51 PM, Mike Kear afpwebwo...@gmail.com wrote: Is this true? - we can replace the existing FCKEditor in our ColdFusion with the updates to CKEditor because it's already licensed to Adobe as part

Re: Licensing on CKEditor - included?

2010-08-19 Thread denstar
CKEditor is open source (or dual-tri licensed or some such, for folks that need support). You're going after the file manager plugin that isn't open source, aren't you? =-) :Den -- A wise man sees as much as he ought, not as much as he can. Michel de Montaigne On Wed, Aug 18, 2010 at 9:51 PM

Re: Licensing on CKEditor - included?

2010-08-19 Thread Mike Kear
G'day Den, Actually I was thinking of updating to the newest CKEditor from my current favourite FCKEditor and using the matching CKFinder. You're right, all i actually NEED right now is a replacement for CFFM, so the CKFinder would do that, but I thought there would probably be some advantages

Licensing on CKEditor - included?

2010-08-18 Thread Mike Kear
Is this true? - we can replace the existing FCKEditor in our ColdFusion with the updates to CKEditor because it's already licensed to Adobe as part of ColdFusion? (And therefore since we've paid for a licence for ColdFusion that in turn has paid Fred for a licence for CKEditor). True

RE: Licensing on CKEditor - included?

2010-08-18 Thread Andrew Scott
I believe it is true. Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Mike Kear [mailto:afpwebwo...@gmail.com] Sent: Thursday, 19 August 2010 1:52 PM To: cf-talk Subject: Licensing on CKEditor - included? Is this true? - we can replace the existing

Using CKEditor with CF8

2010-04-20 Thread Thane Sherrington
Hi All, Does anyone have an example of using CKEditor with CF8? I can't find documentation on doing this, and I'm trying to make the switch from FCKEditor. Thanks, T ~| Want to reach the ColdFusion community

Re: Using CKEditor with CF8

2010-04-20 Thread Cutter (ColdFusion)
Quick Google on this brought up a few links that might be helpful: http://ajithmanmadhan.wordpress.com/2009/12/16/customizing-ckeditor-and-adding-a-new-toolbar-button/ (CF ref in the text) http://cksource.com/forums/viewtopic.php?f=10t=16602 (read through the comments) Steve Cutter Blades

Re: CKEditor

2009-11-13 Thread Rick Root
I think CFFM integrates pretty easily into CKeditor so don't let CKeditor's lack of a free file browser stop you from using it. Both CFFM 1.22 (the non-ajax version) and 1.31 (the ajax version) work pretty well in CKeditor 3.0. Rick

Re: CKEditor

2009-11-12 Thread Sebastiaan van Dijk
=application.path.FCKEditor.base; fckeditor.width=500; fckeditor.height=300; fckeditor.create(); /cfscript Currently using the latest build of FCKEditor 2.65 I believe with CF8, but planning to make the step to CKEditor. Upgrading is usually just cutting away all the old

CKEditor

2009-11-11 Thread Terry Troxel
Has anyone used this in CF8. I can't find any documentation for Integration to Coldfusion. Terry Troxel ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

RE: CKEditor

2009-11-11 Thread Will Swain
-talk Subject: CKEditor Has anyone used this in CF8. I can't find any documentation for Integration to Coldfusion. Terry Troxel ~| Want to reach the ColdFusion community with something they want? Let them know on the House

RE: CKEditor

2009-11-11 Thread lists
You might have trouble finding it if you're looking for CKEditor. In CF 8 it was still called FCKEditor. -Original Message- From: Terry Troxel [mailto:te...@it-werks.com] Sent: Wednesday, November 11, 2009 5:37 AM To: cf-talk Subject: CKEditor Has anyone used this in CF8. I can't find

Re: CKEditor

2009-11-11 Thread John M Bliss
Well, for one, that's what you get when you call cftextarea richtext=yes http://livedocs.adobe.com/coldfusion/8/htmldocs/ajaxui_7.html#1126938 On Wed, Nov 11, 2009 at 5:36 AM, Terry Troxel te...@it-werks.com wrote: Has anyone used this in CF8. I can't find any documentation for Integration

Re: CKEditor

2009-11-11 Thread John M Bliss
FCKEditor renamed itself to http://ckeditor.com Same diff. Guess they got tired of people like me always seeing it as, F*CKEditor, if you take my meaning. :-) On Wed, Nov 11, 2009 at 6:21 AM, Will Swain w...@hothorse.com wrote: Assuming you mean FCKEditor, it's right there - cftextarea

Re: CKEditor

2009-11-11 Thread Charles Sheehan-Miles
Will... CKEditor is the new name/new design for FCKeditor. Terry, I'm using CKEditor in one of my apps. On the whole, I like it a LOT better than the original. It was pretty easy to integrate for me, because I use a function call to create text areas in my app, so I just modified the function

Re: CKEditor

2009-11-11 Thread morgan l
CKEditor is the name of the newest version. I assume by integrate into CF you mean the file manager? If so, you'll either have to buy their file manager, or merge it with some other file manager.I've been investigating CFFM, but it looks like we're going to use TinyMCE instead of CKEditor

RE: CKEditor

2009-11-11 Thread Terry Troxel
No I do mean CKEditor by the same guys who wrote FCKEditor. http://ckeditor.com/ I downloaded it last night and then I couldn't sleep until I got it to work. Here's my code that works and I haven't gotten into CKFinder (their file/image browser) yet, but that's later today. html head

RE: CKEditor

2009-11-11 Thread brad
If you're referring to the NEW version of FCKEditor (which has had the F dropped and is now called CKEditor), ColdFusion does not use that newer version for the built-in cfform tag. You can use still the new version though by simply including the appropriate JS files (it runs on jQuery now

Re: CKEditor

2009-11-11 Thread Phillip Vector
tired of people like me always seeing it as, F*CKEditor, if you take my meaning.  :-) On Wed, Nov 11, 2009 at 6:21 AM, Will Swain w...@hothorse.com wrote: Assuming you mean FCKEditor, it's right there - cftextarea richtext=true gives you a FCKEditor textarea. You can mess about with it. Check

RE: CKEditor

2009-11-11 Thread Will Swain
Ah yes. Got ya. :) w -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: 11 November 2009 13:48 To: cf-talk Subject: Re: CKEditor FCKEditor renamed itself to http://ckeditor.com Same diff. Guess they got tired of people like me always seeing it as, F*CKEditor

Re: CKEditor

2009-11-11 Thread Gerald Guido
Guess they got tired of people like me always seeing it as, F*CKEditor, if you take my meaning. :-) You mean it is NOT pronounced that way. Well, that explains a lot. G! -- Gerald Guido http://www.myinternetisbroken.com Wait. We can't stop here. This is bat country. -- HST

Re: CKEditor

2009-11-11 Thread morgan l
, 2009 at 5:48 AM, John M Bliss bliss.j...@gmail.com wrote: FCKEditor renamed itself to http://ckeditor.com Same diff. Guess they got tired of people like me always seeing it as, F*CKEditor, if you take my meaning. :-) On Wed, Nov 11, 2009 at 6:21 AM, Will Swain w...@hothorse.com

Re: CKEditor

2009-11-11 Thread Tony Bentley
I use it all of the time. It can be used in a number of ways. I like the ease of clicking something that replaces the content within an element (textarea or div) and loads after the page loads. I have an application that uses a custom tag to instantiate it: cfparam name=attributes.html

Re: CKEditor

2009-11-11 Thread Mike Kear
FCKEditor was named by Frederico C Knabben (a Dutchman I believe) who wrote it.Over time a lot of English speakers suggested he find another name for his product, because of the obvious issue when it's used in English. More than once I've had a client call me and ask why I'm putting obscene