View Single Post
  #9  
Old 11th August 2008, 17:19
GaBoNtZ's Avatar
GaBoNtZ GaBoNtZ is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 113
Default Try this
Try to use this core_announce.php
Code:
<?
  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('display_startup_errors', '0');
  @ini_set ('ignore_repeated_errors', '1');
  @set_time_limit (0);
  @ignore_user_abort (1);
  @set_magic_quotes_runtime (0);
  @ini_set ('magic_quotes_sybase', 0);
  if (!defined ('IN_ANNOUNCE'))
  {
    exit ('Hacking attempt!');
  }

  require 'config_announce.php';
  require 'languages/' . $defaultlanguage . '/announce.lang.php';
  require 'functions_announce.php';
  if (get_magic_quotes_gpc ())
  {
    if (!empty ($_GET))
    {
      $_GET = strip_magic_quotes ($_GET);
    }
  }

  if (!get_magic_quotes_gpc ())
  {
    if ((isset ($HTTP_GET_VARS) AND is_array ($HTTP_GET_VARS)))
    {
      while (list ($k, $v) = each ($HTTP_GET_VARS))
      {
        if (is_array ($HTTP_GET_VARS[$k]))
        {
          while (list ($k2, $v2) = each ($HTTP_GET_VARS[$k]))
          {
            $HTTP_GET_VARS[$k][$k2] = addslashes ($v2);
          }

          @reset ($HTTP_GET_VARS[$k]);
          continue;
        }
        else
        {
          $HTTP_GET_VARS[$k] = addslashes ($v);
          continue;
        }
      }

      @reset ($HTTP_GET_VARS);
    }
  }

?>
i still get "tracker sending invalid data." but on browse page i get "Health:Perfect"
i dunno if someone can download the torrent, but i have to wait untill someone tryes to get it.

Last edited by GaBoNtZ; 11th August 2008 at 17:24.
Reply With Quote