Hello,
I try to configure KERBEROS for SSO....
Everything seems to be configured in my DEBIAN 9, but when I want to test with this script...
<?php
all variables are empty except REMOTE_ADDR...
How to do to have REMOTE_USER, PHP_AUTH_USER, AUTH_TYPE?
A package to install? a parameter somewhere?
Thank you for your help...
Laurent
I try to configure KERBEROS for SSO....
Everything seems to be configured in my DEBIAN 9, but when I want to test with this script...
<?php
echo "<p>REMOTE_USER=[".$_SERVER['REMOTE_USER']."]</p>";
echo "<p>PHP_AUTH_USER=[".$_SERVER['PHP_AUTH_USER']."]</p>";
echo "<p>REMOTE_ADDR=[".$_SERVER['REMOTE_ADDR']."]</p>";
echo "<p>AUTH_TYPE=[".$_SERVER['AUTH_TYPE']."]</p>";
phpinfo();
?>
all variables are empty except REMOTE_ADDR...
How to do to have REMOTE_USER, PHP_AUTH_USER, AUTH_TYPE?
A package to install? a parameter somewhere?
Thank you for your help...
Laurent