My Environment:
- PHP: 5.4.7
- OS: Windows
I have a PHP error while making admin center:
Fatal error: Class 'Admin_Process' not found in C:\xampp\htdocs\webas2\admin\admin_center.php on line 4
Code
admin_center.php
<?php
error_reporting(E_ALL ^ E_NOTICE);
require_once '../include/admin_processes.php';
$Admin_Process = new Admin_Process;
$Admin_Process->check_status($_SERVER['SCRIPT_NAME']);
$New = $Admin_Process->Register($_POST, $_POST['add_user']);
$Suspend = $Admin_Process->suspend_user($_POST, $_POST['Suspend']);
$Change = $Admin_Process->update_user($_POST, $_POST['Change']);
class_exists($Admin_Process);
php?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Crisp Webdesign - Login Script</title>
<link href="../include/style.css" rel="stylesheet" type="text/css">
<body>
<h1>Admin Center: <?php echo $_SESSION['username']; php?><br />
</h1>
<div align="center"><a href="../main.php">Return to Main
</a></div>
<div class="red" align="center">
<?php echo $_GET['alert']; php?></div>
<br />
<div align="center">
<h1>
<a name="active" id="active"></a> Active Users </h1>
<?php $Admin_Process->active_users_table(); php?>
</div><br>
<div align="center">
<h1> <a name="suspended" id="suspended"></a> Suspended Users </h1>
<?php $Admin_Process->suspended_users_table(); php?>
</div><br>
<?php
if(Admin_Approvial == true) {
echo '
<div align="center">
<h1> <a name="pending" id="pending"></a> Users Awating Approval </h1>';
$Admin_Process->pending_users_table();
echo '</div><br>';
}
php?>
<div style="width:600px; margin:0 auto; margin-bottom:20px;">
<a name="add" id="add"></a>
<form action="<?php echo $_SERVER['PHP_SELF']."#add"; php?>" method="post" style="float:left; margin-top:0px;">
<h1> Add User</h1>
<div class="red"><?php echo $New; php?></div>
<div class="label">First Name:</div>
<input name="first_name" type="text" class="field" value="<?php echo $_POST['first_name']; php?>" />
<br />
<div class="label">Last Name:</div>
<input name="last_name" type="text" class="field" value="<?php echo $_POST['last_name']; php?>" />
<br />
<div class="label">Email Address:</div>
<input name="email_address" type="text" class="field" value="<?php echo $_POST['email_address']; php?>" />
<br />
<div class="label">Information:</div>
<input name="info" type="text" class="field" value="<?php echo $_POST['info']; php?>" />
<br />
<br />
<div class="label">Password:</div>
<input name="pass1" type="password" class="field"/>
<br />
<div class="label">Repeat Password:</div>
<input name="pass2" type="password" class="field"/>
<br />
<br />
<div class="label">Username:</div>
<input name="username" type="text" class="field" value="<?php echo $_POST['username']; php?>" />
<br />
<div class="right">
<input name="add_user" type="submit" id="add_user" value="Add User" />
</div>
</form><br>
<a name="change" id="change"></a>
<form action="<?php echo $_SERVER['PHP_SELF']."#change"; php?>" method="post" style="float:right; margin-top:0px;">
<h1> Change User Level</h1>
<div class="red"><?php echo $Change; php?> </div>
<div class="label">Username Name:</div>
<?php $Admin_Process->list_users(); php?><br><br>
<div class="label">Username Level:</div>
<select name="level" id="level">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<div class="right">
<input name="Change" type="submit" class="textfield" value="Update" />
</div>
</form>
<br>
<a name="suspend" id="suspend"></a>
<form action="<?php echo $_SERVER['PHP_SELF']."#suspend"; php?>" method="post" style="float:right; margin-top:20px;">
<h1> Suspend User</h1>
<div class="red"><?php echo $Suspend; php?> </div>
<div class="label">Username Name:</div>
<?php $Admin_Process->list_users(); php?><br><br>
<div class="label">Status</div>
<select name="level" id="level">
<option value="suspended">Suspended</option>
<option value="live">Live</option>
</select>
<div class="right">
<input name="Suspend" type="submit" class="textfield" value="Update" />
</div>
</form>
</div>
Line 4
$Admin_Process = new Admin_Process;
admin_processes.php
<?
error_reporting (E_ERROR | 0);
include_once 'constants.php';
include_once 'mail.php';
class Admin_Process {
function check_status($page) {
ini_set("session.gc_maxlifetime", Session_Lifetime);
session_start();
if($_SESSION['user_level'] < 4){
header("Location: http://".$_SERVER['HTTP_HOST'].Script_Path."index.php?page=".$page);
}
}
function connect_db() {
$conn_str = mysql_connect(DBHOST, DBUSER, DBPASS);
mysql_select_db(DBNAME, $conn_str) or die ('Could not select Database.');
}
function query($sql) {
$this->connect_db();
$sql = mysql_query($sql);
$num_rows = mysql_num_rows($sql);
$result = mysql_fetch_assoc($sql);
return array("num_rows"=>$num_rows,"result"=>$result,"sql"=>$sql);
}
function Register($post, $process) {
if(isset($process)) {
$pass1 = $post['pass1'];
$pass2 = $post['pass2'];
$username = $post['username'];
$email_address = $post['email_address'];
$first_name = $post['first_name'];
$last_name = $post['last_name'];
$info = $post['info'];
if((!$pass1) || (!$pass2) || (!$username) || (!$email_address) || (!$first_name) || (!$last_name) || (!$info)) {
return "Some Fields Are Missing";
}
if ($pass1 !== $pass2) {
return "Passwords do not match";
}
$query = $this->query("SELECT username FROM ".DBTBLE." WHERE username = '$username'");
if($query['num_rows'] > 0){
return "Username unavialable, please try a new username";
}
$query = $this->query("SELECT email_address FROM ".DBTBLE." WHERE email_address = '$email_address'");
if($query['num_rows'] > 0){
return "Emails address registered to another account.";
}
$this->query("INSERT INTO ".DBTBLE." (first_name, last_name, email_address, username, password, info) VALUES ('$first_name', '$last_name', '$email_address', '$username', '".md5($pass1)."', '".htmlspecialchars($info)."')");
return 'User was created.';
}
}
function active_users_table() {
$sql = $this->query("SELECT * FROM ".DBTBLE." WHERE status = 'live'");
$result = $sql['sql'];
$num_rows = $sql['num_rows'];
$this->create_table($result, $num_rows);
}
function suspended_users_table() {
$sql = $this->query("SELECT * FROM ".DBTBLE." WHERE status = 'suspended'");
$result = $sql['sql'];
$num_rows = $sql['num_rows'];
$this->create_table($result, $num_rows);
}
function pending_users_table() {
$sql = $this->query("SELECT * FROM ".DBTBLE." WHERE status = 'pending'");
$result = $sql['sql'];
$num_rows = $sql['num_rows'];
$this->create_table($result, $num_rows);
}
function create_table($result, $num_rows) {
echo "<table align=\"center\" border=\"1\" cellspacing=\"0\" cellpadding=\"5\" class=\"admin_tabel\">\n";
echo "<tr class=\"tabel_header\">
<th align=\"center\" width=\"25%\"><strong> Name:</strong></th>
<th align=\"center\" width=\"15%\"><strong> Email Address:</strong></th>
<th align=\"center\" width=\"15%\"><strong> Username:</strong></th>
<th align=\"center\" width=\"15%\"><strong> Info:</strong></th>
<th align=\"center\" width=\"10%\"><strong> Login:</strong></th>
<th align=\"center\" width=\"5%\"><strong> Level:</strong></th>
<th align=\"center\" width=\"10%\" colspan=\"3\">Action</th>
</tr>\n";
for($i=0; $i<$num_rows; $i++){
$userid=mysql_result($result,$i,"userid");
$name=ucwords(substr(mysql_result($result,$i,"first_name")." ".mysql_result($result,$i,"last_name"),0,30));
$email_address=ucwords(substr(mysql_result($result,$i,"email_address"),0,16));
$info=ucwords(substr(mysql_result($result,$i,"info"),0,16));
$username=ucwords(substr(mysql_result($result,$i,"username"),0,16));
$userlevel=mysql_result($result,$i,"user_level");
$last_loggedin=mysql_result($result,$i,"last_loggedin");
echo "<tr height=\"35\">
<td> $name</td>
<td> $email_address</td>
<td> $username</td>
<td> $info</td>
<td align=\"center\"> $last_loggedin</td>
<td align=\"center\"> $userlevel</td>
<td align=\"center\"> <a href=\"admin_edituser.php?userid=$userid\"><img src=\"../include/icons/edit.png\" alt=\"Edit Users Details\" /></a></td>
<td align=\"center\"> <a href=\"admin_editpass.php?userid=$userid\"><img src=\"../include/icons/password.png\" alt=\"Change Users Password\" /></a></td>
<td align=\"center\"> <a href=\"admin_deleteuser.php?id=$userid\"><img src=\"../include/icons/delete.png\" alt=\"Delete User\" /></a></td>
</tr>\n";
}
if($num_rows == 0) {
echo "<tr height=\"35\">
<td colspan=\"9\" align=\"center\">No Members to Display</td>
</tr>\n";
}
echo "</table><br>\n";
}
function list_users() {
$q = "SELECT * FROM ".DBTBLE."";
$result = mysql_query($q);
$num_rows = mysql_numrows($result);
echo "<select name=\"username\">";
for($i=0; $i<$num_rows; $i++){
$name=mysql_result($result,$i,"username");
echo "<option value=\"$name\">$name</option>";
}
echo "</select>";
}
function update_user($POST, $change) {
if(isset($change)) {
$username = $POST['username'];
$level = $POST['level'];
$this->query("UPDATE ".DBTBLE." SET user_level = '$level' WHERE username = '$username'");
return $username."'s User level was changed to ".$level;
}
}
function suspend_user($POST, $suspend) {
if(isset($suspend)) {
$username = $POST['username'];
$status = $POST['level'];
$email = $this->query("SELECT email_address FROM ".DBTBLE." WHERE username = '$username'");
$this->query("UPDATE ".DBTBLE." SET status = '$status' WHERE username = '$username'");
if ($status == "live") {
return $username."'s User Ststus was changed to Live.";
Status_Changed($username, $email, 'Approved');
} else if ($status == "suspended") {
return $username."'s User Ststus was changed to Suspended.";
Status_Changed($username, $email, 'Suspended');
}
}
}
function delete_user($_POST, $delete) {
if(isset($delete)) {
$check = $_POST['check'];
$id = $_POST['id'];
if ($check == "yes") {
$this->query("DELETE FROM ".DBTBLE." WHERE userid = $id");
return "User was deleted.<br /><a href=\"admin_center.php\">Admin Center</a>";
} else if ($check == "no") {
return "User was not deleted.<br /><a href=\"admin_center.php\">Admin Center</a>";
}
} else {
return "Are you sure you want to delete the user?";
}
}
function edit_user($_POST, $edit) {
if(isset($edit)) {
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$info = $_POST['info'];
$email_address = $_POST['email_address'];
$username = $_POST['username'];
$userid = $_POST['userid'];
$this->query("UPDATE ".DBTBLE." SET first_name='$first_name', last_name='$last_name', email_address='$email_address', info='$info', username='$username' WHERE userid='".$userid."'");
return "User Details Updated.<br /><a href=\"admin_center.php\">Admin Center</a>";
}
}
function edit_request($edit) {
if(isset($edit)) {
$details = $this->query('SELECT * FROM '.DBTBLE.' WHERE userid = '.$_GET['userid'].'');
return $details['result'];
} else {
$details = $this->query('SELECT * FROM '.DBTBLE.' WHERE userid = '.$_GET['userid'].'');
return $details['result'];
}
}
function edit_pass($_POST, $edit) {
if(isset($edit)) {
$pass1 = $_POST['pass1'];
$pass2 = $_POST['pass2'];
$userid = $_POST['userid'];
if ($pass1 !== $pass2) {
return "Passwords do not match.";
}
$this->query("UPDATE ".DBTBLE." SET password = '".md5($pass1)."' WHERE userid = '$userid'");
return "User password was updated.<br /><a href=\"admin_center.php\">Admin Center</a>";
}
}
}
?>
admin_processes.phpisn't included correctly - check the path – Zoltan Toth Nov 9 '12 at 19:47error_reporting(E_ALL ^ E_NOTICE);beforeinclude_once '../include/admin_processes.php';, does it show any more errors? Also, if you changeinclude_oncetorequire_oncedoes in log an error? – Joshua Dwire Nov 9 '12 at 19:49