To make the FCK editor work with FormHandler, We had to change the following thing: In the file /editor/filemanager/connectors/php/config.php: Line 30: Enable file browsing ----------------------------- $Config['Enabled'] = false ; into $Config['Enabled'] = true ; Line 34: Use serverpath from FH ----------------------------- $Config['UserFilesPath'] = '/userfiles/' ; into $Config['UserFilesPath'] = $_GET['ServerPath'].'/' ; In order to upload in 1 directory: LINE 125 / 126: ------------------------------ $Config['FileTypesPath']['File'] = $Config['UserFilesPath'] . 'file/' ; $Config['FileTypesAbsolutePath']['File']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'file/' ; into $Config['FileTypesPath']['File'] = $Config['UserFilesPath'] . '' ; $Config['FileTypesAbsolutePath']['File']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'' ; LINE 132 / 133: ------------------------------ $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'image/' ; $Config['FileTypesAbsolutePath']['Image']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'image/' ; into $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . '' ; $Config['FileTypesAbsolutePath']['Image']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'' ; LINE 139 / 140: ------------------------------ $Config['FileTypesPath']['Flash'] = $Config['UserFilesPath'] . 'flash/' ; $Config['FileTypesAbsolutePath']['Flash']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'flash/' ; into $Config['FileTypesPath']['Flash'] = $Config['UserFilesPath'] . '' ; $Config['FileTypesAbsolutePath']['Flash']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'' ; LINE 146 / 147: ------------------------------ $Config['FileTypesPath']['Media'] = $Config['UserFilesPath'] . 'media/' ; $Config['FileTypesAbsolutePath']['Media']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'media/' ; into $Config['FileTypesPath']['Media'] = $Config['UserFilesPath'] . '' ; $Config['FileTypesAbsolutePath']['Media']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'' ; Added delete in default FCK filemanager ---------------------------------------- /editor/filemanager/connectors/php/ Added delete.php /editor/filemanager/browser/default/images/ Added trash.gif In /editor/filemanager/browser/default/frmresourceslist.html BETWEEN LINE 78 + 79 ADD: '   ' + To enable Browserfield with default filebrowser FCK In /editor/filemanager/browser/default/frmresourceslist.html replace: window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; WITH var naam = window.top.GetUrlParam( 'naam' ); if( naam ) { window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ), naam ) ; } else { window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; } We also changed the FCKeditor dialog: FCKeditor\editor\dialog\fck_about.html (Added FH compatible message) At last we removed all dirs starting with a _ (these are not needed) and we have removed all connectors except PHP. (so the package is smaller) Cheers, PHP-GLOBE info@php-globe.nl http://www.formhandler.net