I installed the three BT modules. The bt_user_all_torrents view seems have got a problem.
When i edit this view i can see:
For relationship, "field_torrent_file_fid" doesn't exist.
For field, "upload_speed" and "download_speed" don't exist.

Comments

tiato’s picture

it's deceptive as there are no fields for up_speed and down_speed but rather an array which stores multiple values: 'User', 'peer_id', 'bytes_uploaded', 'bytes_downloaded', 'bytes_left', 'upload_speed', 'download_speed'

the one array can be called via cck but limits the ability to simply take a single value and your view integration outputs all values in the array

it would work better to make better use of cck and tie each value into it's own cck field as opposed to in a single array - it would also allow for better views integration by using individual cck fields to call the values. I have had some success with views integration by separating torrent file items, file size, total size, file path, and last seed into their own fields. I think for this module to really shine it should move away from multiple values in a single array. Or if they are to be delivered in an array to concurrently attach them with a cck array.

Either way, not taking full advantage of cck is a big limitation for this module. As I am able to attach more individual values to cck fields and clean up my hacks to the code I will contribute