when going to edit user, i only see "Disable Rich Test" (nothing else)
| Project: | TinyMCE WYSIWYG Editor |
| Version: | 5.x-1.9 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | duplicate |
Jump to:
when i goto Admin->Users and click edit to edit a user, i only see "Disable Rich Test" (nothing else) and looks like page in constantly loading. Other pages seem to work fine with TinyMCE. I am running Drupal 5.7 and tinymce 5.x-1.9 (and IMCE). The url for the edit user link is "http://drupaltest/user/2/edit?destination=admin%2Fuser%2Fuser"
my tinyMCE settings for authenticated users is visible on follow pages:
node/*
user/* (maybe this is causing the issue? but still it should just put the javascript code and thats it right? not stop everything from loading)
comment/*
not sure why its bugging out?
anyone got some ideas? i can disable tinymce now but when go production would be nice to use it.
thanks for any ideas.

#1
i see this issue for 6 here:
http://drupal.org/node/254396
Although i had same issue in IE5 too.
solution temp is as found in that thread:
replace switch ($textarea_name) { line in that module's theme function
function theme_tinymce_theme($init, $textarea_name, $theme_name, $is_running) {
switch (str_replace('-','_',$textarea_name)) {
#2
actually i guess that didnt work. doh. just assumed it would since seemed like worked for version 6 folks. any ideas?
i just took visibility of user/* away in tinymce settings for now.
#3
I'm having the same problem.... I'm having this with all text areas.. so I can't create content unless I disable TinyMCE module.... any ideas what could be causing this?
#4
it seems to be a firefox brower issue?... It works fine with IE...
#5
yeh and if i goto TinyMCE settings and turn off the Enable/Disable text in the basic settings (Show disable/enable rich text editor toggle). It seems to help FF maybe? not sure maybe i will test tomorrow and see if can see why its doing this crazyness
#6
this thread i think put a solution that works:
http://drupal.org/node/235972
here is their patch:
< document.write("<div><a href=\"javascript:mceToggle('edit-$textarea_name', 'wysiwyg4$textarea_name');\" id=\"wysiwyg4$textarea_name\">$link_text</a></div>");---
> $('#edit-$textarea_name').after("<div><a href=\"javascript:mceToggle('edit-$textarea_name', 'wysiwyg4$textarea_name');\" id=\"wysiwyg4$textarea_name\">$link_text</a></div>");
#7
http://drupal.org/node/235972