Hello. I hate to submit a support request but I can't for the life of me figure this out. I have read other entries about this issue but still can't find resolution.

Using image browser with FCKEditor, I can browse and upload new images, but when I select an image and click Insert, nothing happens. However, with the same versions of modules and settings, it works beautifully on all of the other sites that I have it installed on, of which there are 6. I've never gotten it to work on this site.

Unfortunately, I don't know what information I can offer so that you might have an idea of what is going wrong at my end. I'm hoping you can still help.

I aslo tried upgrading to the dev version 2, but get the error: "Required plugin 'view' not found." I tried following the instructions for that issue but couldn't get it to work, likely from being a little frazzled trying to figure this out.

Thanks.

Comments

peter törnstrand’s picture

It seems there is a spelling bug in imagebrowser.module line 85:

  $items['imagebrowser/ajax'] = array(
    'title' => 'Ajax call',
    'page callback' => 'imagebrowser_ajax',
    'access callback' => 'imagebrowser_access_callback',
    'access arguments' => array('browse all image', 'browse own images'),
    'type' => MENU_CALLBACK,
  );

should be:

'access arguments' => array('browse all images', 'browse own images'),

Notice the trailing "s" in "browse all images".

peter törnstrand’s picture

Status: Active » Fixed

Fixed in 2.x-DEV....

Status: Fixed » Closed (fixed)

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