phpmyadmin does not display the login page solution:
We need to open and find: phpMyAdmin\libraries\plugins\auth\AuthenticationCookie.class.php
Open AuthenticationCookie.class.php
echo "<div class='hide js-show'>"; // Displays the languages form if (empty($GLOBALS['cfg']['Lang'])) { include_once './libraries/display_select_lang.lib.php'; // use fieldset, don't show doc link echo PMA_getLanguageSelectorHtml(true, false); } echo '</div> <br /> <!-- Login form --> <form method="post" action="index.php" name="login_form"' . $autocomplete . ' class="disableAjax login hide js-show">
Remove the two hides in the first and last lines of the code, save and refresh the page, it’s normal
The above is the detailed content of phpmyadmin does not display login page. For more information, please follow other related articles on the PHP Chinese website!