After installation of the module and going through steps 1-8 of README.TXT, I do not see any CKEDITOR UI controls with the textareas of "Create Node" page.

I do see a togggle link "Switch to plain text editor", but it does not do anything.

Firefox error log shows the following message:
Error: m.lang.contextmenu is undefined
Source File: http://retrovert.net/sites/all/modules/ckeditor/ckeditor/ckeditor.js?I
Line: 47

The site is set up to use 2 languages for entering content.

I am just starting to build the site, and I am new to Drupal, so I apologize if I'm not following any procedures Drupal community has.

Sender Fridland

CommentFileSizeAuthor
ckeditor-11-16-10-screenshot.jpg47.27 KBsenderf
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

senderf’s picture

The version of CKeditor with which I had this problem was 3.4.2.
I replaced this version with an earlier 3.3.1 and the problem dissapeared.

I'm still leaving this issue open for now - going back to an earleier version is a fallback, not a problem resolution.

wop’s picture

I had the same problem. Resolved it by correctly setting the path to ckeditor.js according to
http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Specifying_the_Ed... :

<script type="text/javascript">
var CKEDITOR_BASEPATH = '/ckeditor/';
</script>

Remember that the path must start at the website's document root. In my case the correct path was '/js/ckeditor/'

bonn’s picture

I use http://ftp.drupal.org/files/projects/ckeditor-6.x-1.2.tar.gz installed it... http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.5/ckeditor_3... copied to sites/all/libraries/

My system is Fedora 14, apache 2, php5.3, Fresh drupal 620 with garland
Then creating story node. The ckeditor interface is shown at first. then I refresh the page, now it's gone....
refresh again and again, still blank body, teaser...

I switched to my Windows system, XAmpp 1.7.2, apache2, php5.3, Fresh drupal 620 with garlan
Same as above, but the editor is shown all the time...

I switched again to my client system, Fedora 8, apache2, php 5, Fresh drupal
this time, the editor shows all the time...

Is there any suggestion why on my linux sytem it fails to load??

dczepierga’s picture

@bonn, do u have any errors in firebug?

bonn’s picture

sorry long reply, I decided to reinstall my Fedora, it's all working now though...
I forgot what firebug said at that moment, sorry for long reply

jcisio’s picture

Status: Active » Fixed

Both problems were solved mysteriously!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

domidc’s picture

Had the same problem when extracting a site from drupalgardens. Just upgrade to latest 6.1. to solve.

StephenRobinson’s picture

I upgraded to http://ftp.drupal.org/files/projects/ckeditor-7.x-1.x-dev.tar.gz, and nothing was fixed. Strangely I downloaded http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.6.2/ckeditor... even though it was the same version I thought I had, and things started working again, think I had an old version of the plugin?

Greg Varga’s picture

Without reopening this issue, I just wanted to add, that this error can occur if there are not enough permissions to access the js files on the server. (you will get 403 errors)
I hope this helps someone out there. :)

ovi_mihai’s picture

Project: CKEditor 4 - WYSIWYG HTML editor » FCKeditor - WYSIWYG HTML editor

The problem seems to be from the language detection mechanism

CKEDITOR.lang.detect( 'en' ) - returns en-gb on my machine.

you can try

CKEDITOR.editorConfig = function( config )
{
	if (CKEDITOR.lang.detect( 'en' ) == 'en-gb') {
		config.language = 'en';
	}

...
}