19/06/2007, 15:53
|
| | Fecha de Ingreso: junio-2007
Mensajes: 2
Antigüedad: 17 años, 5 meses Puntos: 0 | |
Re: Tutorial: Joomla + SMF + Bridge He encontrado la respuesta, en el archivo de configuracion dentro de la carpeta prueba/instalacion/sql editas el joomla.sql y cambias lo siguiente:
CREATE TABLE `mos_poll_data` (
`id` int(11) NOT NULL auto_increment,
`pollid` int(4) NOT NULL default '0',
`text` text NOT NULL default '',
`hits` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `pollid` (`pollid`,`text`(1))
) TYPE=MyISAM
Por esto otro
CREATE TABLE `#__poll_data` (
`id` int(11) NOT NULL auto_increment,
`pollid` int(4) NOT NULL default '0',
`text` text NOT NULL,
`hits` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `pollid` (`pollid`,`text`(1))
) TYPE=MyISAM; |