$config['uri_protocol'] 설정.
팁인지는 모르겠는데 url 이슈때문에 몇자 적어봅니다. ^^
domain name 바로 뒤에 query string 을 받을수 있게 해달라는 요구가 있었는데요.
http://www.mydomain.com?test=1234
그래서 config의 $config['uri_protocol'] 값을 수정했는데.. CLI (cronjob) 에러가 나고 있었네요.
$config['uri_protocol'] = 'AUTO'
=>
$config['uri_protocol'] = 'PATH_INFO'
그래서 아래와 같이 수정.
$config['uri_protocol'] = isset($_SERVER['REQUEST_URI']) ? 'PATH_INFO' : 'AUTO';
참조 : http://www.daharveyjr.com/codeigniter-cli-command-line-interface/
$config['uri_protocol'] 이 AUTO로 되어 있으면
$this->input->get('test'); 로 값을 바로 받을 수 있었던걸로 기억하는데요.