// ONLY USE ONE OF THE FOLLOWING DEPENDING ON YOUR O/S!!!
$torrent_dir = "/var/tb/torrents"; # FOR UNIX ONLY - must be writable for httpd user
//$torrent_dir = "C:/web/Apache2/htdocs/tbsource/torrents"; # FOR WINDOWS ONLY - must be writable for httpd user
替换为:
CODE
// ONLY USE ONE OF THE FOLLOWING DEPENDING ON YOUR O/S!!!
//$torrent_dir = "/var/tb/torrents"; # FOR UNIX ONLY - must be writable for httpd user
$torrent_dir = "torrents"; # FOR WINDOWS ONLY - must be writable for httpd user
查找:
CODE
# the first one will be displayed on the pages
$announce_urls = array();
$announce_urls[] = "http://domain.com:81/announce.php";
$announce_urls[] = "http://domain.com:82/announce.php";
$announce_urls[] = "http://domain.com:83/announce.php";
替换为:
CODE
# the first one will be displayed on the pages
$announce_urls = array();
$announce_urls[] = "http://localhost/announce.php";
查找:
CODE
// Set this to your site URL... No ending slash!
$DEFAULTBASEURL = "http://domain.com";
替换为:
CODE
// Set this to your site URL... No ending slash!
$DEFAULTBASEURL = "http://localhost";