| Re: problem with TDMspot module |
| by jank74 on 2010/8/21 11:47:52 yes i have field text tdmspot_item table have 2 fields as text field called text field called file both have no length value, no attributes , no extra , no cmment |
| Re: problem with TDMspot module |
| by ghia on 2010/8/21 0:22:35 Your text is probably in TABLE `tdmspot_item` and field `text` of type text, check it with phpMyAdmin. |
| Re: problem with TDMspot module |
| by jank74 on 2010/8/20 21:48:11 i am sorry i do not have this experience but please check , this is the DB content i understand now , it is a field type problem, but from where we can change the type from text to html ? thanks and i am sure a lot of people will need to understand it ------------------------------- CREATE TABLE `tdmspot_newblocks` ( `id` mediumint(8) unsigned NOT NULL auto_increment, `bid` mediumint(8) unsigned NOT NULL DEFAULT '0', `pid` smallint(5) unsigned NOT NULL DEFAULT '0', `options` varchar(255) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL DEFAULT '', `side` varchar(255) NOT NULL DEFAULT '', `weight` smallint(5) unsigned NOT NULL DEFAULT '0', `visible` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; CREATE TABLE `tdmspot_page` ( `id` mediumint(8) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL DEFAULT '', `weight` smallint(5) unsigned NOT NULL DEFAULT '0', `visible` tinyint(1) unsigned NOT NULL DEFAULT '0', `cat` text, `limit` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; CREATE TABLE `tdmspot_cat` ( `id` int(11) unsigned NOT NULL auto_increment, `pid` int(11) unsigned NOT NULL default '0', `title` varchar(50) NOT NULL default '', `date` int(11) NOT NULL default '0', `text` text, `img` varchar(100) default NULL, `weight` int(11) unsigned NOT NULL default '0', `display` int(1) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; CREATE TABLE `tdmspot_item` ( `id` mediumint(8) unsigned NOT NULL auto_increment, `cat` int(10) unsigned NOT NULL default '0', `title` varchar(50) NOT NULL default '', `text` text, `display` int(1) NOT NULL default '0', `file` text, `indate` int(10) unsigned NOT NULL default '0', `hits` int(10) unsigned NOT NULL default '0', `votes` int(10) unsigned NOT NULL default '0', `counts` int(10) unsigned NOT NULL default '0', `comments` int(11) unsigned NOT NULL default '0', `poster` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; CREATE TABLE `tdmspot_vote` ( `vote_id` int(8) unsigned NOT NULL auto_increment, `vote_file` int(10) unsigned NOT NULL default '0', `vote_album` int(10) unsigned NOT NULL default '0', `vote_artiste` int(10) unsigned NOT NULL default '0', `vote_ip` varchar(20) default NULL, PRIMARY KEY (`vote_id`) ) TYPE=MyISAM; ----------------------- |
| Re: problem with TDMspot module |
| by ghia on 2010/8/20 19:56:20 Is the module fit for html content? Did you check the field in the database table, to see how your text has been stored? |
| problem with TDMspot module |
| by jank74 on 2010/8/20 12:02:26 when i use FCKeditor with tdmspot , i have HTML code in the results , i mean i do not have normal text i have text + html tags where i can correct that? |