I'm working with CodeIgniter and Tank_Auth. I got the registration to work, but it looks like it's trying to load registration-success, and I'm not sure where that is.
In auth.php on line 239 I have
$this->tank_auth->notice('registration-success');
I see a registration-success.php in views/landing/registration-success.php. Is this the page it's trying to access? I'm getting a 404 when I submit a successful registration (I can see the user created in the db).
EDIT: After resetting and updating my routes.php file, I see that I'm getting a 404 page not found error while the url in the browser points to index.php/auth. Is there something I'm supposed to route in order for this to work?
Currently I have the following in my routes.php:
$route['default_controller'] = "welcome";
$route['404_override'] = '';
$route['default_controller'] = 'pages/view';
$route['(:any)'] = 'pages/view/$1';
$route['login'] = "/auth/login";
$route['logout'] = "/auth/logout";
$route['register'] = "/auth/register";