Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   Template Shares v3.1 Nulled (http://www.bvlist.com/showthread.php?t=104)

thedizzy 3rd May 2008 15:52

Re: TS SE v3.1 Nulled
 
First when i installed ts i click on Staff panel and then i see one form for pincode.I wrote my true code but i saw a error "Your passkey is wrong!" .So i edit my file staffpanel.php like this:

Code:

$rootpath = "./../";
include($rootpath . 'include/bittorrent.php');
gzip();
dbconn();
loggedinorreturn();
maxsysop();

if ($usergroups['canstaffpanel'] == 'no' OR $usergroups['canstaffpanel'] != 'yes') {
        print_no_permission(true);
        exit;
}
?>
stdhead("Staff Panel");

begin_frame("WELCOME TO ".strtoupper($SITENAME)." - STAFF PANEL");
print("
");
print("
\n");

///////////////////// Remove And Edit Options Sys.Admin \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$sure = $_GET['sure'];
if($sure == "yes") {
$delsosadminid = (int)$_GET['delsosadminid'];
$query = "DELETE FROM sysoppanel WHERE id=" .sqlesc($delsosadminid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("
");
stdfoot();
die();
}
$delsosadminid = (int)$_GET['delsosadminid'];
$name = trim(htmlspecialchars($_GET['mod']));
if($delsosadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($name) ( Yes! / No! )");
}
end_frame();
print("
");
stdfoot();
die();
}

$editsosadmin = (int)$_GET['editsosadmin'];
if($editsosadmin == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE sysoppanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}
$editsosadminid = (int)$_GET['editsosadminid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editsosadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}
///////////////////// Remove And Edit Options Admin \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$suree = $_GET['suree'];
if($suree == "yes") {
$deladminid = (int)$_GET['deladminid'];
$query = "DELETE FROM adminpanel WHERE id=" .sqlesc($deladminid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("");
stdfoot();
die();
}
$deladminid = (int)$_GET['deladminid'];
$nameadmin = htmlspecialchars(trim($_GET['admin']));
if($deladminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($nameadmin) ( Yes! / No! )");
}
end_frame();
print("");
stdfoot();
die();
}

$editadmin = (int)$_GET['editadmin'];
if($editadmin == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE adminpanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}

$editadminid = (int)$_GET['editadminid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editadminid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}

///////////////////// Remove And Edit Options Moderator \\\\\\\\\\\\\\\\\\\\\\\\\\\\

$sureee = $_GET['sureee'];
if($sureee == "yes") {
$delmodid = (int)$_GET['delmodid'];
$query = "DELETE FROM modpanel WHERE id=" .sqlesc($delmodid) . " LIMIT 1";
$sql = sql_query($query);
echo("The option is successfully removed![ Back ]");
end_frame();
print("");
stdfoot();
die();
}
$delmodid = (int)$_GET['delmodid'];
$namemod = htmlspecialchars(trim($_GET['mod']));
if($delmodid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("You and in the truth wish to remove an option? ($namemod) ( Yes! / No! )");
}
end_frame();
print("");
stdfoot();
die();
}

$editmod = (int)$_GET['editmod'];
if($editmod == 1) {
$id = (int)$_GET['id'];
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$query = "UPDATE modpanel SET
name = ".sqlesc($mod_name).",
url = ".sqlesc($mod_url).",
info = ".sqlesc($mod_info)."
WHERE id=".sqlesc($id);
$sql = sql_query($query);
if($sql) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("");
echo("");
echo("
It is successfully changed[ Back ]
");
}
end_frame();
print("");
stdfoot();
die();
}
}

$editmodid = (int)$_GET['editmodid'];
$name = trim(htmlspecialchars($_GET['name']));
$url = trim(htmlspecialchars($_GET['url']));
$info = trim(htmlspecialchars($_GET['info']));
if($editmodid > 0) {
echo("Only Sys.Admin is able to do it

");
if (get_user_class() >= UC_SYSOP) {
echo("
");
echo("");
echo("
At present you change an option \"$name\"
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Option:
URL-file:
Info:
");
}
end_frame();
print("");
stdfoot();
die();
}


///////////////////// Add new options \\\\\\\\\\\\\\\\\\\\\\\\\\\\
$add = $_GET['add'];
if($add == 'true') {
$mod_name = trim(htmlspecialchars($_GET['mod_name']));
$mod_url = trim(htmlspecialchars($_GET['mod_url']));
$mod_info = trim(htmlspecialchars($_GET['mod_info']));
$cppanel = trim(htmlspecialchars($_GET['cppanel']));
unset($message);
if ($mod_name == '' OR $mod_url == '') {
        $message = 'Don\'t leave any fields blank';
}else{
$query = "INSERT INTO $cppanel SET name = ".sqlesc($mod_name).", url = ".sqlesc($mod_url).", info = ".sqlesc($mod_info);
$sql = sql_query($query);
if($sql) {
        $message = 'New option has been added.';
} else {
        $message = 'Database error.';
}
}
header("Location:  " . $_SERVER['SCRIPT_NAME'] . "?message=".$message);
}
if (get_user_class() >= UC_SYSOP) {
        if ($_GET['message'])
                $msg = "[b]".htmlspecialchars(trim($_GET['message']));
        else
                $msg = "ADD NEW OPTION";
echo $msg."
";
print("
");
echo("
");
echo("");
echo("");
echo("");
echo("");
echo("");
echo("
Name:
URL-file:
Info:
Option for:
");
}
echo("
");
echo("
");

///////////////////// Sys.Admin Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
if (get_user_class() >= UC_SYSOP) {
echo("

FOR SYSOP'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM sysoppanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);

$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
print("
");
print("
");
}
///////////////////// Admin Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
if (get_user_class() >= UC_ADMINISTRATOR) {
echo("

FOR ADMINISTRATOR'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM adminpanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);
$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
print("
");
print("
");
}
///////////////////// Moderator Only \\\\\\\\\\\\\\\\\\\\\\\\\\\\
echo("

FOR MODERATOR'S ONLY

");
print("
");
print("");
echo("");
$query = "SELECT * FROM modpanel WHERE 1=1 ORDER by NAME";
$sql = sql_query($query);
while ($row = mysql_fetch_array($sql)) {
$id = $row['id'];
$name = $row['name'];
$url = str_replace("admin/", "", $row["url"]);
$info = $row['info'];

echo("");
}
print("
NAME/URLINFOEDITDELETE
$name $info
");
end_frame();
end_frame();
stdfoot();
?>
And now the script checks only your class not your pincode and now i have no problems with staff panel :D \

If you have my problem try this!
ArturK 4th June 2008 22:58

Re: TS SE v3.1 Nulled
 
1 Attachment(s)
Katls.lv

how can i fix?

Attachment 89

GaBoNtZ 5th June 2008 06:37

Re: TS SE v3.1 Nulled
 
hmmm strange...
i see you use "localhost".
if is windows is strange because it should work but if you use linux, make sure you chmod 0777 or 777 torrents folder.

Cr3tu 29th August 2008 09:47

Problem!
 
1 Attachment(s)
Help me .. when i instal xampp and i configure him i go to security i change the password etc. after go to php.admin and login i create a database,i make a folder in htdocs i copy the files in htdocs in that folder,after i copy the TS in htdocs .. and i must go to localhost .... but when i go it's this : "[1045] dbconn: mysql_pconnect: Access denied for user 'ODBC'@'localhost' (using password: NO)"

This is the picture:

Attachment 547

ArturK 29th August 2008 11:03

install source, go to install settings and check DB settings (mysql apssword and user)

Cr3tu 29th August 2008 12:41

Still don't work
 
1 Attachment(s)
I just make what you said but still don't work :((

Attachment 548

x517530 4th November 2008 14:12

How to remove or rename Powered by?
 
How to remove or rename Powered by TS Special Edition v3.1 ???:blink:

Dragan3591 4th November 2008 17:09

functions.php. Simply delete "Powered by bla bla..." or edit it!

x517530 14th December 2008 22:46

help me plz ...
 
Plz help me with this :

How to remove TS Special Edition v.3.1 Nulled by Bind
:sos:

Ashur 15th December 2008 03:51

Quote:

Originally Posted by 517530 (Post 7408)
Plz help me with this :

How to remove TS Special Edition v.3.1 Nulled by Bind
:sos:

/include/template/default/footer.php


All times are GMT +2. The time now is 09:13.

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