Ariadna
PPK
Воспользовалась вашим советом попробовала http://www.whitsoftdev.com/opentracker/ вроде всё просто оказалось по началу))PPK писал(а):XBTT?, http://xbtt.sourceforge.net/tracker/ - нужно будет настроить его так, чтобы он автоматически регистрировал любые торренты, т.е. работал как "фришный анонсер" , только если "не бумбум" явно потребуется чья-то помощь, есть ещё вариант на php http://www.whitsoftdev.com/opentracker/.
PHP should be set for magic_quotes_gpc off.To run OpenTracker, you need two things: a web server that supports PHP, and a MySQL database.
PHP should be set for magic_quotes_gpc off.
Execute the included dbschema.sql on your database. This will create the table required by OpenTracker, which is named `peers` by default. You may rename the table if desired.
Edit config.inc.php, filling in the appropriate information for your database setup.
That's all there is to it. Create a torrent using announce.php on your server as the announce URL, and away you go.
Код: Выделить всё
// Parameters for database connection and queries
$db_server = 'localhost';
$db_user = 'root';
$db_pass = '12345';
$db_db = 'opentracker';
$db_table = 'peers';
Ariadna
PPK
Ariadna
PPK