Home  >  Article  >  Database  >  phpmyadmin does not display login page

phpmyadmin does not display login page

尚
Original
2019-10-30 12:04:054148browse

phpmyadmin does not display login page

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=&#39;hide js-show&#39;>";
        // Displays the languages form
        if (empty($GLOBALS[&#39;cfg&#39;][&#39;Lang&#39;])) {
            include_once &#39;./libraries/display_select_lang.lib.php&#39;;
            // use fieldset, don&#39;t show doc link
            echo PMA_getLanguageSelectorHtml(true, false);
        }
        echo &#39;</div>
    <br />
    <!-- Login form -->
    <form method="post" action="index.php" name="login_form"&#39; . $autocomplete .
            &#39; 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

phpmyadmin does not display login page

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn