2010-03-05 03:46:12 PST
you should import the xbt sql in the same database as btit installation and edit the xbt_config ( or something like that ), btw before you import into the btit database you have to uncomment some lines from sql file
-- create table if not exists xbt_announce_log
-- (
-- id int not null auto_increment,
-- ipa int unsigned not null,
-- port int not null,
-- event int not null,
-- info_hash binary(20) not null,
-- peer_id binary(20) not null,
-- downloaded bigint unsigned not null,
-- left0 bigint unsigned not null,
-- uploaded bigint unsigned not null,
-- uid int not null,
-- mtime int not null,
-- primary key (id)
-- ) engine = myisam;
will look like:
create table if not exists xbt_announce_log
(
id int not null auto_increment,
ipa int unsigned not null,
port int not null,
event int not null,
info_hash binary(20) not null,
peer_id binary(20) not null,
downloaded bigint unsigned not null,
left0 bigint unsigned not null,
uploaded bigint unsigned not null,
uid int not null,
mtime int not null,
primary key (id)
) ;