Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   Internal server error (http://www.bvlist.com/showthread.php?t=693)

demonbogdan 23rd July 2008 23:02

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

:suicide:

joeroberts 24th July 2008 06:50

Re: Internal server error
 
can you provide me a link so I may see if it is what I think it is??

Fynnon 24th July 2008 12:21

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

:suicide:


I see it`s working:

http://torrent.club-tv.ro

http://torrent.muzicutza.info

:unknown:

joeroberts 24th July 2008 14:45

Re: Internal server error
 
clear your cookies and tell me if the page well load?

demonbogdan 26th July 2008 23:41

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

joeroberts 27th July 2008 01:42

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

demonbogdan 27th July 2008 20:26

Re: Internal server error
 
thanks.. i try, and now work

\n");
                while ($arr = $db->sql_fetchrow($res))
                        {
                        $torrname = htmlspecialchars($arr['name']);
                                if (strlen($torrname) > 55)
                                $torrname = substr($torrname, 0, 55) . "...";


                        print(" ".number_format($arr['leechers'])."   ".$arr['downloaded']."    ".$arr['completed']."    ".$arr['added']."  \n");
                        }
                print("
joeroberts 27th July 2008 22:43

Re: Internal server error
 
fix for torrents need seeding
Code:

/*
*-------------------------------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("
\n");
        print ("
Please help them out, if you happen to have the files on your harddisk. Thank you!
\n");
        print("
TORRENTLEECHSNATCHEDCOMPLETEDDATE ADDED
".((strlen($arr['name']) <= 30) ? $arr['name']: substr($arr['name'],0,27)."...")."
\n");


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

NO TORRENTS NEED SEEDED

";
CloseTable();
}
?>


All times are GMT +2. The time now is 12:21.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.