I recently upgraded my site to Drupal 5.3. I deleted the 4.7 BUEditor module, downloaded the latest version (both 5.x-1.0 and 5.x-1.x dev). After installation, neither version shows up above the textareas of the site.

BUEditor was working fine in 4.7.8

Comments

sepeck’s picture

I am using BUEditor 5.x-1.0 on Drupal 5.3 Make sure you have enabled it for the user role in Administer > Site configuration > BUEditor

seangee’s picture

I have this installed on two servers. All works fine on one of the servers but not on the other, which was in fact created from a backup of the original.

Only differences I can see are that the server where it is not working is running php5 and mysql5. (The other is running version 4 for both)

sepeck’s picture

I am running PHP4

ufku’s picture

no problem on:
Drupal 5.3
MySQL 5.0.45
PHP 5.2.4
Apache 2.2.6

try uninstall/install bueditor. or try disable/enable other modules.

bonked’s picture

Using the Garland theme, I can reproduce this time and time again - in Firefox at least.

The BUEditor bar gets rendered behind the resizable textbox. In FF 3, it now floats to the left.

I think this is probably the most common problem that people are having where it simply "disappears"

Add the following to the end of your style.css to get it to work normally:

#editor-0, #editor-1, #editor-2 {
	border:1px solid white;
	height:20px;
	width:100%;
}

If you will ever have more than 3 BUeditors on a page, just add additonal selectors eg: (#editor-2, #editor-3, #editor-4 etc)

This fixed things for me. Not sure you absolutely need the border item, but it seemed to render faster with it.

ufku’s picture

Status: Active » Closed (fixed)