Salve a tutti, volevo integrare in una mia pagina FCKeditor.
Scarico la versione 2.5.1 e ho messo la cartella FCKeditor nella locazione dove c'è il file .php dove dovrà comparire...
Seguo la guida di wiki.fckeditor.net per l' integrazione Php ma... non funziona!
Mi dice "The requested URL /FCKeditor/editor/fckeditor.html was not found on this server."
Vi allego il codice di prova.php:
<?php
include("FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="prova2.php" method="post">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
<input type="submit" value="Submit">
</form>
</body>
</html>