Page 1 of 1

Table Missing... [SOLVED]

Posted: 1. September 2011 14:15
by mentz
HI,
sorry for my english...

I tryed to install this board in my phpbb 3.0.9 forum.
All the time the installer reports to me that can't create a table. ( a lazy installer ? hahaha :D )

So i tried to create it all by myself, usign the error listed every time...
At the end of the process it says: "completed"

I see all in my acp panel, but i don't see anything in in my forum.
Maybe I made some error creating this table or maybe the error is somewhere else...

Can someone tell me wich is the sql structure for the phpbb_portal_modules ?
Or if there is a simple way to install this great portal ?

(i also tried to install an old version and make an update to this release, but the error is always the same)

Thanks!

[EDIT]
I searched inside all the php file, until I found this:

Code: Select all

'table_add' => array(
			array(PORTAL_MODULES_TABLE, array(
				'COLUMNS' => array(
					'module_id' => array('UINT:3', NULL, 'auto_increment'),
					'module_classname' => array('VCHAR:64', ''),
					'module_column' => array('TINT:3', 0),
					'module_order' => array('TINT:3', 0),
					'module_name' => array('VCHAR', ''),
					'module_image_src' => array('VCHAR', ''),
					'module_image_width' => array('INT:3', 0),
					'module_image_height' => array('INT:3', 0),
					'module_group_ids' => array('VCHAR', ''),
				),

				'PRIMARY_KEY'	=> 'module_id',
So I created the table by myself and in the end the portal works...
I don't know why the installer won't create only this table, i tried a lot of times also beginning from zero and the result was always the same...