다른 부분은 잘돼는데....
인서트 모듈도 잘갔다 옵니다 데이타가 잘 박혀요
ci 버젼은 2.1.4 입니다
function write() {
if($_POST){
$content = $this->input->post("content",true);
$created_date = $this->input->post("created_date",true);
$due_date = $this->input->post("due_date",true);
$this->todo_m->insert_todo($content,$created_date,$due_date);
redirect('/main/lists/');
exit;
} else {
$this->load->view("todo/write_v");
}
일케 날리면 http://ci/todo/main/lists 이주소가 나오며 객체없슴...뜨네요
'/' 슬래쉬가 안붙어여.....
xampp 루트경로가 ci고 todo를 만들었구요
웬지 경로문제일듯 한데....
cd
todo
application
이하 ci구조동일.....
제가 놓친게 뭘까요...ㅠ
아니면 쿼리날려서 리스트를 부르면 될것 같긴 한데...뭔가 개운치 않은..ㅠ
config.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$config['base_url'] = '';
$config['index_page'] = 'index.php';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] = '';
$config['language'] = 'english';
$config['charset'] = 'UTF-8';
$config['enable_hooks'] = FALSE;
$config['subclass_prefix'] = 'MY_';
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
$config['log_threshold'] = 0;
$config['log_path'] = '';
$config['log_date_format'] = 'Y-m-d H:i:s';
$config['cache_path'] = '';
$config['encryption_key'] = '';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = TRUE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 300;
$config['cookie_prefix'] = "";
$config['cookie_domain'] = "";
$config['cookie_path'] = "/";
$config['cookie_secure'] = FALSE;
$config['global_xss_filtering'] = FALSE;
$config['csrf_protection'] = FALSE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
$config['compress_output'] = FALSE;
$config['time_reference'] = 'local';
$config['rewrite_short_tags'] = FALSE;
$config['proxy_ips'] = '';
|
todo 프로젝트 3.6절 진행되기 전까지는 주소에 index.php가 나와야 정상입니다.