From: Carlos K. <ck...@gm...> - 2005-11-19 04:33:22
|
El S=E1bado, 19 de Noviembre de 2005 00:21, Kevin escribi=F3: > A few issues. > > 1) I got an error on install.php where it was trying to create a table > with an empty name. I had to add this line to init.php. > $FOF_X_CATEGORY_FEED_TABLE =3D FOF_X_CATEGORY_FEED_TABLE; At installing type i've also had problems with the default values for some= =20 fields, i solved it with this change:=20 $query =3D <<<EOQ CREATE TABLE `$FOF_X_CATEGORY_FEED_TABLE` ( `id` int(11) NOT NULL auto_increment, =2D `category_id` int(11) NOT NULL default '', =2D `feed_id` int(11) NOT NULL default '', + `category_id` int(11) NOT NULL default 0, + `feed_id` int(11) NOT NULL default 0, PRIMARY KEY (`id`) ) TYPE=3DMyISAM; EOQ; Carlos. =2D-=20 Web Site: http://www.ckozus.com.ar Blog: http://www.ckozus.com.ar/blog Mis links: http://del.icio.us/ckozus |