Upgrading From Beta 1.0 to Beta 1.1¶
Beta 1.1 로 업그레이드하기 위해 다음 스텝을 따라해주세요:
Step 1: index file 교체¶
index.php file 을 새로운 파일로 교체해주세요. Note: 만약에 “system” 디렉토리명을 변경하셨다면, 새로운 파일에서 이 정보를 변경해주세요.
Step 2: 환경설정 폴더 위치 변경¶
CodeIgniter 의 이 버전은 여러 세트의 “applications” 를 허용합니다. 각각의 application 이 고유의 환경값을 가지게 하기 위해, 환경설정 디렉토리는 application 디렉토리로 이동되어야 합니다. 지금 이동하십시오
Step 4: 캘린더 언어 파일 추가¶
새로운 캘린더 클래스를 위한 새로운 언어 파일입니다. language 폴더에 추가해야 합니다. 다음에 추가해주세요: language/english/calendar_lang.php
Step 5: 환경설정 파일 수정¶
원래의 application/config/config.php 파일은 오타가 있습니다. 파일을 열고 쿠키와 관련된 항목을 보세요:
$conf['cookie_prefix'] = "";
$conf['cookie_domain'] = "";
$conf['cookie_path'] = "/";
배열명을 $conf 에서 $config 로 변경해주세요, 아래와 같이:
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
마지막으로, 환경설정 파일에 다음 새로운 항목을 추가해주세요 (그리고 필요하다면 그 옵션을 변경해주세요):
/*
|------------------------------------------------
| URI PROTOCOL
|------------------------------------------------
|
| This item determines which server global
| should be used to retrieve the URI string. The
| default setting of "auto" works for most servers.
| If your links do not seem to work, try one of
| the other delicious flavors:
|
| 'auto' Default - auto detects
| 'path_info' Uses the PATH_INFO
| 'query_string' Uses the QUERY_STRING
*/
$config['uri_protocol'] = "auto";