Upgrading from 1.4.0 to 1.4.1

Note

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

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

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

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

Note

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

  • codeigniter
  • drivers
  • helpers
  • libraries

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

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

/*
|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|
| Enables Gzip output compression for faster page loads.  When enabled,
| the output class will test whether your server supports Gzip.
| Even if it does, however, not all browsers support compression
| so enable only if you are reasonably sure your visitors can handle it.
|
| VERY IMPORTANT:  If you are getting a blank page when compression is enabled it
| means you are prematurely outputting something to your browser. It could
| even be a line of whitespace at the end of one of your scripts.  For
| compression to work, nothing can be sent before the output buffer is called
| by the output class.  Do not "echo" any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;

Step 3: 자동로드 아이템의 이름 변경 Rename an Autoload Item

다음 파일을 열어주세요: application/config/autoload.php

다음 배열 항목을 찾아주세요:

$autoload['core'] = array();

그것의 이름을 변경해주세요:

$autoload['libraries'] = array();

이 수정은 일부 사용자가 자신의 라이브러라가 자동 로드 되는지 확신할 수 없었는데, 그 명확성을 개선하기 위해서입니다.

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

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