up vote 2 down vote favorite
1
share [g+] share [fb]

I wrote a CMS that utilizes the FCKEditor library, it has worked flawlessly, but recently has stopped working. Instead of showing all of the WYSIWYG controls it is just being rendered as a simple textarea.

I have not changed anything and it is happening to two different clients on two separate servers.

Does anyone have a clue what might be going on?

Thanks,

JS

link|improve this question

are you using a different browser? do you get any javascript errors? – Pbirkoff Feb 5 '10 at 15:17
1  
Sounds like you are getting a JS error, that is stopping FCK editor from executing. Can you share a link to the page in question? – Matt Feb 5 '10 at 15:20
What happens when you go to: [SERVER]/CFIDE/scripts/ajax/resources/cf/images/loading.gif Do you get a spinning icon – Sam Farmer Feb 5 '10 at 15:28
feedback

1 Answer

up vote 3 down vote accepted

The problem root problem was with a bug in the FCKEditor code related to Firefox and other Mozilla based browsers.

The problem is on line 47 of fckutils.cfm located in the root of the fckeditor install:

stResult = reFind( "gecko/(200[3-9][0-1][0-9][0-3][0-9])", sAgent, 1, true );

Yes that right any gecko browser made after Jan 1, 2010 will fail to match their test.

You can change it to something like this:

stResult = reFind( "gecko/(20[0-9][0-9][0-1][0-9][0-3][0-9])", sAgent, 1, true );

Thanks to Pete Freitag for posting an answer for this. For the complete answer take a look at:

http://www.petefreitag.com/item/737.cfm

link|improve this answer
Wow, great find .. +1! – Jas Panesar Feb 8 '10 at 6:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.