Use these modules:
IMCE Wysiwyg API bridge
Wysiwyg
IMCE

All are latest versions.

When I create a new article and click the button to insert the picture, I get a dialog box where I can either enter the file location / name or URL. There is a button "Browse Server".
Click on it and a file browser opens.
So far everything is fine.
In the file browser there is a line of buttons that allow you to do something with the files. (Insert, resize). This line is completely empty.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

fralden’s picture

Have you made sure the file security is correct for the sites/default/files folder??

ddease2’s picture

Subscribing to this issue.

fralden, is it working for you?

BTW, yes, I have the correct permissions on the sites/default/files folder.

Thanks

Scorpio26’s picture

FileSize
76.51 KB
73.74 KB

I have the same problem.
If I use the Bartik 7.8 theme the buttons "Upload, Thumbnails, Elimina, Ridimensiona, Insert file" appear. (Schermata.png)

bartik

when I use Four Seasons 7.x-1.x-dev the buttons "Upload, Thumbnails, Elimina, Ridimensiona, Insert file" are not visible (Schermata-1.png)

four season

asai’s picture

Its exactly the same issue as described by Scorpio26.
Using another theme solves the problem.

I really like this theme. It fits very well for the content of my site. It is a weather site. :)
Would really appreciate if this issue were solved.

geco’s picture

in the script fourseasons.js at sites/all/thems/fourseasons/scripts/ you must change base_color to base-color en that wil fix it!
grtz
geert

Scorpio26’s picture

Yes fom me the problem is solved :-)
Thank you "geco"

donniewiko’s picture

Assigned: Unassigned » donniewiko

What have u changed in the JS? Because if i look in it i see:

var $base_color = Drupal.settings.fourseasons.base_color;
jQuery("h1, h2, h3, h4, h5").css("color", "#" + $base_color);
jQuery("#secondary ").css("background", "#" + $base_color);

And in template.php u see

Drupal_add_js(
      array(
        'fourseasons' => array(
          'base_color' => theme_get_setting('fourseasons-basecolor'),
          )
      ),
      array('type' => 'setting')
    );

So changing the base_color to base-color only makes this function not work.

donniewiko’s picture

Status: Active » Reviewed & tested by the community
FileSize
537 bytes

Problem was in the fact Drupal.settings.fourseasons didnt exist in the popup.

Apply this patch to fix the issue

donniewiko’s picture

FileSize
743 bytes

Ignore previous patch.