Ok I used the search feature and found several topics about what I'm about to ask about. I did everything I could find in those and I'm still having this issue. I have FCKeditor on my site as part of a hybrid flash/html CMS. Now everything works perfectly fine going in when i'm adding new content, I'm able to load the html into flash without any issues. The issue i'm having is when I try to load it back into FCKeditor later to update content, its converting a lot of my characters to html special characters. It seems to be adding a lot of """ tags which is causing the images not to show up when editing the content.
I opened the fckconfig.js file and changed the following settings based on what I was able to find on the forum and in the documentation:
But it still seems to be happening with no difference. Is there anything else that could be causing this issue?
I opened the fckconfig.js file and changed the following settings based on what I was able to find on the forum and in the documentation:
FCKConfig.CustomConfigurationsPath = '' ; FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ; FCKConfig.EditorAreaStyles = '' ; FCKConfig.ToolbarComboPreviewCSS = '' ; FCKConfig.DocType = '' ; FCKConfig.BaseHref = '' ; FCKConfig.FullPage = false ; // The following option determines whether the "Show Blocks" feature is enabled or not at startup. FCKConfig.StartupShowBlocks = false ; FCKConfig.Debug = false ; FCKConfig.AllowQueryStringDebug = true ; FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ; FCKConfig.SkinEditorCSS = '' ; // FCKConfig.SkinPath + "|<minified css>" ; FCKConfig.SkinDialogCSS = '' ; // FCKConfig.SkinPath + "|<minified css>" ; FCKConfig.PreloadImages = [ FCKConfig.SkinPath + 'images/toolbar.start.gif', FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif' ] ; FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ; // FCKConfig.Plugins.Add( 'autogrow' ) ; // FCKConfig.Plugins.Add( 'dragresizetable' ); FCKConfig.AutoGrowMax = 400 ; // FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ; // ASP style server side code <%...%> // FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code // FCKConfig.ProtectedSource.Add( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi ) ; // ASP.Net style tags <asp:control> FCKConfig.AutoDetectLanguage = false ; FCKConfig.DefaultLanguage = 'en' ; FCKConfig.ContentLangDirection = 'ltr' ; FCKConfig.ProcessHTMLEntities = false ; FCKConfig.IncludeLatinEntities = false ; FCKConfig.IncludeGreekEntities = false ; FCKConfig.ProcessNumericEntities = false ; FCKConfig.AdditionalNumericEntities = '' ; // Single Quote: "'" FCKConfig.FillEmptyBlocks = false ; FCKConfig.FormatSource = false ; FCKConfig.FormatOutput = false ; FCKConfig.FormatIndentator = ' ' ;
But it still seems to be happening with no difference. Is there anything else that could be causing this issue?