View Single Post
  #7  
Old 11th October 2013, 13:56
Dote Dote is offline
Senior Member
 
Join Date: Jul 2013
P2P
Posts: 17
Default
Quote:
Originally Posted by firefly007 View Post
Try to null this and see what happeneds

PHP Code:
$agent $_SERVER["HTTP_USER_AGENT"];

// Deny access made with a browser...
if (
    
ereg("^Mozilla\\/"$agent) || 
    
ereg("^Opera\\/"$agent) || 
    
ereg("^Links "$agent) || 
    
ereg("^Lynx\\/"$agent) || 
    isset(
$_SERVER['HTTP_COOKIE']) || 
    isset(
$_SERVER['HTTP_ACCEPT_LANGUAGE']) || 
    isset(
$_SERVER['HTTP_ACCEPT_CHARSET'])
    )
    
err("torrent not registered with this tracker CODE 1"); 
The error that I get is: "Failure reason: torrent not registered with this tracker CODE 2" and not CODE 1.
I should try to do it anyway?
Reply With Quote