Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Horodateur : Tue, 17 May 2011 07:19:13 UTC
Message : Impossible d'activer le contrôle car celui-ci est, soit invisible, soit inactif, soit d'un type ne reconnaissant pas cette fonctionnalité.
Ligne : 137
Caractère : 1781
Code : 0
URI : http://xxxx/ckeditor/ckeditor.js?t=B49E5BQ
Message : Impossible d'activer le contrôle car celui-ci est, soit invisible, soit inactif, soit d'un type ne reconnaissant pas cette fonctionnalité.
Ligne : 137
Caractère : 1904
Code : 0
URI : http://xxxx/ckeditor/ckeditor.js?t=B49E5BQ
Tue, 05/17/2011 - 09:26
#1

Re: CKeditor error with IE8 when opening image manager
This bug only appears when i didn't clic onto form field, so it hasn't focus.
Re: CKeditor error with IE8 when opening image manager
Re: CKeditor error with IE8 when opening image manager
function get_ckeditor() { require_once(DIR_FS_ADMIN . 'ckeditor/ckeditor.php'); require_once(DIR_FS_ADMIN . 'ckfinder/ckfinder.php'); $CKEditor = new CKeditor(); $CKEditor->basePath = HTTP_SERVER . 'ckeditor/'; $CKEditor->returnOutput = true; $ckfinder = new CKFinder(); $ckfinder->BasePath = DIR_WS_ADMIN . 'ckfinder/'; $ckfinder->SetupCKEditorObject($CKEditor); return $CKEditor; }$CKEditor = get_ckeditor(); $config = array(); $config['toolbar'] = array(array('Image')); if ($height > 0) $CKEditor->config['height'] = $height; if ($width > 0) $CKEditor->config['width'] = $width; if ($text != '') { if (!$filter_text) { $text = '<img src="' . DIR_WS_CATALOG_IMAGES . $text . '" alt="" />'; } else $text = html_entity_decode(stripslashes($text)); //Utile pour tep_cfg_logo } $field = $CKEditor->editor($name, $text, $config); echo $field;Re: CKeditor error with IE8 when opening image manager
http://ckeditor.com/demo
Re: CKeditor error with IE8 when opening image manager
#2 I can't reproduce it here.
Re: CKeditor error with IE8 when opening image manager
So this looks like some bug/issue in your settings/installation. On demo page there is always the latest stable version of CKEditor (now this is 3.6).
Please try reinstall your editor or back to default settings.
Remember that in _samples directory of CKEditor there are samples files and you can look for different setting/test of editor there.
Re: CKeditor error with IE8 when opening image manager
At least that worked for me.
i.e.
<textarea cols="70" rows="10" name="myEditor" id="myEditor"> </textarea>
Hope this helps (if you haven't found a solution yet!)
- Tim