|
不知道什么原因我手动自动加载session都报错,用的是阿帕奇环境,php5.4版本,框架3.0,请指点页面错误如下
Internal Server ErrorThe server encountered an internal error ormisconfiguration and was unable to completeyour request.
Please contact the server administrator at admin@phpStudy.net to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be availablein the server error log.
代码很简单
<?php
class NewsCtlr extends CI_Controller{
public function __construct(){
parent::__construct();
//$this->load->library('Session');
}
public function viewlist(){
//$this->load->view('news/list.php');
echo 'aaaa';
//echo $this->session;
}
}
?>
|
|