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.

Comments

giorgosk’s picture

Component: User interface » Code

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;

drupalluver’s picture

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!

kreynen’s picture

Converts or duplicates?

giorgosk’s picture

@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

drupalluver’s picture

To kreynen, I believe it was a conversion.

Here's a sample of the moxiecode:

db_query("RENAME TABLE {tinymce_settings} TO {moxie_settings}");

kreynen’s picture

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?!?

kreynen’s picture

Status: Active » Closed (fixed)
manasalekar’s picture

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.

hansrossel’s picture

Try with TinyMCE version 2.1 and try also with garland as theme.