ssouf
CodeIgniter 3.x An error occurred. 본문
호스팅 서비스 이용중...
An error occurred.
Sorry, the page you are looking for is currently unavailable.
Please try again later.
If you are the system administrator of this resource then you should check theerror log for details.
Faithfully yours, nginx.
문제!!!
헉~~ 아무것도 안했는데
$autoload['libraries'] = array('database','session');
autoload.php 에 라이브러리에 session 만 넣었을뿐이다
해결!!!
config.php
$config['sess_save_path'] = NULL;
=>
$config['sess_save_path'] = BASEPATH."/data/session";
으로 변경한다.
당연히 /data/session 이라는 폴더는 만들어 줘야겠지?
퍼미션도 주어야되고..
'Web DEV > CodeIgniter' 카테고리의 다른 글
Codeigniter3 에서 Mcrypt 시놀로지 web station php (0) | 2023.09.05 |
---|---|
Assigning the return value of new by reference is deprecated (0) | 2012.07.12 |