php项目的索引页面没有显示任何内容

时间:2013-05-06 16:33:52

标签: php wamp sourceforge

我从sourceforge.net下载了一个名为Employee Scheduler的php项目。问题是,index.php应该是主页,但是当我通过localhost访问它时什么也没有显示。我访问它们时,我的计算机中的其他php项目正在运行,但该员工调度程序除外。我很确定我也在访问正确的文件夹,在

中访问它
  

本地主机/调度器/ index.php的

甚至在同一目录中创建测试php文件并访问它。测试php文件工作,index.php仍然没有显示任何内容。这可能是什么问题?

我在Windows 7计算机上使用WAMP。

修改

我在php文件的第一行包含error_reporting(E_ALL);,但它仍然没有输出任何内容。是什么给了什么?

我将在这里发布index.php的内容:

<?php
/*********************************************************
    File: index.php
    Project: Employee Scheduler
    Author: John Finlay
    Comments:
        The home page for the site.  Asks a user to login
        and then redirects them to the appropriate section
        for employees or supervisors

    For site documentation and setup see the README.txt file
    included with the distrobution package.  If you did not
    receive this file, it can be found at 
    http://empscheduler.sourceforge.net

    Copyright (C) 2003  Brigham Young University

    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
**********************************************************/

error_reporting(E_ALL);
require "es_functions.php";

//-- authenticate the user
$user = auth_user();
$url = "";
//-- if they are a supervisor then forward them to the supervisor home page
if (preg_match("/(Supervisor)|(Admin)/", $user["u_type"])) $url= "es_sup_index.php?".session_name()."=".session_id();
//-- forward to employee homepage
else $url = "es_emp_index.php?".session_name()."=".session_id();
header("Location: $url");

print_header("Welcome");
print_r($user);
print "<br /><br />If you are seeing this, your browser did not forward you to the correct page.  Click <a href=\"$url\">here</a> to continue.<br />\n";
print_footer();
exit;
?>

1 个答案:

答案 0 :(得分:1)

尝试在error_reporting(E_ALL);

之后添加以下行
ini_set("display_errors", 1);