| Baby Mamber
Join Date: Apr 2007
Posts: 1
| Re: minibb simpleboard conversion Hi,
I'm having problems with this converter:
Currently I'm running a miniBB forum and like to convert to SMF. But while running the converter I receive an error message:
"
Notice: Undefined variable: dbUserSheme in /home/www/htdocs/<mydomain>/forum/setup_options.php on line 47
Converting members... Unsuccessful!
This query:
SELECT
user_id AS ID_MEMBER, SUBSTRING(username, 1, 80) AS memberName,
SUBSTRING(username, 1, 255) AS realName,
UNIX_TIMESTAMP(user_regdate) AS dateRegistered,
SUBSTRING(user_email, 1, 255) AS emailAddress,
UNIX_TIMESTAMP(user_regdate) AS lastLogin,
SUBSTRING(user_from, 1, 255) AS location,
SUBSTRING(user_password, 1, 64) AS passwd,
SUBSTRING(user_icq, 1, 255) AS ICQ,
SUBSTRING(user_website, 1, 255) AS websiteTitle,
SUBSTRING(user_website, 1, 255) AS websiteUrl,
IF(user_viewemail = 1, 0, 1) AS hideEmail, num_posts AS posts,
IF('admin' = username, 1, 0) AS ID_GROUP, '' AS lngfile,
'' AS buddy_list, '' AS pm_ignore_list, '' AS messageLabels,
'' AS personalText, '' AS AIM, '' AS YIM, '' AS MSN, '' AS timeFormat,
'' AS signature, '' AS avatar, '' AS usertitle, '' AS memberIP,
'' AS secretQuestion, '' AS secretAnswer, '' AS validation_code,
'' AS additionalGroups, '' AS smileySet, '' AS passwordSalt,
'' AS memberIP2
FROM `<databasename>`.minibb_users
LIMIT 0, 500;
Caused the error:
Unknown column 'num_posts' in 'field list'
"
and in setup_options.php line 47 is
$protectWholeForum=0;
$protectWholeForumPwd='pwd';
$userInfoInPosts=array($dbUserSheme['user_custom2'][1]); // <<<<< This is line 47
$postRange=60;
Does anybody here has an idea how I could solve this? I'd realy like to use SMF.
Thanks in advance
Heidi
Last edited by Heidi; 04.04.2007 at 21:03.
Reason: forget someting
|