(12-29-2014, 04:26 AM)tads Wrote: I tried installing appunto-auth 0.1.3 in codeigniter 2.2.0 running locally on XAMMP 1.8.2 on Windows 7 32bits. everything went smooth until the hooks part. When I enable Hooks and refresh the browser (firefox, IE, Chrome) I don't get any error, yet I dont see the login panel. When I disable the hooks from config.php, i am taken back to admin page.
Thanks to Bill. Here is the solution, just in case there are someone like me...
On Xampp, it looks like the "php" is required in code tags in views. It may be that the pages you are trying to access are marked as private (the default if you do not change them) and codeigniter is not rendering the login.php view correctly.
Try this, in views/appunto-auth/login.php: change:
<? echo $site_name ?> to <?php echo $site_name ?>
and change
<? echo appunto_login_box($auth_message) ?> to <?php echo appunto_login_box($auth_message) ?>