helo
im building a tracker on drupal5 combined with media mover (.torrents come via ftp, are beeing picked by media mover into tracker on cron run) but i have problems with getting the bittorent module to work. after instalation and creation of fisrt torrent, i get error;
user warning: Unknown column 'downloaded' in 'field list' query: SELECT info_hash, snatches, seeders, leechers, downloaded FROM bt_torrents WHERE nid = 1 in /home/tracker/public_html/includes/database.mysql.inc on line 174.
and when i tray to download that torrent in transmissionbt under ubuntu, i get error: invalid info_hash
please help... i really would like to do that in drupal as free software but the 6 version dont work for me at all.
cheers!
Comments
Comment #1
hapydoyzer commentedThis is because bt_torrent.module only work if bt_tracker.module installed at last once (As I can see).
Please try to enable bt_tracker.module (And maybe disable it later.)
If it not works, just add a missing column:
ALTER TABLE bt_torrents ADD downloaded INT UNSIGNED NOT NULL DEFAULT '0'Comment #2
hapydoyzer commentedThis is duplicate of #264387: Table error upon install.