Upgrading from 2.1.0 to 2.1.1¶
업그레이드를 하기 전에, index.php 파일을 다른 파일로 교체하여 사이트를 내려주세요..
Step 1: CodeIgniter 파일 업그레이드 Update your CodeIgniter files¶
“system” 폴더의 모든 파일을 교체해주세요
Note
만약 커스터마이징 된 파일이 있다면, 먼저 그것들을 복사해놓으세요.
Step 2: config/mimes.php 교체¶
이 환경설정 파일은 더 많은 user mime-types 정보로 업데이트 되었습니다. _application/config/mimes.php* 에 복사하세요.
Step 3: IP address tables 업데이트¶
이 업그레이드는 IPv6 IP 주소 형식을 지원하게 되었습니다. 그것들을 저장하기 위해 ip_address 컬럼을 45 글자 이상으로 해주셔야 합니다. 예를 들면, CodeIgniter 의 세션 테이블은 변경이 필요합니다.
ALTER TABLE ci_sessions CHANGE ip_address ip_address varchar(45) DEFAULT '0' NOT NULL