After migration from 2.0FC to 2.0, I always get the following error:
Error: FCK.LinkedField has no properties
Source File: .../fckeditor/editor/js/fckeditorcode_gecko_1.js
Line: 14
Nothingn else hase changed as integration code. It looks that FCK don't get initalized before FCKTools gets created.
Error: FCK.LinkedField has no properties
Source File: .../fckeditor/editor/js/fckeditorcode_gecko_1.js
Line: 14
Nothingn else hase changed as integration code. It looks that FCK don't get initalized before FCKTools gets created.

Editor fails to target the textarea with ID
eg: <textarea name="htmlarea" name="source"></textarea>
should beb targed by "source" instead of "htmlarea"
In our case, id is always htmlarea but name will vary, so we could hack the call by :
var field = document.getElementById("htmlarea");
var oFCKeditor = new FCKeditor(field.name, '100%', '100%') ;
RE: Migration to 2.0: FCK.LinkedField don't e
Unfortunately, I can't hack it, since it's already been deployed with different ID's & NAME.
It works in Firefox if both the ID & Name are the same (or u remove the ID):
<textarea id="FCKeditor1" name="fckeditor1">
However, Firefox doesn't work if the ID & Name are different:
<textarea id="FCKeditor1" name="fckeditor1X">
It did work with RC2 & FC ... stopped working in the Final.
RE: Migration to 2.0: FCK.LinkedField don't e
https://sourceforge.net/forum/forum.php ... _id=379487
http://drupal/modules/fckeditor/lib//ed ... gecko_1.js
RE: Migration to 2.0: FCK.LinkedField don't exist
we have the same problem with the firefox and FCKeditor.
I have tried to find the file or function to change the InstanceName parameter, unfortunately without success. Could you explain the file where i must change the parameter.
We are working with the php Version ->
only similar code i have found is in the fckeditor.php :
function CreateHtml() .......
$Link = "{$this->BasePath}editor/fckeditor.html?InstanceName={$this->InstanceName}" ;
Thanks