I migrate IMCE 6.1.3 to 6.2.beta3.

I can't send image selected to my editor...no button for that (IE6 and Mozilla 3.6.3)

I have only these button : upload, thumbnails, delete, resize.

CommentFileSizeAuthor
#23 stuck.JPG37.52 KBlaurenco
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

titicaca37’s picture

Hi,
I have the same Problem in IE7, IE8. It works fine in Opera/Firefox/Chrome. Found out that the button appears in IE when disabling jquery_update (newest dev).

hobo’s picture

I'm having the same problem.. using fckeditor (latest stable) and imce 1.4 (not using wysiwyg)

Mario2’s picture

I have the same problem with BuEditor on Opera 10.54 and Mozilla 3.6.4 and chrome too 5.0.375.70 .... i dont use IE so i dont know.
I moved from imce 6.x-13 to 14 which had some error too...

simonoh’s picture

I have the same problem aswell.

I noticed Views Rotator in a podcast and installed CCK, IMCE and IMCE Image to try this, but IMCE does not show the "Send to editor"-button when trying to add an image to my content type.

Thanks,

Simon

comrax’s picture

I'm having the same error 6.17 imce ver 2 on imce cck doesn't show up in firefox 3.6 or chrome
could it be a config issue?

tomfallowfield’s picture

I had this problem but it turned out to be because of SSL. Secure pages was redirecting /admin* to https, but the IMCE interface exists at /imce. I just added imce* to the list of paths to be redirected in the secure pages settings and everything works perfectly. It was treating http and https as two different sessions, which of course they are.

kenwest’s picture

Thanks, Tom.

Your fix solved the issue for me!

simonoh’s picture

I'm not using Secure Pages on my site, but I still have this problem. Should I start using it?

KathleenG’s picture

I just wanted to chime in because I am having this issue as well. In Chrome and Firefox there is only a cancel button. It works fine in IE.

sher1’s picture

Also having this problem, although it is not displaying for any browsers

ufku’s picture

Category: bug » support
rodonnell’s picture

Same issue - tried it in FireFox 3.6.6, IE 8 and Chrome 5.0, and the button was missing from all of them.

t-wheeler’s picture

Noticed after upgrade the common settings did not retain the previous field name for "Enable inline image/file insertion into plain textareas: ". After adding the field name, this issue was resolved for me.

Others may have tried this already; just adding the comment in case it helps.

loewenconsulting’s picture

Version: 6.x-2.0-beta3 » 6.x-2.0-rc1

I believe I'm having the same problem, but only when using a CCK IMCE Image field. My TinyMCE editor can insert an image without problems, but within the same node, my IMCEImage field don't have the "Insert File" button. IMCE 6.x-2.0-rc1, IMCEImage 6.x-1.0-beta2

pal_ur’s picture

Same problem, only in CCK IMCE Image Field.

igorski’s picture

Same problem here with CCK IMCE Image Field and IE8.
There is no error message, but it seems like setSendTo is never being called.

nguyenbn’s picture

I found a quick fix...

Inside: modules/imceimage/imceimage.js

1. I commented out lines 13-15
---------------------------
// imceImage.pop['imceOnLoad'] = function (win) {
// win.imce.setSendTo(Drupal.t('Add image to @app', {'@app': Drupal.t('imceimage')}), imceImage.insert);
// }

2. Change line 12 from
imceImage.pop = window.open(url, '', 'width=760,height=560,resizable=1');

to

imceImage.pop = window.open(url + '?app=myApp|imceload@setInsertButton', '', 'width=760,height=560,resizable=1');

3. At the end of the file, add
setInsertButton = function (win) {
win.imce.setSendTo(Drupal.t('Add image to @app', {'@app': Drupal.t('imceimage')}), imceImage.insert);
}

By sending "?app=myApp|imceload@setInsertButton" to "/imce", that calls setInsertButton after the window is opened. I'm not sure if that's the best way to do it, but it worked for me.

Source: http://ufku.com/drupal/imce/api

sher1’s picture

Suggestion in #17 worked for me. Had to clear the cache after making the changes

verta’s picture

It WAS working and then stopped. We do not use https.

Will try #17, but have a question re #13 - what is the field name to enter?

saepl’s picture

I had to add
user
imce
imce/*

to my list of pages on which to enable SSL Cert then it worked!

quotientix’s picture

I'm still having the problem in IE.

Any more ideas?

Mark0s81’s picture

suggestion #17 work for me.

thanks.

laurenco’s picture

Hallo,

Please help me, because i tried suggestion #17 and nothing:(
I have these modules:
Drupal core 6.19
IMCE Wysiwyg bridge 6.x-1.1
Wysiwyg 6.x-2.1
IMCE 6.x-2.0-rc2

Meybe there are other module like imce?

bibimo’s picture

Hello,

I have the same module and problem that laurenco #23
How fix it?

Thanks

jasonabc’s picture

#6 solved this issue for me - thanks Tom!

wheelercreek’s picture

Same issue here, #17 did not work for me, and we're not using SSL. It works great in firefox but not in IE 7-8.

maddentim’s picture

Same issue here. now running the latest 2.0-rc2. No ssl, no google analytics, no jquery-update... no buttons. Weird thing, it does not work on my production site or neighboring staging site, but does work on the version of site running on my dev local machine. The database is older. Tried only chrome and firefox.

maddentim’s picture

The root cause of my issue is having Drupal for Facebook (fb) enabled. fb has a fb_preprocess_page function that adds its js to each page. For some reason, maybe on purpose, imce is not calling the preprocess functions. I ended up hacking the fb module to not add js to imce pages. Not sure it is correct, but it seems to be a workaround.

lupus78’s picture

Hey, found a solution. As maddentim in #25 suggested, the problem was in the JS files. I have one custom js file attached, which failed when included into the IMCE upload page. I had to modify that, to aviod the error and the buttons are back, and functioning!

maddentim’s picture

If you want to see my hack to fb to workaround this issue see here: http://drupal.org/node/971756#comment-3773216

cjtemple’s picture

I too was experiencing this problem, but wasn't using SSL but found that IE was chocking. I found that if you did a quick check you seemed to be able to get things to work.
/modules/imce/js/imce_set_app.js

change:
  for (var i in data) {
    var arr = data[i].split('@');
    arr.length > 1 && (appFields[arr[0]] = arr[1]);
  }
to:
  for (var i in data) {
	if(!isNaN(i)){
	    var arr = data[i].split('@');
    	arr.length > 1 && (appFields[arr[0]] = arr[1]);
	}
  }

I have tested this in Firefox 3.6.12, IE 8.0.7600.16385, and Safari 5.0.2

I am sure this isn't more than a hack but am more than willing to look into a better solution if anyone has any ideas.

maddentim’s picture

Looks like Dave Cohen committed a patch to the dev to fix this issue with needing to hack imce. See the patch here: http://drupal.org/node/981304#comment-3799042

Should be in the next RC if you don't want to do the patch manually...

NancyDru’s picture

Priority: Major » Critical
Status: Fixed » Active

I can confirm that the DFF -dev version fixes this problem - at least on my sites.

cpo’s picture

same problem (No button to send image file to my editor (ckeditor) for all users (user-1,.....). ) with 6.x-2.0-rc2
and firefox 3.6 or IE 7.0

NancyDru’s picture

Priority: Critical » Major
Status: Active » Fixed

If you are using Drupal for Facebook, see #32 and #33. There is no further value to "me too."

cpo’s picture

Priority: Critical » Major
Status: Active » Fixed

I don't use drupal for facebook. I reply to first message #1

NancyDru’s picture

Status: Fixed » Active
Ronino’s picture

I'm running Drupal 7 and had the same issue. It turned out that upgrading the ckeditor module (and not imce) to 7.x-1.x-dev as of Jan 13th fixed the problem for me which existed in 7.x-1.0-rc1.

Ronino’s picture

LOL, while I was testing ckeditor-7.x-1.x-dev and writing #38, 7.x-1.0 was released which - of course - also fixes the issue for me ;-).

bramick’s picture

I was this issue in IE 7/8 and corrected it when I upgraded to 6.x-2.1

mtunay’s picture

suggestion #6 was the solution for me..... THANKS!!!!!

:)

gregarios’s picture

Version: 6.x-2.0-rc1 » 6.x-2.1

Subscribing. I have the same problem with the "Insert Image" button missing only when using the "Add Image from Imce CCK Image module, even when the standard textarea TinyMCE interface shows the button on the same page. Changes from #17 didn't help.

gregarios’s picture

This thread comment has a solution in comment #10 I'm now using with success. Maintainers: Can this workaround be added to IMCE to solve the incompatibility somehow?

ufku’s picture

IMCE image is using a deprecated method of integration('imceOnLoad'). Use one of the integration methods mention in the readme.txt, which won't need patching any IMCE file.

Also note that, this thread is about ckeditor.

gregarios’s picture

IMCE image is using a deprecated method of integration('imceOnLoad'). Use one of the integration methods mention in the readme.txt, which won't need patching any IMCE file.

BELIEVE ME I would if I knew how. How about you take a look at Imce Image and roll the functionality into IMCE? ;-)

Sorry if the thread is wrong.

cpo’s picture

Version: 6.x-2.1 » 6.x-2.2

after upgrading 6x-1.3 to 6x-2.2,
I have the same problem with the "Insert Image" button missing only when using the "Add Image from Imce CCK Image module, even when the standard textarea Ckeditor interface shows the button on the same page.

curt2199’s picture

Version: 6.x-2.2 » 6.x-2.x-dev

I'm also missing the button while running the latest dev and not using SSL or the Secure Pages module... Any updates?

Also, this may be an issue involving the wysiwyg imce bridge module or the wyiswyg module because I am using those with Tinymce on this site but I'm using the same version of IMCE that people are seeing this issue with, on another client site running only CKEditor and IMCE modules without any issues.

mthomas’s picture

I'm missing this button when using the 6.x-2.3 and dev versions of IMCE. I'm not using secure pages. I'm using Bueditor.

I downgraded 6.x-1.4 to fix.

revnoah’s picture

Category: support » bug

IMCE Image fix from #17 worked perfectly. This should not have been necessary! I thought it was something I was doing until I searched online. Pretty glaring bug.

ufku’s picture

Category: bug » support
Priority: Major » Normal

This is not IMCE Image queue and reported issue is not related to it.

mthomas’s picture

I have this problem with BuEditor and IMCE 6.x.2.3. Subscribing.

thalles’s picture

Issue summary: View changes

It seems that this has many solutions.

thalles’s picture

thalles’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.