嗯,这很奇怪......
我将100%正常工作的网站上传到我的服务器,它似乎突然停止了工作。
具体:
$this->load->view(
部分似乎被忽略error_reporting
,并将ENVIRONMENT
设置为development
,但它仍未显示任何错误 我的Home/Index
控制器:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$this->load->model('theme');
$themes = $this->theme->getLatestThemes(100);
$this->load->model('post');
$posts = $this->post->getLatestPosts(3);
echo "ENVIRONMENT : ".ENVIRONMENT; // Shows up fine
$this->load->view('home',array("themes"=>$themes, "posts"=>$posts));
echo "AFTER"; // Shows up fine
}
}
?>
有什么想法吗?可能出现什么问题?
PS 请注意,所有数据库设置都已相应更新,以及.htaccess
文件(即使我删除了其中的所有内容,以防万一有些错误,它仍然没有区别)
我似乎已经缩小了这个奇怪问题的原因......
当我禁用一个钩子时,视图加载正常。但是,我仍然不知道为什么它在本地工作而不是在线工作?
hooks.php中的
$hook['display_override'] = array(
'class' => 'Minifyhtml',
'function' => 'output',
'filename' => 'Minifyhtml.php',
'filepath' => 'hooks',
'params' => array()
);
钩/ MinifyHtml.php
<?
function getAd($matches)
{
$CI =& get_instance();
return $CI->load->view("template/adsense",array("ad"=>$matches[1]),true);
}
class Minifyhtml {
function output()
{
$CI =& get_instance();
$buffer = $CI->output->get_output();
$search = array(
'/97ed7d147627494968723a2bc9f346c699e2a004gt;[^\S ]+/s', //strip whitespaces after tags, except space
'/[^\S ]+97ed7d147627494968723a2bc9f346c699e2a004lt;/s', //strip whitespaces before tags, except space
'/(\s)+/s', // shorten multiple whitespace sequences
'/<!--(.*)-->/Uis'
);
$replace = array(
'>',
'<',
'\1',
''
);
$ad_regex = "/%%([A-Za-z0-9:\-]+)%%/i";
$buffer = preg_replace($search, $replace, $buffer);
$buffer = preg_replace_callback($ad_regex, "getAd", $buffer);
$CI->output->set_output($buffer);
$CI->output->_display();
}
}
?>
答案 0 :(得分:0)
'filename' => 'Minifyhtml.php'
必须更改为'filename' => 'MinifyHtml.php'
(资本H
) - 不知道为什么这在本地工作,但是......:-S