1

我正在尝试学习 Codeigniter。我正在尝试在我的 CI 应用程序中使用 application/core/MY_Controller。MY_Controller.php 为:

class MY_Controller extends CI_Controller {

  protected $data = array();

  function __construct() {
    parent::__construct();
  }

  function render_page($view) {
    //do this to don't repeat in all controllers...
    $this->load->view('templates/header', $this->data);
    //menu_data must contain the structure of the menu...
    //you can populate it from database or helper

    $this->load->view($view, $this->data);
    $this->load->view('templates/footer', $this->data);
  }

}

现在我开始将家庭控制器编写为:

class Home extends MY_Controller {
         function __construct() {
    parent::__construct();
  }

        public function view($page = 'home')
        {
         $this->load->helper('text');
            $data['records']= $this->services_model->getAll();
            if ( ! file_exists('application/views/pages/'.$page.'.php'))
            {
                // Whoops, we don't have a page for that!
                show_404();
            }

            $data['title'] = ucfirst($page); // Capitalize the first letter


            $this->load->view('pages/'.$page, $data);


        } 

我的意见文件夹为

+pages
  +home.php
+templates
  +footer.php
  +header.php. 

这是我的配置和路由文件。

$config['base_url'] = 'http://localhost/~ytsejam/kirmiziblog/';
$config['index_page'] = 'index.php';
$route['default_controller'] = 'pages/view';
$route['(:any)'] = 'pages/view/$1';

我得到 404 page not found 错误。如何更改我的应用程序以使用 MY_Controller ?

4

1 回答 1

0

我在扩展核心类时也遇到了这个问题。我的问题是它正在我的本地服务器上工作,但不在我的生产服务器上。我在生产中收到 404 错误,并且仅在使用类扩展的控制器上。经过一番研究,我注意到我的本地服务器运行的是 php 版本 5.3.x,而我的生产服务器运行的是 5.2.x。为了解决这个问题,我不得不将我的生产服务器升级到 5.3。

要找出您的站点使用的 php 版本,请将此命令放在您的视图中:

<?php echo phpversion() ?>
于 2012-08-09T04:50:56.270 回答