带有load()和视图的错误codeigniter

时间:2013-10-23 14:24:46

标签: php codeigniter

下午好,

我遇到CodeIgniter的load()方法问题。 在当地所有工作都很棒。但是,当我尝试在在线服务器中检查我的应用程序时,我遇到了问题< => 无法加载请求的文件:警告/信息

我找到的解决方案就是这样做< =>

(1)在当地

public function test() {
         $this->load->view('warning/info');
    }

(2)在在线服务器中,我必须指定类似

的扩展名
public function test() {
     $this->load->view('warning/info.php');
}

我不知道为什么我要解散这个?如果有人知道为什么你能解释我。

非常感谢,对不起,我的英语不流利,但我希望你能理解我的信息。

1 个答案:

答案 0 :(得分:0)

识别问题

我在_ci_load()方法中查看了 system / core / Loader.php ,并且我已经提取了似乎导致问题的代码:

#/system/core/Loader.php::_ci_load

$_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
$_ci_file = ($_ci_ext == '') ? $_ci_view.'.php' : $_ci_view;

foreach ($this->_ci_view_paths as $view_file => $cascade)
{
        if (file_exists($view_file.$_ci_file))
        {
                $_ci_path = $view_file.$_ci_file;
                $file_exists = TRUE;
                break;
        }

        if ( ! $cascade)
        {
                break;
        }
}

....

if ( ! $file_exists && ! file_exists($_ci_path))
{
        show_error('Unable to load the requested file: '.$_ci_file);
}

解决问题

我已经了解了所使用的方法,所有这些方法似乎都支持PHP 4.0.3,因此您的问题很可能与PHP的不兼容版本无关。

似乎触发您的问题的代码在这里:

if ( ! $file_exists && ! file_exists($_ci_path))
{
        show_error('Unable to load the requested file: '.$_ci_file);
}

现在,我的猜测是,当你添加 .php 扩展名时它会起作用,因为这个方法确实通过了:

file_exists($_ci_path)

可能的操作是查看$ file_exists变量会发生什么,因为只有在发生这种情况时才设置为true:

if (file_exists($view_file.$_ci_file))

可能有帮助的其他信息

php.net上的file_exists方法也有一个有趣的评论:

file_exists will have trouble finding your file if the file permissions are not read enabled for 'other' when not owned by your php user. I thought I was having trouble with a directory name having a space in it (/users/andrew/Pictures/iPhoto Library/AlbumData.xml) but the reality was that there weren't read permissions on Pictures, iPhoto Library or AlbumData.xml. Once I fixed that, file_exists worked.

也许你可以发布这些文件的权限或尝试在那里探索。

您也可以尝试在系统类中进行调试,并查看是否存在任何问题。这非常奇怪,因为我自己从来没有遇到任何类似的东西,说实话,我看不出图书馆会有什么样的漏洞 - 它很可能与权限有关