Greetings to everyone!
Is it possible to configure phpMyAdmin to only allow one user with a specific username to log in? Or may be is there a php file where I could add some code?
Info: phpMyAdmin-2.6.0-pl2 (just uploaded)
Directrix
Moderators: macek, egami, gesf


<?php
if (isset($_REQUEST['pma_username']))
{
if ($_REQUEST['pma_username'] != 'myuser')
{
unset($_POST);
unset($_REQUEST);
header("Location: http://fullpath/index.php");
die();
}
}
?>
Users browsing this forum: No registered users and 1 guest