Index.php站点呈现空白页面

时间:2018-05-09 18:03:15

标签: php mysql linux

我正在尝试帮助某人使用他们的php网站呈现空白页面。当我进行故障排除时,我会在下面注释掉代码然后页面正常工作。

/System/Library/Extensions

我认为这是一个数据库错误,但我无法找到配置文件的位置,以查看数据库的存储位置,如果是本地或远程数据库。

服务器是AWS中的linux框。

Checkifuserlogin.php有

// include "checkifuserlogin.php";
// $condition = "";   
// $objDreamVacationGallery = new HomePageBanner();
// $data = $objDreamVacationGallery->selectAllRecords($condition,       $sort_field, $sort_order, $start, $limit);

selectAllRecords:

<?php
if( (isset($_SESSION['userid']) &&  $_SESSION['userid'] != '') && (isset($_SESSION['firsttimelogin']) && $_SESSION['firsttimelogin']=='0') ){
    if($_REQUEST["from"]=="contactus") {
        echo "<script language='JavaScript'>window.location = 'my-account.php'; </script>";
    } else {
        echo "<script language='JavaScript'>window.location = 'page.php?page_id=home'; </script>";
    }
    exit;
}

0 个答案:

没有答案