Subscribe

You should have to import xbtt tables

  1. 2010-02-02 19:23:44 PST
    Hello Everyone, I've installed xbtt on a VPS, but every time I try use as a backend for xbtit I get the following response; You should have to import xbtt tables (look at xbtt installation instructions) into your database before activate xbtt backend! I've imported the "xbt_tracker.sql" to the database, but I keep getting the same response. Can anyone point me in the right direction with this one? Your assistance is greatly appreciated.
  2. 2010-02-03 09:48:05 PST
    You should ask the BTIT team, that's not an error message the official XBTT uses.
  3. 2010-02-03 13:57:33 PST
    Yes the response I receive is from XBTIT, the reason I asked here first is because I think I might be doing something wrong when I import the xbt_tracker.sql file. I left the file exactly as it is and imported it to my database, should I have made some updates before importing it? Below is part of the response I receive when I import it. I'm novice at this, Can you tell if there is something wrong? -- 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; create table if not exists xbt_config ( name varchar(255) not null, value varchar(255) not null );# MySQL returned an empty result set (i.e. zero rows). create table if not exists xbt_deny_from_hosts ( begin int unsigned not null, end int unsigned not null );# MySQL returned an empty result set (i.e. zero rows). create table if not exists xbt_files ( fid in[...]
  4. 2010-02-04 03:41:09 PST
    Looks fine to me. You should really contact BTIT.
  5. 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) ) ;
Jump To:
< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.