Norco |
07-03-2007 08:50 PM |
Quote:
Originally Posted by Antivirus
(Post 1282154)
I would just use the vbulletin impex system to import the users.
|
The database system is completely different.
For example, most of the feilds are different, and dates I have set as like 'June 19 2007' instead of the time in the time function time(); (eg. 198474589)
Ill post how my user table is setup:
Code:
`id` int(11) NOT NULL auto_increment,
`username` varchar(25) NOT NULL default '',
`password` varchar(95) NOT NULL default '',
`salt` char(3) NOT NULL default '',
`email` varchar(85) NOT NULL default '',
`group_id` int(11) NOT NULL default '2',
`banned_message` text NOT NULL,
`banned_time` text NOT NULL,
`avatar` varchar(255) NOT NULL default 'nopic.gif',
`sig` text NOT NULL,
`joindate` text NOT NULL,
`ip` text NOT NULL,
`points` int(11) NOT NULL default '20',
`rare` text NOT NULL,
`norm` text NOT NULL,
`staff` text NOT NULL,
`x` text NOT NULL,
`website` text NOT NULL,
`bio` varchar(250) NOT NULL default '',
`online` varchar(12) NOT NULL default '',
`invisible` text NOT NULL,
`alert` varchar(255) NOT NULL default 'Empty',
`CA` text NOT NULL,
`US` text NOT NULL,
`AU` text NOT NULL,
`UK` text NOT NULL,
`SG` text NOT NULL,
`referral` text NOT NULL,
`ubadges` text NOT NULL,
`skin` varchar(50) NOT NULL default 'skin',
`gender` text NOT NULL,
`Activation_Code` bigint(20) NOT NULL default '0',
`Activated` varchar(10) NOT NULL default '',
`colour` text NOT NULL,
`colour2` text NOT NULL,
`advert` text NOT NULL,
`bannedhours` varchar(255) NOT NULL default '',
`pin` text NOT NULL,
PRIMARY KEY (`id`)
Now.. tables which can change would be like id to userid but I need the other things for my website system, then add the vb stuff. I already did that although, all 4000 members where in the db, but when I would search them in the acp user search, it would show the page to display all the info, but it was ALL blank (eg username, email...) and it didn't update the member count..
I was looking through the acp, the only thing I could think to do it 'rebuild' the forum statistics? I don't know if I should try that or not..
|