I am using FCKEditor and IMCE, suddenly the Browse Server button on the Insert Image pop up for FCKEditor was not showing without doing/adding new modules on my site. The only change that I did was the themes, was using LiteJazz before, then shifted to SEOPosition. I already checked the page.tpl.php for the print $scripts and print $closure but they are already existing.

I also "reinstalled" both modules, but I still have the same issue. I can't seem to find the problem. Already browsed for issues here in the drupal.org and tried some of the solutions that i was able to read, but the button is still not showing.

Any help regarding the issue is greatly appreciated.

Comments

matt2000’s picture

Same issue. Works in garland, but not my custom theme.

$scripts & $closure are both printed in the correct places.

ufku’s picture

Try forcing the integration by adding these lines to "custom javascript configuration" field under Advanced options of your fckeditor profile:

LinkBrowser= true;
ImageBrowser= true;
FlashBrowser= true;
LinkBrowserURL= '/?q=imce/browse';
ImageBrowserURL= '/?q=imce/browse';
FlashBrowserURL= '/?q=imce/browse';
ufku’s picture

Category: bug » support
imp_squared’s picture

For me, the "Browse Server" button shows up using Firefox v2.0.0.14 but not while using IE v7.0.5730.11.

Julien PHAM’s picture

I have the same problem. Forcing it works, except that now I don't have the "send to fckeditor" button anymore, so I can't use the pictures I have uploaded.

Thanks

Julien PHAM’s picture

Mmmm I did some testing, and the issue is with the captcha module. I have disabled the captcha module and now it works. Don't know why...

dan.crouthamel’s picture

The other alternative is to turn off the "Add CAPTCHA administration links to forms" setting. That fixed it for me as well.

Julien PHAM’s picture

Yes, that fixed it for me as well.

lfp_admin’s picture

I have the same issue with the "Send to FCKEditor" button not showing up in the Browser. I don't have the CAPTCHA module installed, I've done a uninstall/reinstall of the latest FCKEditor and IMCE modules, and turned off Image and ImageAPI. Still nothing. Any suggestions?

AlainS’s picture

I had installed the IMCE module before the FCK editor one. I uninstalled and reinstalled IMCE, and it works.

festus’s picture

In reading the Drupal forum, there seem to be a number of issues related to the Browser Server button. For me, it was displaying in Firefox but not Safari. I am using FCKeditor-5.x-2.1 and IMCE-5.x-1.0. Inserting the code in the "custom javascript configuration" field as suggested by ufku fixed my problem. Thank you! The description which accompanies that section states that this information can be placed in the fckeditor.config.js file instead. That did not work, even when I prepended each line with FCKConfig. (e.g., FCKConfig.LinkBrowser= true;).

jimmb’s picture

Hello, I'm also having this problem. I've integrated FCKeditor_2.6.4.1 with wysiwyg-5.x-2.0, and have installed imce-5.x-1.2. The browse server button is not showing as it should be. I have checked page.tpl.php, and $scripts & $closure are both showing in the file. I also tried switching to Garland, but that didn't help.

I wanted to try the suggestion by ufku, but am unable to find an "Advanced options" area in the FCK editor profile. I'm thinking this is different somehow using WYSIWYG? I go to /admin/settings/wysiwyg/profile/x/edit, but all i see are:

  • Basic setup
  • Buttons and plugins
  • Editor appearance
  • Cleanup and output
  • CSS

Perhaps I'm missing something somehow - where exactly do you find the Advanced settings area?

Also, I wanted to try adding that code to "fckeditor.config.js", but cannot find that file in /sites/all/libraries/fckeditor/. The closest thing is "fckconfig.js", and I added it there, but it did not help.

So basically I've attempted to try everything I can find here, and nothing is working. Any help is much appreciated!

Jim

halver’s picture

Have you set up a profile in admin/settings/IMCE and assigned it to a role?
See: http://drupal.org/node/553616#comment-1998290

cpo’s picture

You must install wysiwyg bridge. Problem solved for me

jimmb’s picture

Thanks cpo,

That was the missing link in this mess.

Cheers,

Jim

Chad_Dupuis’s picture

Works for me. Everything was fine until recent upgrade to latest 5.x version of fckeditor with imce. After upgrade the browse server button was gone. These lines fixed the problem. Thanks!

ufku’s picture

Status: Active » Closed (fixed)
surendra77c’s picture

Issue summary: View changes

It work perfectely for me : Advanced options
of fckeditor insert the below code

LinkBrowser= true;
ImageBrowser= true;
FlashBrowser= true;
LinkBrowserURL= '/?q=imce/browse';
ImageBrowserURL= '/?q=imce/browse';
FlashBrowserURL= '/?q=imce/browse';