looking at my error report I am seeing 3 plugins that don't exist being reported as not found

fckeditor/editor/plugins/indexOf/fckplugin.js
fckeditor/editor/plugins/forEach/fckplugin.js
fckeditor/editor/plugins/filter/fckplugin.js

the site I cloned doesn't have these errors and all the files from that site, match the new site.

few of the referring pages:
fckeditor/editor/fckeditor.html?InstanceName=edit-signature&Toolbar=Wysiwyg
fckeditor/editor/fckeditor.html?InstanceName=edit-comment&Toolbar=Wysiwyg
fckeditor/editor/fckeditor.html?InstanceName=edit-body&Toolbar=Wysiwyg

ideas?

Comments

twod’s picture

Status: Active » Postponed (maintainer needs more info)

This is just a guess, but are you by any chance using another JavaScript library which may be adding things to the Object and/or Array prototypes?

CobraMP’s picture

well I was wrong before, it is happening on both sites. As far as using another javascript library I assume if I was that I would have had to knowingly do it. here is the full error report

Location http://www.mysite.com/sites/all/libraries/fckeditor/editor/plugins/filte...
Referrer http://www.mysite.com/sites/all/libraries/fckeditor/editor/fckeditor.htm...
Message sites/all/libraries/fckeditor/editor/plugins/filter/fckplugin.js

content not found errors in user tracking logs to. I have editor set to appear on the same page so coming up a lot.

twod’s picture

The names of the missing "plugins" look a lot like names of convenience-/utility-methods found in several JavaScript libraries.
Maybe some module you are using has included such a library (or implements them on its own). Mind posting a list of the modules you are using? You can exclude all the Drupal Core modules and those which do not affect the node editing page at all (if unsure, please include it).

It would also be helpful with a list of the script files included in the page head and closure.

Wysiwyg passes an array from its Drupal.settings.wysiwyg object containing plugin names to the editor when it's initialized and it looks like something is inserting extra properties or values into it. If we find which module or script is doing this, we'll be able to find a way to co-exist with it.

CobraMP’s picture

I can make it appear every time an authenticated user clicks on a "reply" link or the "comment" link from a teaser. Strangely I don't get the error doing that from my admin acct. I have both blogs and forums setup so the editor shows up at the bottom but only when viewing a blog post do I see the error but in the forums I have to use a reply link to get it.

Activity
Admin Menu
chaos tools - page manager, views content panes
nodewords
notifications
advanced blog
advanced forum
better formats
comment mover
flat comments
global redirect
kontera
lightbox2
page title
path redirect
pathauto
profile pictures
quote
service links
signature for forums
imce bridge
user titles
xml sitemap

<script type="text/javascript"> 
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, { "basePath": "/", "CTools": { "pageId": "page-fcb268a12d908a12eafb14461c3de453" }, "user_relationships_ui": { "loadingimage": "/sites/all/modules/user_relationships/user_relationships_ui/images/loadingAnimation.gif", "savingimage": "/sites/all/modules/user_relationships/user_relationships_ui/images/savingimage.gif", "position": { "position": "absolute", "left": "0", "top": "0" } }, "facebook_status": { "autofocus": false, "noautoclear": false, "maxlength": "140", "refreshLink": false, "ttype": "textarea" }, "wysiwyg": { "configs": { "fckeditor": { "global": { "editorBasePath": "/sites/all/libraries/fckeditor", "execMode": "" }, "format2": { "EditorPath": "/sites/all/libraries/fckeditor/", "SkinPath": "/sites/all/libraries/fckeditor/editor/skins/default/", "CustomConfigurationsPath": "/sites/all/modules/wysiwyg/editors/js/fckeditor.config.js", "Width": "100%", "Height": 420, "LinkBrowser": true, "LinkUpload": false, "ImageBrowser": true, "ImageUpload": false, "FlashBrowser": true, "FlashUpload": false, "IncludeLatinEntities": false, "IncludeGreekEntities": false, "FontFormats": "p;address;pre;h2;h3;h4;h5;h6;div", "FormatSource": 0, "FormatOutput": 0, "AutoDetectPasteFromWord": 0, "ToolbarSet": "Wysiwyg", "buttons": [ [ "Bold", "Italic", "Underline", "StrikeThrough", "JustifyLeft", "JustifyCenter", "JustifyRight", "JustifyFull", "UnorderedList", "OrderedList", "Outdent", "Indent", "Link", "Unlink", "Image", "TextColor", "BGColor", "Blockquote", "Source", "Rule", "Cut", "Copy", "Paste", "PasteText", "PasteWord", "RemoveFormat", "FontName", "FontSize", "Table", "Smiley", "SpellCheck", "break" ] ], "LinkBrowserURL": "/imce?app=fckeditor%7Curl%40txtUrl", "ImageBrowserURL": "/imce?app=fckeditor%7Curl%40txtUrl%7Cwidth%40txtWidth%7Cheight%40txtHeight", "FlashBrowserURL": "/imce?app=fckeditor%7Curl%40txtUrl" } }, "nicedit": { "global": { "editorBasePath": "/sites/all/libraries/nicedit", "execMode": "" }, "format4": { "iconsPath": "/sites/all/libraries/nicedit/nicEditorIcons.gif", "buttonList": [ "bold", "italic", "underline", "strikethrough", "left", "center", "ul", "ol", "outdent", "indent", "image", "bgcolor", "hr", "link", "unlink", "fontFamily", "fontSize", "xhtml" ], "externalCSS": "/sites/all/themes/siobhan2/style.css" } } }, "disable": "Disable rich-text", "enable": "Enable rich-text", "plugins": { "format2": { "native": [  ], "drupal": { "break": { "title": "Teaser break", "icon": "/sites/all/modules/wysiwyg/plugins/break/images/break.gif", "iconTitle": "Separate the teaser and body of this content", "css": "/sites/all/modules/wysiwyg/plugins/break/break.css" } } }, "drupal": { "break": { "path": "/sites/all/modules/wysiwyg/plugins/break" } } } } });
//--><!]]>
</script>

<div id="user_relationships_popup_form" class="user_relationships_ui_popup_form"></div><script type="text/javascript" src="/sites/default/files/js/js_33d85301fa334f11501dd4277d4c1c39.js"></script>
sun’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)

This looks like a bug upstream in the FCKeditor editor library. Nothing we could fix in this module.