It appears that CKeditor 3.2 does not work with the latest Drupal module. The editor simply does not load and the following JS error appears:

Error: uncaught exception: [CKEDITOR.resourceManager.load] Resource name "drupalbreaks" was not found at "/commercialtire/sites/all/modules/ckeditor/plugins/drupalbreaks/undefined?t=A1PD".

The Drupal module does work with CKeditor 3.1.1. I realize that 3.2 was released today, but just thought I would make it known...

Comments

Anonymous’s picture

Confirming same issue.

chadd’s picture

confirmed here as well, and subscribe

artis’s picture

Confirmed error here too. I tried changing the version number in line 24 in ckeditor.config.js to:

  if (Drupal.ckeditorCompareVersion('3.2')) {

Didn't work.

drupalsteve’s picture

I'm having the same problem.

sterndata’s picture

subscribe

sterndata’s picture

Title: Drupalbreaks problem with CCK 3.2 » Drupalbreaks problem with CKEditor 3.2
mephir’s picture

Priority: Normal » Critical
Status: Active » Needs review
StatusFileSize
new1.89 KB

Attached patch solved this issue. Don't use this patch, please choose below.

mephir’s picture

Priority: Normal » Critical
Status: Active » Needs review
StatusFileSize
new1.89 KB

Fixed linktonode also.

wwalc’s picture

Priority: Critical » Normal
Status: Needs review » Active

This is a critical bug in CKEditor 3.2 (unfortunately). Please use 3.1.1 until a new version of CKEditor 3.2 will be available.

mephir’s picture

Priority: Critical » Normal
semiaddict’s picture

subscribe

sschwab’s picture

subscribe

chadd’s picture

using ckeditor 3.1.1 works fine

wwalc’s picture

Please redownload CKEditor 3.2 from http://ckeditor.com/download, clear browser's cache and the issue should be solved.

wwalc’s picture

Status: Needs review » Closed (fixed)
j0rd’s picture

Not working with CKEditor 3.6. Applied the patch, which seems to suggest it's the right code as per the current ckeditor API docs, but it's still not working.

j0rd’s picture

Removing this if statement in plugins/drupalbreaks/plugin.js seems to have resolved the issue.

//if ( Drupal.ckeditorTeaserInfo(editor.name) || Drupal.settings.ckeditor.teaser == editor.name ) {
..... code
//}

Here's the issue where I found this solution:
http://drupal.org/node/1077964