bonjour,
j'ai installé ckeditor mais dans le boutton image j'ai pas le bouton "browse server" et je ne peux pas uploader les images

voici comment j'ai installé l'editeur : j'ai juste copié ce code et le dossier ckeditor

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<title>exemple</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>

<script type="text/javascript" src="ckeditor/ckeditor.js"></script>

</head>
<body>
<form action="sample_posteddata.php" method="post">
<textarea cols="40" id="editor_v2" name="editor_v2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>

<script type="text/javascript">
//<![CDATA[

CKEDITOR.replace( 'editor_v2',
{
skin : 'v2'
});

//]]>
</script>

</form>


</body>
</html>