This is caused when you have a syntax error in your fckconfig.js file.
For example, check your FCKConfig.ToolbarSets and be sure that your toolbar sets end with a "]" symbol and not a "," if you edited or removed any icons from your toolbars.
For example, if you removed or commented out the ['About'] line, be sure the previous line looks like: ['TextColor','BGColor'] and not like ['TextColor','BGColor'],
RE: Error in IE6
<script type="text/javascript">
window.onload = function() {
var oFCKeditor = new FCKeditor( 'fArticle[article_content]' ) ;
oFCKeditor.BasePath = "fckeditor/" ;
oFCKeditor.FCKLang = "en";
oFCKeditor.Height = 400;
oFCKeditor.Width = "100%";
oFCKeditor.ToolbarSet = "Basic";
oFCKeditor.Config['SkinPath'] = "skins/office2003/";
oFCKeditor.Config["AutoDetectLanguage"] = true ;
oFCKeditor.Config["DefaultLanguage"] = "en" ;
if ( ! document.all )
oFCKeditor.Config['EnableXHTML'] = false ;
oFCKeditor.ReplaceTextarea();
}
</script>
<textarea name="fArticle[article_content]" id="fArticle[article_content]">my content alkdjf laskdj flasdj f</textarea>
RE: Error in IE6
RE: Error in IE6
RE: Error in IE6
For example, check your FCKConfig.ToolbarSets and be sure that your toolbar sets end with a "]" symbol and not a "," if you edited or removed any icons from your toolbars.
For example, if you removed or commented out the ['About'] line, be sure the previous line looks like:
['TextColor','BGColor']
and not like
['TextColor','BGColor'],
Good luck