用户
 找回密码
 入住 CI 中国社区
搜索
查看: 4727|回复: 3
收起左侧

[HELP] 求助:Unable to load the requested file

[复制链接]
发表于 2014-5-2 08:47:21 | 显示全部楼层 |阅读模式
新手问题,按教程做例子的时候出现这个错误,服务器是centos 6.5 php5.3
Unable to load the requested file: templates/header.php

类文件内容:
PHP复制代码
 
<?php
class Pages extends CI_Controller
{
  public function view($page = 'home')
  {
         if ( ! file_exists('xlpapp/views/pages/'.$page.'.php'))
         {
              // 页面不存在
              show_404();
         }
         $data['Title'] = ucfirst($page); // 将title中的第一个字符大写
         $this->load->view('templates/header', $data);
         $this->load->view('pages/'.$page, $data);
         $this->load->view('templates/footer', $data);
  }
}
?>
 
复制代码


 楼主| 发表于 2014-5-2 08:54:55 | 显示全部楼层
问题原因找到了,是文件权限的问题{:soso_e127:}
发表于 2017-3-15 16:29:40 | 显示全部楼层
qzxlp 发表于 2014-5-2 08:54
**** 作者被禁止或删除 内容自动屏蔽 ****

文件权限要怎么改
发表于 2017-3-15 17:26:14 | 显示全部楼层
大哥,怎么改的,我也参考一下

本版积分规则