Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Community Cafe
Reply
  #1  
Old 28th December 2008, 14:44
tunad tunad is offline
Senior Member
 
Join Date: Oct 2008
Posts: 57
Default tbdev.net (netmaniack's edition) 1.5 freeleech.php
apears this error when i make a torrent freeleech
what can i do?

Warning: Cannot modify header information - headers already sent by (output started at /home/bluefile/public_html/freeleech.php:2) in /home/bluefile/public_html/freeleech.php on line 75


this is my freeleech.php
PHP Code:
<center>
<?php

ob_start
("ob_gzhandler");
require_once(
"include/bittorrent.php");

dbconn();
loggedinorreturn();

$akcija $_GET['akcija'];
$napaka = (int)$_GET['napaka'];
$odstraniid = (int)$_GET['odstraniid'];

stdhead("Free Leech");

begin_main_frame();

if (
get_user_class() < UC_VIP)
{
stdmsg("Error""No access.");
end_main_frame();
stdfoot();
exit;
}

echo 
"<h1 align=center>Free Leech</h1>\n";

if (
$napaka == 1)
{
echo 
"<br /><font color=\"red\">Torrent with this ID doesn't exist!</font><br />";
}

if (
$napaka == 2)
{
echo 
"<br /><font color=\"red\">This torrent is now free leech!</font><br />";
}

if (
$napaka == 3)
{
echo 
"<br /><font color=\"red\">This torrent isn't free leech anymore!</font><br />";
}

if (
$napaka == 4)
{
echo 
"<br /><font color=\"red\">This torren't isn't freeleech!</font><br />";
}

echo 
"<br /><form name=\"freeleech\" method=\"post\" action=\"freeleech.php?akcija=poslji\">

Torrent ID:

<input name=\"id\" type=\"text\" value=\"\" />

(You need to enter id of the torrent you want to make free leech)

<br /><br />

<input type=\"submit\" value=\"Send\"></form>"
;

if (
$akcija == "poslji")
{
$id = (int)$_POST['id'];
$rezultat mysql_query("SELECT * FROM torrents WHERE id = '$id'");

if (
mysql_num_rows($rezultat) < 1)
{
header("Location: freeleech.php?napaka=1");
die();
}
else
{
mysql_query("UPDATE torrents SET freeleech = '1' WHERE id = '$id'");
}

header("Location: freeleech.php?napaka=2");
}

echo 
"<br /><div align=\"center\"><h1>Free leech torrents</h1><br />";

$rezultat mysql_query("SELECT * FROM torrents WHERE freeleech = '1'");

if (
mysql_num_rows($rezultat) > 0)
{
echo 
"<table width=\"500\" border=\"1\" cellspacing=\"0\" cellpadding=\"5\" class=\"main\">
<tr>
<td class=rowhead><center>Id</center></td>
<td class=rowhead><center>Name</center></td>
<td class=rowhead><center>FreeLeech</center></td>
</tr>"
;

while (
$vrstica mysql_fetch_array($rezultat))
{
echo 
"
<tr>
<td><center>
$vrstica[id]</center></td>
<td><center><a href=\"details.php?id=
$vrstica[id]\" target=\"_blank\">".format_comment($vrstica[name])."</a></center></td>
<td><center><a href=\"freeleech.php?akcija=odstrani&odstraniid=
$vrstica[id]\">Remove</a></center></td>
</tr>"
;
}
}
else
{
echo 
"No free leech torrents!";
}

echo 
"</table><br /><br />bluefile</div>";

if (
$akcija == "odstrani")
{
$rezultat mysql_query("SELECT * FROM torrents WHERE id = '$odstraniid' AND freeleech = '1'");

if (
mysql_num_rows($rezultat) < 1)
{
header("Location: freeleech.php?napaka=4");
die();
}
else
{
mysql_query("UPDATE torrents SET freeleech = '0' WHERE id = '$odstraniid'");
}

header("Location: freeleech.php?napaka=3");
}

end_main_frame();
stdfoot();
die();
?> 
</center>

Last edited by tunad; 29th December 2008 at 00:29.
Reply With Quote
Reply

Tags
15 , edition , freeleechphp , netmaniack , tbdevnet

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Freeleech with multiplier sharky Mods & Themes 18 8th July 2015 23:43
TBDEv Freeleech mod ? poiuy6789 TBDev 6 11th June 2013 03:39
tbdev.net (netmaniack's edition) 1.5 problem tunad Community Cafe 7 10th April 2010 12:33
freeleech.eu tbdev final 2009 djblackout Community Cafe 0 23rd March 2010 04:42
TBDev Bravo Edition ANDiTKO Community Cafe 17 19th August 2008 23:27



All times are GMT +2. The time now is 15:15. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.