Posted
Filed under 프로그래밍/PHP
PHP버전을 5.6.11로 업그레이드를 했더니 Disallowed Key Characters. 오류가 난다.
해결 방법은...

1. system/core/input.php 을 연다.
2. function _clean_input_keys($str) 을 찾는다.
3. 수정한다.
 if ( ! preg_match("/^[a-z0-9:_\/-]+$|/i", $str))
 {
 exit('Disallowed Key Characters.'. $str);
 }



추가로...
Common.php 257번째줄에 notice가 나오면 수정
 $_config[0] =& $config;
 return $_config[0];



2016/03/14 16:21 2016/03/14 16:21