在index.php上调用未定义的函数phperror_reporting()

时间:2016-11-23 05:43:37

标签: php

我的opencart网站突然停止工作并显示空白页面,当我检查错误日志时显示如下

[2016年11月22日10:20:26 Etc / GMT] PHP致命错误:在第1行的/home/haroosig/public_html/kashmirkit.com/index.php中调用未定义的函数phperror_reporting()

但是我没有在index.php中看到任何phperror_reporting():

<?php
// Version
define('VERSION', '2.2.0.0');

// Configuration
if (is_file('config.php')) {
    require_once('config.php');
}

// Install
if (!defined('DIR_APPLICATION')) {
    header('Location: install/index.php');
    exit;
}

// VirtualQMOD
require_once('./vqmod/vqmod.php');
VQMod::bootup();

// VQMODDED Startup
require_once(VQMod::modCheck(DIR_SYSTEM . 'startup.php'));

$application_config = 'catalog';

// Application
require_once(VQMod::modCheck(DIR_SYSTEM . 'framework.php'));

请帮助

0 个答案:

没有答案