[eluser]kilishan[/eluser]
[quote author="dpgtfc" date="1302919831"]
In your backend views you call $this->auth->restrict(), and I've tried to use the
"is_logged_in" function of the auth library but it doesn't seem to be auto-loaded for the basic homepage. Any ideas on how to get around this? I'm currently working on it, and will let you know if I find out a solution. Thanks![/quote]
You're right. With a default install, auth is not loaded for the front-end theme. To load auth, edit application/core/MY_Controller.php to load the required libraries in the Front_Controller class. You might also load it to the Base_Controller class, since it sounds like it is something that will be loaded site-wide for your application. But don't do it both places, that's would just create unnecessary double-loading.