Hallo,
I'm quite new with Drupal 7. I use the default theme of drupal 7. I installed the wysiwyg module with the fckeditor. After that i configured the FCK and Wysiwyg to upload files via a button and its working perfectly. But now I dont want the default filebrowser. So i decided to install IMCE and the Wysiwyg IMCE bridge modul.
But still I'm not able to use IMCE here are my config files
drupal-7.0/sites/default/modules/wysiwyg/editors/fckeditor.inc
function wysiwyg_fckeditor_settings($editor, $config, $theme) {
$settings = array(
'EditorPath' => base_path() . $editor['library path'] . '/',
'SkinPath' => base_path() . $editor['library path'] . '/editor/skins/' . $theme . '/',
'CustomConfigurationsPath' => base_path() . drupal_get_path('module', 'wysiwyg') . '/editors/js/fckeditor.config.js',
'Width' => '100%',
'Height' => 420,
'LinkBrowser' => FALSE,
'LinkUpload' => FALSE,
'ImageBrowser' => TRUE,
'ImageUpload' => FALSE,
'FlashBrowser' => FALSE,
'FlashUpload' => FALSE,
// By default, FCKeditor converts most characters into HTML entities. Since
// it does not support a custom definition, but Drupal supports Unicode, we
// disable at least the additional character sets. FCKeditor always converts
// XML default characters '&', '<', '>'.