I am having issues with the new Firefox not working with FCK & Coldfusion. I found this in the forums, but I don't have access to the fckutils file on the server. Or am I missing something?
How do I get around this? Oh it does work in IE.
How do I get around this? Oh it does work in IE.
I was having trouble today with my install of FCK 2.6.4, after updating Firefox to 3.6.
I found a site (in German, had to run through babelfish) that had the fix, at least for the CF implementation. Likely if you are running FCK on a different platform, you can adapt the fix.
In the fckutils.cfm file, in that first function "FCKeditor_IsCompatibleBrowser", look for the line
stResult = reFind( "gecko/(200[3-9][0-1][0-9][0-3][0-9])", sAgent, 1, true );
and change it to
stResult = reFind( "gecko/(20[0-9][0-9][0-1][0-9][0-3][0-9])", sAgent, 1, true );
The original wouldn't match on a version date that was after 2009.
Now granted, the former would only match on 2003-2009, and the fix loses that "after 2003" bit, but it's a handy fix for the short term.
Re: fckutils.cfm file & FireFox
You can also try using built-in fck editor but not sure if that would fix the problem. Thankfully I have access to fckutills file so didn't have to look further. <cftextarea richtext="yes".....