IMCE, faltan opciones en el filebrowser.
Hola a todos, hace unos dias puse el siguiente post
Tengo un grave problema que no atino a solucionar. Estoy haciendo una web con drupal 6.1. Para el editor he usado FCKEditor y para las imágenes IMCE. Al ir a introducir una imagen, pinchamos en "Ver servidor" y nos aparece el file browser. Bien, en las opciones de la parte superior aparece:
Upload | Thumbnails | Borrar | Resize | Send to FCKEditor
Bueno, pues con el tema acrylic sólo aparece:
Upload | Send to FCKEditor
Como nadie sabia la solución, me armé de valor, y con mi pobre ingés postee el problema en la página de drupal. Obtuve respuesta, pero entre mi escaso inglés y mis cortos conocimientos de programación no me entero muy bien.
Bueno su respuesta fue esta:
Hi,
I had a the same problem with my own template and I can at least tell you why this issue occurs and which workaround I used.
When some JavaScript from your Template and some JavaScript from IMCE use the same function names, namespaces or act on same DOM-nodes, something crashes, like the options bar.
So, it is very likely that your specific theme includes a certain JavaScript that interferes with the IMCE JavaScript files.
Your template defines it's JavaScript files that it want to use in it's themename.info file and it is loaded by calling drupal_get_js()
in sites/modules/imce/tpl/imce-page.tpl.php so, two things you can do now: find out what particular JavaScript file from themename.info causes the conflict, remove this entry from themename.info, go to the head section of your page.tpl.php and add the JavaScript reference by hand.
(use Firebug and disable the included js-references one by one)
that would probably be the best solution.
what I did is: change to a working theme (e.g. garland), open IMCE (that should work for the moment), open the HTML source
and copy the head-section, paste it into imce-page.tpl.php and removed all unnecessary CSS and JS references.
this should be done very carefully, because IMCE pushes some settings to jQuery.extend-Drupal.settings that might be
user-sensitive.. so I would not recommend this if you use IMCE with different profiles.
to the IMCE people I would recommend, to hardly reconsider if drupal_get_css and drupal_get_js make sense in imce-page.tpl.php
because there is no need to include theme-specific stuff and as you see, it causes only problems.
so probably it would be a good idea to find another way to propagate the IMCE js+css to the template-files OR you switch
to a working admin theme (e.g. garland) for IMCE. Admins (like me) who only have a custom frontend-template use always
a drupal standard theme as admin theme, so it would be a good idea to use the admin-theme (if enabled) for IMCE too.
Intenté hacer lo que dice (o al menos lo que pude entender) pero no me funciona ninguno de los dos métodos. El segundo metodo lo entendí bien, y no me funciona. Pero del primero ando un poco perdido. Alguien puede explicarme más detalladamente lo que dice, cuales son esas referencias a script.js que hay que borrar, la otra que hay que añadir a mano, en fin, que me orienteis un poco por favor, que ando perdido.
Bueno, gracias de antemano y perdón por el pedazo de post.
Saludos
- Inicie sesión o regístrese para enviar comentarios

Gracias por la solución!
Estoy utilizando el theme contrast y me presentaba el mismo problema, del cual me percate al instalar imce_mkdir, así que aplique la solución y funcionó perfecto. Muchas gracias _teseo_ por tu aporte.
Ya tengo la Solución
En la página oficial de drupal en inglés me han dadola solución. La pongo aquí por si alguien le sirve de ayuda:
Found out that acrylic and other artisteer themes change button markup from input to button.
In your template.php
find
function acrylic_button($element) {
and change into
function acrylic_button($element) {
if (arg(0) == 'imce') return theme_button($element);