Upgrading from 1.3.3 to 1.4.0

Note

이 페이지의 지침은 버전 1.3.3 를 실행하는 것을 가정합니다. 만약 그 버전으로 업그레이드 하지 않은 경우, 먼저 업그레이드해주세요.

업그레이드를 하기 전에, index.php 파일을 다른 파일로 교체하여 사이트를 내려주세요..

Step 1: CodeIgniter 파일 업그레이드 Update your CodeIgniter files

“system” 폴더 안의 다음 디렉토리 새로운 버전으로 교체해주세요

Note

만약 커스터마이징 된 파일이 있다면, 먼저 그것들을 복사해놓으세요.

  • application/config/hooks.php
  • application/config/mimes.php
  • codeigniter
  • drivers
  • helpers
  • init
  • language
  • libraries
  • scaffolding

Step 2: config.php 파일 업그레이드 Update your config.php file

application/config/config.php 을 열으셔서 다음을 추가해주세요:

/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the "hooks" feature you must enable it by
| setting this variable to TRUE (boolean).  See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;


/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify which characters are permitted within your URLs.
| When someone tries to submit a URL with disallowed characters they will
| get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible.  By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-';

Step 3: user guide 업그레이드 Update your user guide

로컬 복사본을 가지고 계시다면, 그것도 새로운 버전으로 교체해주세요.