PDA

View Full Version : 3.6 > 3.6 Errors



mpadc
Sun 27th Aug '06, 7:51pm
Tryna importa a 3.6 to 3.6 using impex

i get the following errors when i run the following functions:

ASSOCIATE USERS:


Fatal error: Call to undefined function: get_vb_36_members_list() in /home/forum/public_html/****/impex/systems/vb_36/002.php on line 95

IMPORT FORUM

ImpEx Database errormysql error: Invalid SQL:
INSERT INTO forum
(
styleid, title, options,
displayorder, parentid, importforumid,
importcategoryid, description, replycount,
lastpost, lastposter, lastthread,
lastthreadid, lasticonid, threadcount,
daysprune, newpostemail, newthreademail,
parentlist, password, link, childlist,
title_clean, description_clean,
showprivate, lastpostid, showdefault,
defaultsortfield, defaultsortorder
)
VALUES
(
'',
'Main Category',
89665,
'1',
'-1',
'1',
'0',
'General Forum',
'0',
'0',
'',
'',
'',
'0',
'0',
'-1',
'',
'',
',',
'',
'',
'',
'Main Category',
'General Forum',
'0',
'0',
'0',
'lastpost',
'desc'
)


mysql error: Unknown column 'showdefault' in 'field list'

mysql error number: 1054

Date: Sunday 27th of August 2006 10:48:56 PM
Database: forum_vb
MySQL error:

Steve Machol
Sun 27th Aug '06, 8:05pm
Is the target vB a fresh install of 3.6.0 or an upgrade? You are missing a field in the forum table.

Run this query to add that field to the target db:

ALTER TABLE forum ADD showdefault TINYINT NOT NULL DEFAULT '0';

Mystics
Tue 29th Aug '06, 10:46pm
Actually this field only exists in a fresh install (mysql-schema.php). It won't be added during an upgrade.

And as there is no reference to this field in any file I'm wondering what it does :)

Jerry
Wed 30th Aug '06, 3:02pm
Have raised this with the rest of the dev team.

harjit
Mon 4th Sep '06, 11:12am
Is the target vB a fresh install of 3.6.0 or an upgrade? You are missing a field in the forum table.

Run this query to add that field to the target db:

ALTER TABLE forum ADD showdefault TINYINT NOT NULL DEFAULT '0';
I got this error too and the ALTER TABLE command fixed it. Thanks.

Mystics
Mon 4th Sep '06, 8:30pm
But it seems this error still exists:
Fatal error: Call to undefined function: get_vb_36_members_list() in /home/forum/public_html/****/impex/systems/vb_36/002.php on line 95There is no "get_vb_36_members_list" function in ImpEx :(

Jerry
Tue 5th Sep '06, 3:27pm
Fixed.