README.txt says when using CKEditor module that you can activate the plugin:
Under Editor appearance > Plugins, check the CKEditor Link box.

There is no "Editor appearance > Plugins" in /admin/settings/ckeditor

I'm using CKEditor 6.x-1.2 -- requirements on module page say CKEditor module, version 6.x-1.0 or above

What am I missing? I've checked all profiles in /admin/settings/ckeditor, definitely not a checkbox under "Editor appearance" for plugins.. I've cleared my site cache a few times.. Everything else as far as menus/forms go in the admin are there.

Comments

tmsimont’s picture

Title: Need to update docs and/or module page, no documented way to activate with CKEditor 6.x-1.2 » No way to activate per included README.txt

I found the answer in an old revision of the module page:

to activate:

in ckeditor.config.js, at the very bottom of the file, add this:

if (Drupal.settings.ckeditor_link) {
    config.extraPlugins += (config.extraPlugins) ? ',drupal_path' : 'drupal_path';
    CKEDITOR.plugins.addExternal('drupal_path', Drupal.settings.ckeditor_link.module_path + '/plugins/link/');
  }

I'm assuming this was taken down and CKEditor has been upgraded to include the checkboxes that I'm missing. The issue still remains, however, since the docs and module page don't reflect the requirement for a newer version of CKEditor module.

tmsimont’s picture

Title: No way to activate per included README.txt » Need to update docs and/or module page, no documented way to activate with CKEditor 6.x-1.2

changing title. cool module, btw, a must have!

anrikun’s picture

Title: No way to activate per included README.txt » Need to update docs and/or module page, no documented way to activate with CKEditor 6.x-1.2
Category: bug » task
Priority: Normal » Major

Turning this into a task.
You are right, there has been a lot of changes lately, both on the CKEditor module side and CKEditor Link side, that need to be documented.
I will update the project page ASAP.

Anyway, I suggest you upgrade to CKEditor 6.x-1.6 as the plugin checkboxes feature is really convenient.

devin carlson’s picture

Status: Active » Closed (fixed)

Both CKEditor and CKEditor Link have gone through a number of revisions since this issue was created. I haven't been able to reproduce any problems with any of the latest releases of the module or the editor.