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
Comment #1
matt2000 commentedSame issue. Works in garland, but not my custom theme.
$scripts & $closure are both printed in the correct places.
Comment #2
ufku commentedTry forcing the integration by adding these lines to "custom javascript configuration" field under Advanced options of your fckeditor profile:
Comment #3
ufku commentedComment #4
imp_squared commentedFor me, the "Browse Server" button shows up using Firefox v2.0.0.14 but not while using IE v7.0.5730.11.
Comment #5
Julien PHAM commentedI 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
Comment #6
Julien PHAM commentedMmmm 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...
Comment #7
dan.crouthamel commentedThe other alternative is to turn off the "Add CAPTCHA administration links to forms" setting. That fixed it for me as well.
Comment #8
Julien PHAM commentedYes, that fixed it for me as well.
Comment #9
lfp_admin commentedI 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?
Comment #10
AlainS commentedI had installed the IMCE module before the FCK editor one. I uninstalled and reinstalled IMCE, and it works.
Comment #11
festus commentedIn 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;).
Comment #12
jimmb commentedHello, 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:
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
Comment #13
halver commentedHave you set up a profile in admin/settings/IMCE and assigned it to a role?
See: http://drupal.org/node/553616#comment-1998290
Comment #14
cpo commentedYou must install wysiwyg bridge. Problem solved for me
Comment #15
jimmb commentedThanks cpo,
That was the missing link in this mess.
Cheers,
Jim
Comment #16
Chad_Dupuis commentedWorks 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!
Comment #17
ufku commentedComment #18
surendra77c commentedIt 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';