Is it possible to get Tank-Auth working as a package in CodeIgniter?
I installed database schema into my MySQL database and copied all the folders of tank_auth in my app "third_party" folder "[CI]\application\third_party\tank_auth". The Screenshot :
Session works fine.
I can load tank_auth models
$this->load->model('tank_auth/users');
I can load tank_auth views
$this->load->view('auth/login_form');
But i can't access "auth" and "welcome" controllers. My application shows a 404. My log files has no warning or error other that the 404.
Any idea?
Simon