I'm having a problem with CKEditor where, in IE8, I receive the following JavaScript error:

----------------------------------------
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; MS-RTC LM 8)
Timestamp: Tue, 14 Sep 2010 20:27:52 UTC

Message: 'length' is null or not an object
Line: 78
Char: 686
Code: 0
URI: http://web.clatsopcc.edu:8000/sites/all/libraries/ckeditor/ckeditor.js?I
----------------------------------------

I'm running Drupal 6.19 with CKEditor 3.4 and ckeditor module 1.x-dev. I have turned on CSS Optimization to remedy some of the IE problems, but it didn't fix this particular error. I've tried switching to the Garland theme, but it doesn't help. I also tried disabling the External Links module and Text Resize module, but that didn't help. I doubt it's a problem with Date Popup since it happens on pages that don't even relate to dates. Any ideas?

Comments

dczepierga’s picture

I try to reproduce that, but for me everything seems to work. Maybe it's problem with compatibility with one of modules that u have installed??

Maybe try to disable all installed modules (without CKEditor) and check that CKEditor work fine, after that enable one module and check, etc... This help us to reproduce your bug and fix it asap (if it will be possible).

dczepierga’s picture

Status: Active » Postponed (maintainer needs more info)
jlea9378’s picture

Status: Postponed (maintainer needs more info) » Active

I disabled every single 3rd party module (all but ckeditor, core-optional, and core-required) and I still have the problem.

Here's what appears in the HTML in the head section of the create page screen so that you can see what's loaded:

  <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/sites/all/libraries/ckeditor/ckeditor.js?I"></script>
<link rel="shortcut icon" href="/misc/favicon.ico" type="image/x-icon" />
    <title>Create Page | Clatsop Community College</title>
    <link type="text/css" rel="stylesheet" media="all" href="/sites/default/files/css/css_b6d9d7db0fd0b1050695974a6074f657.css" />
<link type="text/css" rel="stylesheet" media="print" href="/sites/default/files/css/css_51aabe6c6f2663ed7cfd4c2cc18e988d.css" />
    <script type="text/javascript" src="/misc/jquery.js?T"></script>
<script type="text/javascript" src="/misc/drupal.js?T"></script>
<script type="text/javascript" src="/misc/tabledrag.js?T"></script>
<script type="text/javascript" src="/misc/jquery.form.js?T"></script>
<script type="text/javascript" src="/misc/ahah.js?T"></script>
<script type="text/javascript" src="/misc/progress.js?T"></script>
<script type="text/javascript" src="/misc/teaser.js?T"></script>
<script type="text/javascript" src="/misc/textarea.js?T"></script>
<script type="text/javascript" src="/misc/collapse.js?T"></script>
<script type="text/javascript"> 
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, { "basePath": "/", "ckeditor": { "teaser": "edit-body", "module_path": "/sites/all/modules/ckeditor", "theme": "garland", "settings": { "edit-body": { "customConfig": "/sites/all/modules/ckeditor/ckeditor.config.js?1284162816", "defaultLanguage": "en", "toolbar": "DrupalFiltered", "enterMode": 1, "shiftEnterMode": 2, "toolbarStartupExpanded": true, "width": "100%", "height": 420, "skin": "kama", "format_tags": "p;div;pre;address;h2;h3;h4", "scayt_autoStartup": false, "forcePasteAsPlainText": true, "filebrowserBrowseUrl": "/sites/all/libraries/ckfinder/ckfinder.html", "filebrowserImageBrowseUrl": "/sites/all/libraries/ckfinder/ckfinder.html?Type=Images", "filebrowserFlashBrowseUrl": "/sites/all/libraries/ckfinder/ckfinder.html?Type=Flash", "filebrowserUploadUrl": "/sites/all/libraries/ckfinder/core/connector/php/connector.php?command=QuickUpload\x26type=Files", "filebrowserImageUploadUrl": "/sites/all/libraries/ckfinder/core/connector/php/connector.php?command=QuickUpload\x26type=Images", "filebrowserFlashUploadUrl": "/sites/all/libraries/ckfinder/core/connector/php/connector.php?command=QuickUpload\x26type=Flash", "stylesCombo_stylesSet": "drupal:/sites/all/libraries/ckeditor.styles.js", "contentsCss": [ "/themes/garland/style.css?T", "/sites/default/files/color/garland-5a769963/style.css?T", "/sites/all/libraries/ckeditor.css?T" ] } }, "autostart": { "edit-body": true } }, "ahah": { "edit-attach": { "url": "/upload/js", "event": "mousedown", "keypress": true, "wrapper": "attach-wrapper", "selector": "#edit-attach", "effect": "none", "method": "replace", "progress": { "type": "bar", "message": "Please wait..." }, "button": { "attach": "Attach" } } }, "teaserCheckbox": { "edit-teaser-js": "edit-teaser-include" }, "teaser": { "edit-teaser-js": "edit-body" }, "tableDrag": { "upload-attachments": { "upload-weight": [ { "target": "upload-weight", "source": "upload-weight", "relationship": "sibling", "action": "order", "hidden": true, "limit": 0 } ] } } });
//--><!]]>
</script>
    <!--[if lt IE 7]>
      <link type="text/css" rel="stylesheet" media="all" href="/themes/garland/fix-ie.css" />    <![endif]-->
  </head>
jcisio’s picture