설정파일에서 debugmode를 켜고 봤더니 아래와 같은 오류가 발생하고 있었다.
Invalid callback Session::write, class 'Session' not found(2)
File: Unknown:0
Unknown: Failed to write session data (user). Please verify that the current setting of session.save_path is correct (/tmp)(2)
File: Unknown:0
Invalid callback Session::close, class 'Session' not found(2)
File: Unknown:0
이는 PHP의 APC가 활성화 되어있을 때 발생하는 문제이다.
...
register_shutdown_function("session_write_close");
...
160: if (session_start() !== ture) {
이 이외에도 SQL Table Create 오류가 발생하였는데, 이는 library/model/common.plugin.php 파일의 236줄 TYPE=MyISAM 을 ENGINE=MyISAM 으로 바꾸어 해결하였다.
참조 : http://www.lifefeel.com/347
Posted by Lifefeel


setup.php.zip
