View Single Post
  #47  
Old 11th May 2009, 22:26
Caterpillar Caterpillar is offline
Senior Member
 
Join Date: Jun 2008
P2P
Posts: 24
Default
Quote:
Originally Posted by oMaRcO View Post
mebay Banned Client Detection Enabled?
TU Error comes from one file - announce.php - by this cyclopic MySQL query (lines 164-178)


Code:
  ($Query = mysql_query ('
					SELECT t.id as tid, t.name, t.category, t.size, t.added, t.visible, t.banned, t.free, t.silver, t.doubleupload,
                    u.id as userid, u.enabled, u.uploaded, u.downloaded, u.usergroup, u.birthday, u.ip,
					g.isbanned, g.candownload, g.canviewviptorrents, g.isvipgroup, g.canfreeleech, g.waitlimit, g.slotlimit,
					c.vip as isviptorrent
 					FROM torrents t
					INNER JOIN users u ON (u.passkey = ' . sqlesc ($passkey) . ')
					INNER JOIN usergroups g ON (u.usergroup = g.gid)
					LEFT JOIN categories c ON (t.category=c.id)
					WHERE (t.info_hash = ' . sqlesc ($info_hash) . ' OR t.info_hash = ' . sqlesc (preg_replace ('' . '/ *$/s', '', $info_hash)) . ')
					LIMIT 1') OR stop ($l['sqlerror'] . ' TU1'));
  if ((((!$Result = mysql_fetch_assoc ($Query) OR !$Tid = $Result['tid']) OR $Result['enabled'] != 'yes') OR !$Result['userid']))
  {
    stop ($l['tuerror']);
  }
Indents and linebreaks retained as is.


Banned Client detection -- OFF
Reply With Quote