FCKeditor vil ikke vise sit vindue :S
Hej jeg har lige instalerret fckeditor på min hjemmeside. Jeg har fulgt anvisningen men jeg får bare et "The webpage cannot be found" -> "HTTP 404 Not Found" :Sjeg går ingen php fejl
er er siden kode.
<?php
include("FCKeditor/fckeditor.php");
?>
<style type="text/css">
<!--
.style5 {color: #FF0000}
-->
</style>
<table width="598px" height="373px">
<tr>
<td>
<form action="edit.php" method="post">
<input name="do" value="jackrussell_historie" type="hidden" />
<input name="id" value="<?=$Get->id?>" type="hidden" />
<div align="center">Indhold:</div>
<div align="center"></div>
<div align="center"><!-- Initialise the editor -->
<?php
$oFCKeditor = new FCKeditor('contents');
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create();
?>
</div>
<div align="center"><input type="submit" name="gem" value="Gem" /></div>
</form>
</td>
</tr>
</table>
