반응형

WEB언어/CodeIgniter 8

CodeIgnite 에러 로그 보기 설정

PHP 플레임웍인 CodeIgniter에서 에러 Log정보를 보기를 설정 Config파일을 설정을 변경하면 됩니다. /application/config/config.php 파일 수정로그보기 = 1 / 로그 보지 않기 = 0 $config['log_threshold'] = 1; CodeIgniter has some error logging functions built in.Make your /application/logs folder writableIn /application/config/config.php set $config['log_threshold'] = 1; or use a higher number, depending on how much detail you want in your logsUse ..

CodeIgniter 세션 클래스

세션 하나만 추가, 가져와서 사용하기. 세션에 하나의 Key와 Value를 넣고 싶을때,$this->session->set_userdata('some_name', 'some_value'); 새션데이터 가져오기 $session_id = $this->session->userdata('session_id'); 참고: (한글) 세션 Session Class 일반적인 새션 생성 예제 $newdata = array( 'username' => 'johndoe', 'email' => 'johndoe@some-site.com', 'logged_in' => TRUE ); $this->session->set_userdata($newdata); 참고: 쿠키의 저장용량은 4KB 가 한계입니다, 그러므로 그 한계치를 넘지않도록 ..

CodeIgniter .htaccess 및 URL변경

CI에서 기본 설정값에서는 index.php이라는 경로가 계속 붙는다.그 값을 없애기 위해서는, 2가지를 해주면 된다. (1) /application/config/config.php의 설정 변경$config['index_page']='index.php' 를 $config['index_page']='' 로 변경$config['base_url'] = 'http://'.$_SERVER['SERVER_NAME'].'/Your Ci folder_name';$config['index_page'] = '';$config['uri_protocol'] = 'AUTO'; (2) /application/폴더에 .htaccess 파일 생성 RewriteEngine On RewriteBase / RewriteCond %{REQ..

CodeIgniter file delete와 download

CodeIgniter에서 파일을 삭제할때 사용되는 것은 File Helper입니다. File Helper 메뉴얼https://codeigniter.com/user_guide/helpers/file_helper.html (영어)http://www.ciboard.co.kr/user_guide/kr/helpers/file_helper.html (한글) [File delete 처리하기]지정된 경로내의 모든 파일을 지웁니다.$this->load->helper("file"); delete_files($path); // 디렉토리 안에 파일들 삭제delete_files('./path/to/directory/'); // 포함하고 있는 모든 디렉토리까지 삭제 delete_files('./path/to/directory/'..

1
반응형