Third (3rd) exit to FreakAuth

I have installed the FreakAuth Lite library for CodeIgniter ( http://www.4webby.com/freakauth/ ). Everything works well (login / logout), but I have one problem. When the third page is requested after the user is logged in, the user will be automatically logged out. This happens if you just refresh the page three times or navigate to 3 separate pages. Any ideas? Thank.

0


source to share


1 answer


I also ran into this problem tonight. After some searching, I discovered that this guy, Kaga.Zepp, on the CodeIgniter forums suggested removing the 'session'

library from $autoload['libraries']

in autoload.php

. This seems to have helped me too.

I didn't poke around to try to figure out exactly why, but you're there.



Hope it works for you too.

+1


source







All Articles