Dzisiaj pierwszy raz zobaczyłem na oczy FCKeditor. A wciągu weekendu mam zbudować, w oparciu o niego, panel administracyjny

Hmm, skonfigurowałem pliki :
editor/filemanager/browser/default/connectors/php/config.php
<?php // SECURITY: You must explicitelly enable this "connector". (Set it to "true"). $Config['Enabled'] = true ; // Path to user files relative to the document root. $Config['UserFilesPath'] = 'pliki/' ; ?>
editor/filemanager/upload/php/config.php
<?php // SECURITY: You must explicitelly enable this "uploader". $Config['Enabled'] = true ; // Path to uploaded files relative to the document root. $Config['UserFilesPath'] = 'pliki/' ; ?>
Mam formularz:
<?php $oFCKeditor = new FCKeditor('tekst') ; $oFCKeditor->BasePath = 'FCKeditor/'; $oFCKeditor->Value = $tekst; $oFCKeditor->Height = '300'; $oFCKeditor->Create(); ?>
z przekierowaniem do pliku "dodaj.php".
I tu mam pytanie: co ma się znaleźć w tym pliku?
Znalazłem funkcjię:
<script type="text/javascript">
window.parent.OnUploadCompleted( 'ErrorNumber', 'FileUrl', 'FileName', 'CustomMessage' );
</script>
Ale to chyba za mało

Z górki dzięki za pomoc