You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
663 B
23 lines
663 B
12 years ago
|
<?php
|
||
|
|
||
|
require('/etc/phpMyAdmin/sso.inc.php');
|
||
|
|
||
|
if(isset($_SERVER['REMOTE_USER']) && isset($login[$_SERVER['REMOTE_USER']]) && isset($password[$_SERVER['REMOTE_USER']])) {
|
||
|
session_set_cookie_params(0, '/', '', 0);
|
||
|
session_name('SignonSession');
|
||
|
session_start();
|
||
|
$_SESSION['PMA_single_signon_user'] = $login[$_SERVER['REMOTE_USER']];
|
||
|
$_SESSION['PMA_single_signon_password'] = $password[$_SERVER['REMOTE_USER']];
|
||
|
session_write_close();
|
||
|
header('Location: /index.php?server=1');
|
||
|
}
|
||
|
else {
|
||
|
// This location is forbiden
|
||
|
// So it will just display the access denied
|
||
|
// msg from LemonLDAP
|
||
|
header('Location: /libraries');
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
|