bonjour

j'integre ckeditor et ckfinder.

dans ma page d'appel:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
include_once "ckeditor.php";
include_once "../ckfinder/ckfinder.php";
puis ...
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
$CKEditor = new CKEditor();
// Set global configuration (will be used by all instances of CKEditor).
$CKEditor->config['width'] = 600;
$CKEditor->basePath = '';
//CKFinder::SetupCKEditor($CKEditor, '../ckfinder/');
$ckfinder = new CKFinder();
$ckfinder->BasePath = '../ckfinder/'; // Note: BasePath property in CKFinder class starts with capital letter
 $ckfinder->SetupCKEditorObject($CKEditor);	
 $CKEditor->editor("editor1", $initialValue);
CKEDITOR s'ouvre correctement, lorsque je clique sur l'icone IMAGE, le lien <Explorer le serveur> est affiché mais c'est à nouveau CKEDITOR qui s'ouvre.

j'ai fouillé ...
L'appel à la page qui contient l'instance à CKEDITOR contient des variables GET url. Et ces variables empêche l'appel à CKFINDER dans CKEDITOR.

en fait j'ai besoin de passer des arguments à cette page...
ya t il une config ckeditor autre ?

Merci pour l'aide