J'ai installé souvent FCKeditor pour différentes versions de PHP, 4 ou 5.
Mais cette fois-ci j'obtiens le message d'erreur suivant :
Fatal error: Class 'FCKeditor' not found in /home/www/vhosts/csmota.qc.ca/httpdocs/graphinet/add_modif_sections.php on line 118
La version de PHP est 5.0.4.
Savez-vous d'où vient cette erreur?
CODE
<?php include("fckeditor/fckeditor.php"); ?>
<?php
$oFCKeditor = new FCKeditor('contenu');
$oFCKeditor->Config["CustomConfigurationsPath"] = 'fckconfig_graphinet.js';
$oFCKeditor->BasePath = 'fckeditor/';
$oFCKeditor->Value = $contenu;
$oFCKeditor->Width = '453';
$oFCKeditor->Height = '400';
$oFCKeditor->Create();
?>
<?php
$oFCKeditor = new FCKeditor('contenu');
$oFCKeditor->Config["CustomConfigurationsPath"] = 'fckconfig_graphinet.js';
$oFCKeditor->BasePath = 'fckeditor/';
$oFCKeditor->Value = $contenu;
$oFCKeditor->Width = '453';
$oFCKeditor->Height = '400';
$oFCKeditor->Create();
?>
Merci pour votre aide!