I have a situation where I want to integrate another membership system of mine with dolphin.
I want it so that if a user is logged into my other system, they will automatically be logged into dolphin. I know when a user is logged into dolphin, cookies are registered (like memberid and password) -- upon doing a print_r($_COOKIE).
Well, I want to put my membership login form on the front page of the dolpin script -- so that when they log (with their name and password), it will register the session for my other membership system and then I "hack" my way into the dolpin script the register the cookie.
Where in dolpin script files can I just add the
$_COOKIE['memberid'] = 200; //from my other script
$_COOKIE['password'] = test;
