Thread: Dutch Source
View Single Post
  #29  
Old 3rd December 2011, 13:49
Edgein's Avatar
Edgein Edgein is offline
Senior Member
 
Join Date: Sep 2008
Netherlands
Posts: 154
Default
Quote:
Originally Posted by honeybeeman View Post
the bittorrent.php cant not changed in this script

i have fill in the vars.php and the secrets.php but the site is blank on my server.

i think this script dont work anymore

otherwise i dont now wath i do wrong ???

@bittorrent.php

PHP Code:
// ----- Global variables for NZB Mod - you must change these!
// Your site name as it will appear in the names of the nzb files - DON'T use spaces & keep it as short as poss! Recommended format is in the example
$SITENAME4FILE "MyMintSite.com";
// Your site's slogan - added into the comment in NZB's
$SITESLOGAN "NZB slogan";
// Your NZB retention - how long in days you will keep NZB's on the site for (goes from the date of posting on Usenet) - maximum I'd recommend is 70 days
$SITENZBRETENTION 70;
// Path to your NZB Directory, no leading or trailing slashes
$SITENZBDIR "nzbs";
// Maximum NZB size allowed to be uploaded (in bytes), example is 15MB
$MAXNZBSIZE 15000000;
// ----- End NZB Global variables

$SITE_ONLINE true;
$SITE_ONLINE_MSG "Wij zijn bezig met een kortstondig onderhoud aan de server, duurt enkele minuten.";

$DONOR_ADMIN 1;

//$ONDERHOUD = "Er wordt momenteel onderhoud gepleegd aan de server en de site, ons excuus voor eventueel ongemak.";

$krediet_groot 4;
//error_reporting(0);
$donatie_klein 1.5*1024*1024*1024;
$donatie_groot 7.5*1024*1024*1024;
$donatie_maanden 35*1024*1024*1024;
$ratio_klein 3*1024*1024*1024;
$ratio_groot 15*1024*1024*1024;

$max_torrent_size 1000000;
$max_cover_size 10*1024*1024;
$announce_interval 2800;

$signup_timeout 86400 14;
$minvotes 1;
$max_dead_torrent_time 24 3600;

$maxusers 14000;
$invites 15000;

$torrent_dir "torrents";
$cover_dir "covers";
$screens_dir "screens";
$avatar_dir "avatar";

$announce_urls = array();
$announce_urls[] = "http://jou site/announce.php";
$announce_site "http://jou site/announce.php";

if (
$_SERVER["HTTP_HOST"] == "")
    
$_SERVER["HTTP_HOST"] = $_SERVER["SERVER_NAME"];

$BASEURL "http://" $_SERVER["HTTP_HOST"];

//if ($BASEURL != http://jou site")
//    header("Refresh: 0; url=http://jou site/error_pages/goto.php");

$DEFAULTBASEURL "http://jou site";
$PEERLIMIT 50000;
$SITEEMAIL "";
$TORRENTEMAIL "";
$RECOVEREMAIL "";
$SITE_NAME "jou site naam";
$pic_base_url "/pic/"
Reply With Quote