Notice
Recent Posts
Recent Comments
Link
목록CodeIgniter (2)
살다
codeigniter IE9 세션 버그
codeigniter 2.X 대 에서 IE 9 에서 세션이 제대로 작동하지 않는 버그 다른 브라우져에서는 문제가 없는데, IE9 에서 세션 쿠키 명에 언더바를 지원하지 않는다. /application/config.php 파일에서 세션 이름을 변경해주면 해결 가능~! $config['sess_cookie_name'] = 'XXX_XXXXX'; 위처럼 되어있는것을 아래 처럼 _ 를 제거한 형태로 변경해주면 해결가능 $config['sess_cookie_name'] = 'XXXXXXXX';
프로그래밍
2015. 2. 24. 10:30
CI 와 uploadify 사용시 로그아웃 되는 문제
CodeIgniter + uploadify + Session Cookie (Flash) The solution: This guide has been written for CI 2.1.0, it can easily be edited for prior versions.EDIT -In later versions of uploadify post_params in JavaScript may be replaced by formData1. Extend CI_Session Create a MY_Session.php under /application/libraries or extend your own one. Copy the whole sess_read() function from /system/libraries/Ses..
프로그래밍
2014. 9. 11. 20:24