Upgrading from 1.5.4 to 1.6.0¶
업그레이드를 하기 전에, index.php 파일을 다른 파일로 교체하여 사이트를 내려주세요..
Step 1: CodeIgniter 파일 업그레이드 Update your CodeIgniter files¶
“system” 폴더의 다음 파일과 디렉토리를 새로운 버전으로 교체해주세요:
- system/codeigniter
- system/database
- system/helpers
- system/libraries
- system/plugins
- system/language
Note
만약 커스터마이징 된 파일이 있다면, 먼저 그것들을 복사해놓으세요.
Step 2: Add time_to_update to your config.php¶
application/config/config.php 에 다른 세션 환경 옵션과 함께 다음 내용을 추가합니다.
$config['sess_time_to_update'] = 300;
Step 3: Add $autoload[‘model’]¶
application/config/autoload.php 에 다음 내용을 추가합니다.
/*
| -------------------------------------------------------------------
| Auto-load Model files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('my_model');
|
*/
$autoload['model'] = array();
Step 4: Add to your database.php¶
application/config/database.php 파일에 다음 변경사항을 추가합니다:
다음 변수를 데이터베이스 환경 옵션에 추가합니다.
$active_record = TRUE;
다음을 데이터베이스 환경 옵션에서 삭제합니다.
$db['default']['active_r'] = TRUE;
다음을 데이터베이스 환경 옵션에 추가합니다.
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
Step 5: user guide 업그레이드 Update your user guide¶
로컬 복사본을 가지고 계시다면, 그것도 새로운 버전으로 교체해주세요.