Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>";

    }
    }
}

?>
share|improve this question
probably the admin_processes.php isn't included correctly - check the path – Zoltan Toth Nov 9 '12 at 19:47
1  
If you put error_reporting(E_ALL ^ E_NOTICE); before include_once '../include/admin_processes.php';, does it show any more errors? Also, if you change include_once to require_once does in log an error? – Joshua Dwire Nov 9 '12 at 19:49
Are you shure, that the class is in the PHP file and have the correct name? Its Case sensetive! – Stony Nov 9 '12 at 19:50
Can we see the code for admin_processes.php? – Joshua Dwire Nov 9 '12 at 19:50
1  
Your question is missing a question mark. StackOverflow isn't your personal debugger. – Mike B Nov 9 '12 at 19:53
show 1 more comment

closed as not a real question by Mike B, hakre, jeroen, j0k, tereško Nov 10 '12 at 22:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

This is a relative path issue.

The Error as you stated:

Fatal error: Class 'Admin_Process' not found in
C:\xampp\htdocs\webas2\admin\admin_center.php on line 4

If that is the location of the file that is running the include then the include path

'../include/admin_processes.php'

would look like:

C:\xampp\htdocs\webas2\include\admin_processes.php

Is this where the file is located? If not then you need to adjust the include path.

The "../" is telling the browser to search the parent directory of the location of the current document, THEN look for the file.

share|improve this answer

Change include_once to require_once, that will error out if the file is not there.

From php.net:

require is identical to include except upon failure it will also produce a fatal E_COMPILE_ERROR level error. In other words, it will halt the script whereas include only emits a warning (E_WARNING) which allows the script to continue.

Edit: Not sure why this was downvoted, but if the included file is required by the application and the application can't run without it, require_once is the appropriate statement to use.

Also, if you put your error_reporting call before the include it would warn you if the included file did not exist (as one of the comments indicates).

<?php
error_reporting(E_ALL ^ E_NOTICE);
include_once '../include/admin_processes.php';
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.