01-16-2019, 01:02 PM
Ok. So that helps. Now the tricky part is being logged into them all at once.
Basically the idea of being logged in usually has to do with a $_SESSION variable. You'll notice that if you go in the php of any userspice page and you var_dump($_SESSION); you will see a few variables. The main one that matters us $_SESSION['user'] = your user id.
You'll have to login to those other applications and var_dump $_SESSIOn to see what variables they set and see if you can get them to be set when singing into userspice.
That may not be the only way, but it's the first thing I would try.
Basically the idea of being logged in usually has to do with a $_SESSION variable. You'll notice that if you go in the php of any userspice page and you var_dump($_SESSION); you will see a few variables. The main one that matters us $_SESSION['user'] = your user id.
You'll have to login to those other applications and var_dump $_SESSIOn to see what variables they set and see if you can get them to be set when singing into userspice.
That may not be the only way, but it's the first thing I would try.