Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.34 KB

README.textile

File metadata and controls

27 lines (17 loc) · 1.34 KB

ReOpenTracker – v1.0.2

ReOpenTracker is a very light-weight Bittorrent tracker that supports both MySQL and SQLite database types.
It is an extensive rewrite to OpenTracker by WhitSoftDev with the goal of being modular in design so it can easily be integrated into other projects. The code is well-documented for further developers and makes a great starter project for those wanting to dive into writing their own Bittorrent tracker script.

A Note Of Caution

As-is, ReOpenTracker is a public tracker with no user/access control, so be careful since it does allow anonymous users to use it and they could be sharing copyright material via your tracker. There’s also very minor security implementations written in it.

Requirements

The minimal requirements for ReOpenTorrent are as follows:

  • Apache or equivalent HTTP server.
  • PHP5 >= 5.1 (not completely sure if 5.2 is required).
  • PDO extension (normally installed with PHP5).
  • PDO mysql or sqlite driver for database.
  • Database knowledge since table creation is currently manual.

Support

All issues and feedback should be made at the project’s GitHub Issues page.

Changelog

Version 1.0.2 – 6/9/2011

  • Cleaned up the reopen_db class and simplified queries.