Hi,
I just got this Javascript alert - Error: The TEXTAREA with id or name set to 'insert' was not found - while trying to save content with FCK installed on our website.
The class which reports the error is FCKeditor.prototype.ReplaceTextarea in fckeditor.js
After a long search over the web resources without any solution I tried to check classes and functions.
Nothing.
This trouble appears only on a new server where I copied the site with FCK editor inside.
On my localhost and on the older server the same copy of the site works perfectly.
Any help?
Thanks
Patrizio
I just got this Javascript alert - Error: The TEXTAREA with id or name set to 'insert' was not found - while trying to save content with FCK installed on our website.
The class which reports the error is FCKeditor.prototype.ReplaceTextarea in fckeditor.js
After a long search over the web resources without any solution I tried to check classes and functions.
Nothing.
This trouble appears only on a new server where I copied the site with FCK editor inside.
On my localhost and on the older server the same copy of the site works perfectly.
Any help?
Thanks
Patrizio

Re: fckeditor.js Error: The TEXTAREA with id or name set to...
<script type="text/javascript" src="fckeditor/fckeditor.js"></script> <script type="text/javascript"> window.onload = function() { // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = "/fckeditor/" ; // "/fckeditor/" is the default value. var oFCKeditor = new FCKeditor("reply") ; oFCKeditor.BasePath = "fckeditor/" ; oFCKeditor.Height = 455 ; oFCKeditor.ReplaceTextarea() ; } </script>