Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent)
Reply
  #1  
Old 23rd July 2008, 23:02
demonbogdan demonbogdan is offline
Member
 
Join Date: Jul 2008
Posts: 10
Default Internal server error
i try to upload a torrent and when i finish.. ... give me a error .. and when i try to go at index page.. appear this

Code:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@torrent.muzicutza.info and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.41 Server at torrent.club-tv.ro Port 80
Reply With Quote
  #2  
Old 24th July 2008, 06:50
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default Re: Internal server error
can you provide me a link so I may see if it is what I think it is??
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #3  
Old 24th July 2008, 12:21
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default Re: Internal server error
Quote:
Originally Posted by demonbogdan
i try to upload a torrent and when i finish.. ... give me a error .. and when i try to go at index page.. appear this

Code:
Please contact the server administrator, webmaster@torrent.muzicutza.info 

Apache/1.3.41 Server at torrent.club-tv.ro Port 80

I see it`s working:

http://torrent.club-tv.ro

http://torrent.muzicutza.info

:unknown:
Reply With Quote
  #4  
Old 24th July 2008, 14:45
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default Re: Internal server error
clear your cookies and tell me if the page well load?
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #5  
Old 26th July 2008, 23:41
demonbogdan demonbogdan is offline
Member
 
Join Date: Jul 2008
Posts: 10
Default Re: Internal server error
mmm.. work.. but when i try to login.. give me internal error...
and i wait another 2 days.. when.. again work.. etc
Reply With Quote
  #6  
Old 27th July 2008, 01:42
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default Re: Internal server error
open header.php find
Code:
include ("torrents-needseed.php");
and comment it out for now I am working on V2.0 and hope that It well be fixed with in a week
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #7  
Old 27th July 2008, 20:26
demonbogdan demonbogdan is offline
Member
 
Join Date: Jul 2008
Posts: 10
Default Re: Internal server error
thanks.. i try, and now work
Reply With Quote
  #8  
Old 27th July 2008, 22:43
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default Re: Internal server error
fix for torrents need seeding
Code:
<?php
/*
*-------------------------------phpMyBitTorrent--------------------------------*
*--- The Ultimate BitTorrent Tracker and BMS (Bittorrent Management System) ---*
*--------------   Created By Antonio Anzivino (aka DJ Echelon)   --------------*
*-------------               http://www.p2pmania.it               -------------*
*------------ Based on the Bit Torrent Protocol made by Bram Cohen ------------*
*-------------              http://www.bittorrent.com             -------------*
*------------------------------------------------------------------------------*
*------------------------------------------------------------------------------*
*--   This program is free software; you can redistribute it and/or modify   --*
*--   it under the terms of the GNU General Public License as published by   --*
*--   the Free Software Foundation; either version 2 of the License, or      --*
*--   (at your option) any later version.                                    --*
*--                                                                          --*
*--   This program is distributed in the hope that it will be useful,        --*
*--   but WITHOUT ANY WARRANTY; without even the implied warranty of         --*
*--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          --*
*--   GNU General Public License for more details.                           --*
*--                                                                          --*
*--   You should have received a copy of the GNU General Public License      --*
*--   along with this program; if not, write to the Free Software            --*
*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA --*
*--                                                                          --*
*------------------------------------------------------------------------------*
*------              2005 phpMyBitTorrent Development Team              ------*
*-----------               http://phpmybittorrent.com               -----------*
*------------------------------------------------------------------------------*
*/
if(eregi("torrents-needseed.php",$_SERVER["PHP_SELF"])) die("You can't access this file directly");


global $db_prefix;
$sql = ("SELECT id, name, downloaded, completed, seeders, leechers, added FROM ".$db_prefix."_torrents WHERE leechers > 0 AND seeders = 0 ORDER BY leechers DESC LIMIT 10");
$res = $db->sql_query($sql) or btsqlerror($sql);
if ($db->sql_numrows($res) > 0)
	{
OpenTable("TORRENTS THAT NEED SEEDING");
	print("<center><table  class=table_table border=2 cellspacing=0 cellpadding=0 >\n");
	print ("<CENTER>Please help them out, if you happen to have the files on your harddisk. Thank you!</CENTER>\n");
	print("<tr><td class=colhead>TORRENT</td><td class=colhead>LEECH</td><td class=colhead>SNATCHED</td><td class=colhead>COMPLETED</td><td class=colhead>DATE ADDED</td></tr>\n");
		while ($arr = $db->sql_fetchrow($res))
			{
			$torrname = htmlspecialchars($arr['name']);
				if (strlen($torrname) > 55)
				$torrname = substr($torrname, 0, 55) . "...";


			print("<tr><td class=table_col1  align=left><a href=\"details.php?id=".$arr['id']."&hit=1\" alt=\"".$arr['name']."\" 	title=\"".$arr['name']."\">".((strlen($arr['name']) <= 30) ? $arr['name']: substr($arr['name'],0,27)."...")."</td><td  class=table_col1><font color=red> ".number_format($arr['leechers'])." </td><td  class=table_col1>  ".$arr['downloaded']."  </td><td  class=table_col1>  ".$arr['completed']."  </td><td  class=table_col1>  ".$arr['added']."  </td></tr>\n");
			}
		print("</table></center>\n");


CloseTable();
}
else
{
OpenTable("TORRENTS THAT NEED SEEDING");
echo"

<center><h3>NO TORRENTS NEED SEEDED</h3></center></p>";
CloseTable();
}
?>
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
Reply

Tags
error , internal , server

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
500 Internal Server Error (Again) mat22 Yuna Scatari Edition (YSE) 5 11th May 2010 14:15
500 Internal Server Error mat22 Yuna Scatari Edition (YSE) 4 9th February 2010 16:22
Forum internal BBC Torrent Strike 1 2nd August 2009 18:12
TS 5.1 Proxy server error yakogrimm Template Shares 2 12th April 2009 11:54
server 406 error mrdecoder Community Cafe 6 17th October 2008 14:37



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