Can not create profile in TinyMCE 5.1
drupalluver - March 4, 2007 - 19:56
| Project: | TinyMCE WYSIWYG Editor |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
I've been using the various permutatations of TinyMCE. I did have a modified earlier version of tinymce, then used the Moxie module and noticed that it is no longer being maintained and TinyMCE is being managed by a different group.
So, I decided to switch from Moxie to TinyMCE. Unfortunately, that created problems ever since. I cannot create a new profile for TinyMCE no matter what I try. If I switch back to Moxie, it works, but I can't get IMCE working again!
Any suggestions to get TinyMCE to create a profile for me? Thanks.

#1
for some strange reason I think the tables are never created (but I thought it was only my issue)
for now if you have access to mysql (phpmyadmin) run the following queries to create the tables
(phpmyadmin > select your drupal database > sql tab)
CREATE TABLE `tinymce_role` (
`name` varchar(128) NOT NULL default '',
`rid` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`name`,`rid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `tinymce_settings` (
`name` varchar(128) NOT NULL default '',
`settings` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
#2
I never thought it was the tables not forming. I followed your instructions and it worked perfectly. I also removed moxie just in case. I read through the install directions and it converts the tinymce tables into the moxie tables.
Evertything appears to be working normally. Thank you!
#3
Converts or duplicates?
#4
@to the maintainer
I had Moxie setup on my system and wanted tinyMCE instead when this happened
so this might be a moxie converting to tinyMCE related issue
#5
To kreynen, I believe it was a conversion.
Here's a sample of the moxiecode:
db_query("RENAME TABLE {tinymce_settings} TO {moxie_settings}");#6
Wow... I'm really glad Steve and Allie aren't pushing Moxie anymore. Deleting another modules tables?!?
Why didn't they use...
db_query("CREATE TABLE {moxie_settings} SELECT * FROM {tinymce_settings}");
db_query("CREATE TABLE {moxie_roles} SELECT * FROM {tinymce_roles}");
Unless of course you are so mad that no one was responding to your issues that you are trying to kill the other module?!?
#7
#8
Drupal 5.8
TinyMCE module 1.9
TinyMCE 3.1.0-1
I just checked the database. Tables are in place. I still cannot see the new profile link.
#9
Try with TinyMCE version 2.1 and try also with garland as theme.