I have been using a php authentication app called Simpleauth
http://codecanyon.net/item/simpleauth-very-simple-secure-login-system/232148?s_rank=11
However Ive found it conflicts with phpgrid due to sharing the $_SESSION global.
1. Is there a workaround?
2. Which php based authentication apps are compatible with phpgrid?
1 Answers
I've not used this product so can't tell what exactly is going inside that script.
Grid lib resumes existing session if already there otherwise create new.
if(session_id() == '') session_start();
Try including grid library above that script. You can email me code of app for review or contact script author for help.
Your Answer