I've just installed the latest tinymce, and managed to get it up and working.

There is no browse function for image insertion. I want users to be able to insert images from their own computer. I've seen examples of it, so obviously I'm missing something.

I've been looking in:

Home › Administer › Site configuration > tinymce > buttons and plugins

I can't find anything that looks like a browse button. There is a button for "images" (a "tree" icon) but it only seems to respond to either a fully qualified URL or /file/images/foo.jpg

I tried the format file:///home/david/foo.jpg but no joy. What most users expect is a browse button.

Any help gratefully received, thank you.

David.

Comments

davidjmcq’s picture

http://drupal.org/node/116837
go right to the last comment #6

I had to install IMCE module (hey.. I didn't know that!)
then I had to edit the imce.module file
drupal/modules/imce/imce.module, line 11 so that it looked like this:

/* if (!imce_integrate('tinymce', 'check') && module_exists('tinymce') && variable_get('imce_settings_tinymce', 1) && strpos($header, 'tiny_mce')) */
{

in other words comment out the entire if statement, and put the { on the next line.

I'm fairly sure someone will think that's a bad idea.. it seems like a bad idea.. but it works so what the hell.