Upgrading from 1.5.3 to 1.5.4¶
업그레이드를 하기 전에, index.php 파일을 다른 파일로 교체하여 사이트를 내려주세요..
Step 1: CodeIgniter 파일 업그레이드 Update your CodeIgniter files¶
“system” 폴더의 다음 파일과 디렉토리를 새로운 버전으로 교체해주세요:
- application/config/mimes.php
- system/codeigniter
- system/database
- system/helpers
- system/libraries
- system/plugins
Note
만약 커스터마이징 된 파일이 있다면, 먼저 그것들을 복사해놓으세요.
Step 2: config.php 파일에 캐릭터셋 추가 Add charset to your config.php¶
application/config/config.php 에 다음 내용을 추가합니다.
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
*/
$config['charset'] = "UTF-8";
Step 3: 언어 파일 자동로딩 Autoloading language files¶
어떤 언어 파일을 자동로딩하고 싶다면, 다음 라인을 application/config/autoload.php 에 추가해주세요
$autoload['language'] = array();
Step 4: user guide 업그레이드 Update your user guide¶
로컬 복사본을 가지고 계시다면, 그것도 새로운 버전으로 교체해주세요.