This is the error that is popping up before my layout:
Code:
Deprecated: Function eregi() is deprecated in /home/booter4/domains/shell-list.com/public_html/includes/functions.php on line 4
Code:
Deprecated: Function eregi() is deprecated in /home/booter4/domains/shell-list.com/public_html/header.php on line 8
This is Functions.php:
[PHP]<?php
$file = basename(__FILE__);
if(eregi($file,$_SERVER['REQUEST_URI'])) {
die("Sorry but you cannot access this file directly for security reasons.");
}
$username = $_SESSION['user_name'];
$id = $_SESSION['user_id'];
$level = $_SESSION['user_level'];
function getBooterTitle() {
$grabTitle = "SELECT booter_name FROM config";
$result = mysql_query($grabTitle);
while($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<title>" . $row['booter_name'] . "</title>";
}
}
$rs_all = mysql_query("select count(*) as total_all from users") or die(mysql_error());
$rs_active = mysql_query("select count(*) as total_active from users where approved='1'") or die(mysql_error());
$rs_total_pending = mysql_query("select count(*) as tot from users where approved='0'");
list($total_pending) = mysql_fetch_row($rs_total_pending);
list($all) = mysql_fetch_row($rs_all);
list($active) = mysql_fetch_row($rs_active);
if($level = 5) {
$level = "Administrator";
} else {
$level = "Paid Customer";
}
$result = mysql_query("SELECT * FROM getshells");
$num_rows = mysql_num_rows($result); // Count the entries in the GET shells table
$result2 = mysql_query("SELECT * FROM postshells");
$num_rows2 = mysql_num_rows($result2); // Count the entries in the POST shells table
$result3 = mysql_query("SELECT * FROM slowloris");
$num_rows3 = mysql_num_rows($result3); // Count the entries in the Slowloris shells table
$shellsOnline = $num_rows + $num_rows2 + $num_rows3; // Add the 3 tables together to form one value.
$page_limit = 10;
$host = $_SERVER['HTTP_HOST'];
$host_upper = strtoupper($host);
$login_path = @ereg_replace('admin','',dirname($_SERVER['PHP_SELF']));
$path = rtrim($login_path, '/\\');
// filter GET values
foreach($_GET as $key => $value) {
$get[$key] = filter($value);
}
foreach($_POST as $key => $value) {
$post[$key] = filter($value);
}
if($post['doBan'] == 'Ban') {
if(!empty($_POST['u'])) {
foreach ($_POST['u'] as $uid) {
$id = filter($uid);
mysql_query("update users set banned='1' where id='$id' and `user_name` <> 'admin'");
}
}
$ret = $_SERVER['PHP_SELF'] . '?'.$_POST['query_str'];;
header("Location: $ret");
exit();
}
if($_POST['doUnban'] == 'Unban') {
if(!empty($_POST['u'])) {
foreach ($_POST['u'] as $uid) {
$id = filter($uid);
mysql_query("update users set banned='0' where id='$id'");
}
}
$ret = $_SERVER['PHP_SELF'] . '?'.$_POST['query_str'];;
header("Location: $ret");
exit();
}
if($_POST['doDelete'] == 'Delete') {
if(!empty($_POST['u'])) {
foreach ($_POST['u'] as $uid) {
$id = filter($uid);
mysql_query("delete from users where id='$id' and `user_name` <> 'admin'");
}
}
$ret = $_SERVER['PHP_SELF'] . '?'.$_POST['query_str'];;
header("Location: $ret");
exit();
}
if($_POST['doApprove'] == 'Approve') {
if(!empty($_POST['u'])) {
foreach ($_POST['u'] as $uid) {
$id = filter($uid);
mysql_query("update users set approved='1' where id='$id'");
list($to_email) = mysql_fetch_row(mysql_query("select user_email from users where id='$uid'"));
}
}
$ret = $_SERVER['PHP_SELF'] . '?'.$_POST['query_str'];
header("Location: $ret");
exit();
}
if(isset($_POST['EmptyLogs'])) {
mysql_query("TRUNCATE TABLE `logs`");
echo "<br><div class=\"divider\"><center>Logs have been cleared</center></div>";
}
if(isset($_POST['EmptyNews'])) {
mysql_query("TRUNCATE TABLE `news`");
echo "<br><div class=\"divider\"><center>News has been cleared</center></div>";
}
if(isset($_POST['EmptyUsers'])) {
mysql_query("DELETE FROM users WHERE approved = 0");
echo "<br><div class=\"divider\"><center>Unapproved users have been cleared from the database.</center></div>";
}
if(isset($_POST['SubmitConfig'])) {
$booterName = $_POST['bootername'];
mysql_query("INSERT INTO `config` (`booter_name`) VALUES ('" . $booterName . "')") or die(mysql_error());
}
?>[PHP]