edit:
Solved - mod_rewrite was the problem
I can't get CI to work as described in the tutorial. No matter how I fiddle with the path or the settings - it is not working
My Setup:
- ubuntu on local machine
- no
.htaccess - default routing
- config:
$config['base_url'] = 'http://localhost/~myuser/ci/';$config['index_page'] = 'index.php';$config['uri_protocol'] = 'AUTO';
- one controller named users.php class Users with a "listone" method
I try calling
- http://localhost/~myuser/ci/index.php?users/listone -> welcome page
- http://localhost/~myuser/ci/index.php/users/listone -> 404
I had different routing configured, to use users/listone as default. That was working, but then I was unable to access other methods.
What am I doing wrong? I tried to follow the tutorial, but it seems as if its not working as described.
edit: even with a slash at the end of base_url its not working, neither when empty
i get a server 404 when I call index.php/users/listone , not the one CI has.
The controller: added a index-method. - which is not reachable
<?php
class Users extends CI_Controller {
public function listone($page = 'listall')
{
echo $page;
}
public function index()
{
echo 'listone';
}
}
users/listoneworked when set asdefault_controllerinroutes.php? Can we see that controller? The missingbase_urltrailing slash definitely needs to be fixed but shouldn't affect routing. – Wesley Murch Mar 18 '12 at 22:19print_r($_SERVER)reveals anything useful. – Wesley Murch Mar 18 '12 at 23:02http://localhost/~myuser/ci/index.php/users/listoneto work you will still needmod_rewriteenabled in Apache, and you may also need to setRewriteBase /home/myuser/ci/(preferably with a .htaccess in your CI directory). – danneth Mar 19 '12 at 10:12