authorisation problem
OK i have for intranet application running on 4 different servers with 4 different urls.
In order to simplify user authentification i add made this little piece off code in the menu
<?php
<a href=\"http://=$_SERVER['PHP_AUTH_USER'];:=$_SERVER['PHP_AUTH_PW'];@ww.application1.com\">application1</a>
<a href=\"http://=$_SERVER['PHP_AUTH_USER'];:=$_SERVER['PHP_AUTH_PW'];@ww.application2.com\">application2</a>
<a href=\"http://=$_SERVER['PHP_AUTH_USER'];:=$_SERVER['PHP_AUTH_PW'];@ww.application3.com\">application3</a>
<a href=\"http://=$_SERVER['PHP_AUTH_USER'];:=$_SERVER['PHP_AUTH_PW'];@ww.application4.com\">application4</a>
?>
(there is a little more html formating then that in the real code but i simplyfied to what is important in that case)
like this users where able to login only one time and have access to all 4 apps.
MS just released a patch that block this authentification mechanism you can look it up there
http://support.microsoft.com/default.aspx?scid=kb;en-us;834489
anybody know a way i could rebuild that functionnality fast.
IF , ELSE , WHILE isn't that what life is all about