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
look here:

https://sourceforge.net/forum/forum.php ... _id=379487
However, I can't seem to find the function:
Description
There is a javascript error when fckeditor is initiated in firefox (for version 3.6.0 of Drupal and 2.0 of FCKeditor)
Error: FCK.LinkedField has no properties
Source File: http://drupal/modules/fckeditor/lib//ed ... gecko_1.js
Line: 14
This is caused by the fact that the hidden textarea' name is not the same ans the instance name provided to FCKeditor. It works in IE because of the ol document.all behaviour (I suspect).
You need to make a trivial change to fckeditor.module in
function fckeditor_create_editor
change the InstanceName parameter so that the line reads
$link = "$base_path/editor/fckeditor.html?InstanceName=edit[$name]";
This then bring the instancename inline with the name of the textarea and fckeditor thenworks with IE and Firefox
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