Are you trying to make panjo work? Then you need to add that column to the user table. The only place I could find that adds that column in the vb upgrade script, so you could try running that again (I think it's OK to run it even if you are already at that version). Or you could add the fields yourself using phpMyAdmin.
Here's the php from the install scrip that aadds the panjo db fields:
PHP Code:
$db_alter = new vB_Database_Alter_MySQL($this->db);
if ($db_alter->fetch_table_info('user')) {
$db_alter->add_field(array(
'name' => 'panjo_selling',
'type' => 'BOOLEAN',
'null' => true
));
}
if ($db_alter->fetch_table_info('usergroup')) {
$db_alter->add_field(array(
array(
'name' => 'panjo_can_sell',
'type' => 'BOOLEAN',
'null' => false,
'default' => true
),
array(
'name' => 'panjo_transaction_fee',
'type' => 'DECIMAL',
'length' => '10, 2',
'null' => true
),
array(
'name' => 'panjo_listing_fee',
'type' => 'DECIMAL',
'length' => '10, 2',
'null' => true
)
));
}
if ($db_alter->fetch_table_info('thread')) {
$db_alter->add_field(array(
array(
'name' => 'panjo_listing_id',
'type' => 'VARCHAR',
'length' => 255,
'null' => true
)
));
}
If you're going to do it using phpMyAdmin you have to figure out the right parameters from the above. I'm sure someone here can do it if you need help with that.