Welcome Guest, Not a member yet? Register   Sign In
Yet another CodeIgniter noob, getting nothing but 404 errors from tutorials...
#3

[eluser]Unknown[/eluser]
you will get 404 error if you put the SYSTEM and APPLICATION folder out of the www root folder.

file_exists do not know the $application_folder in your index.php.
so just comment out IF
Code:
//if(!file_exists('../application/views/pages/'.$page.'.php'))
//{
// show_404();  
//}

$data['title'] = ucfirst($page);

$this->load->view('templates/header',$data);
$this->load->view('pages/'.$page,$data);
$this->load->view('templates/footer',$data);


Messages In This Thread
Yet another CodeIgniter noob, getting nothing but 404 errors from tutorials... - by El Forum - 04-07-2013, 10:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB