From: Manuel V. <man...@gm...> - 2006-05-12 12:24:07
|
2006/5/12, Stefan <son...@ba...>: > Can't handle it like that > > I only get a authentificated userid, don't know if it is from a session > a database or where it comes from > This user should be also fully authentificated (like login with userid > and password). Actually, whatever authentication your forum is using, it probably use session (cookies) to keep the authentication from one page to another. The 'Session' type of authentication propose to re-use the authentication token issued by another application. You just have to give this token to the AUTH_SESS_USER const. According to config.ini you just have to set USER_AUTH_ORDER =3D Session AUTH_SESS_USER =3D $context['user']['name'] AUTH_SESS_LEVEL =3D 2 USER_AUTH_POLICY =3D first-only (and probably to include /path to/SSI.php in main.php for instance). |