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

calendar类无法加载显示

[复制链接]
发表于 2014-3-21 10:33:36 | 显示全部楼层 |阅读模式
<?php
if (! defined ( 'BASEPATH' ))
        exit ( 'No direct script access allowed' );


class Calendar extends CI_Controller {
        function __construct() {
                parent::__construct ();
               
                $this->load->library('calendar');
                $this->calendar->generate();
               
        }
        public function index() {
                $this->load->view ( 'component/calendar' );
        }
}
?>


以上是我的代码,用的是最新版的CI,为什么浏览器返回"NetworkError: 500 Internal Server Error,要用这个日历类还需要配置什么地方吗?

本版积分规则