bonjour
j'ai installé en local avec easyphp , ckeditor en php qui fonctionne parfaitement .voici le code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php require_once('Connections/cnx.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
 
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
 
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
 
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
 
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
  $updateSQL = sprintf("UPDATE fck_data SET `data`=%s WHERE id=%s",
                       GetSQLValueString($_POST['data'], "text"),
                       GetSQLValueString($_POST['id'], "int"));
 
  mysql_select_db($database_cnx, $cnx);
  $Result1 = mysql_query($updateSQL, $cnx) or die(mysql_error());
 
  $updateGoTo = "index.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
    $updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $updateGoTo));
}
 
mysql_select_db($database_cnx, $cnx);
$query_Recordset1 = "SELECT * FROM fck_data";
$Recordset1 = mysql_query($query_Recordset1, $cnx) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
 
include ("ckeditor/ckeditor.php") ;
 
puis
<form name="form" action="<?php echo $editFormAction; ?>" method="POST">
 
 
			Editeur de texte style word:<br />
			<textarea name="data"><?php echo $row_Recordset1['data']; ?></textarea>
			<script type="text/javascript">
				CKEDITOR.replace( 'data' );
			</script>
 
<input name="id" type="hidden" id="id" value="<?php echo $row_Recordset1['id']; ?>" />
			<input type="submit" />
			<input type="hidden" name="MM_update" value="form" />
 
	</form>
 
?>
le problème c'est l'intégration d'images, pour celà j'ai installé ckfinder .
j'ai modifier le fichier de ckeditor , config.js comme çà:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
CKEDITOR.editorConfig = function(config) {
   config.filebrowserBrowseUrl = '/kcfinder/browse.php?type=files';
   config.filebrowserImageBrowseUrl = '/kcfinder/browse.php?type=images';
   config.filebrowserFlashBrowseUrl = '/kcfinder/browse.php?type=flash';
   config.filebrowserUploadUrl = '/kcfinder/upload.php?type=files';
   config.filebrowserImageUploadUrl = '/kcfinder/upload.php?type=images';
   config.filebrowserFlashUploadUrl = '/kcfinder/upload.php?type=flash';
};
 
puis le fichier config.php de ckfinder
'enabled' => false,
j'ai bien le bouton explorer le serveur, mais je ne peux pas accéder à mon disque dur ou se trouvent les images.
erreur: L'URL requise n'a pu etre trouvée sur ce serveur
avez-vous eu ce problème et comment le résoudre,
Merci d'avance