phpmyadmin 显示奇怪的代码

phpmyadmin 显示奇怪的代码

在设置了 apache 并且一切正常之后,我尝试转到 localhost/phpmyadmin,但现在它没有显示登录页面,而是显示了这些奇怪的东西:这是其中的一行。这是一大堆代码。

addJSON( 'list', PMA_RecentFavoriteTable::getInstance('recent')->getHtmlList() ); exit; } if ($GLOBALS['PMA_Config']->isGitRevision()) { if (isset($_REQUEST['git_revision']) && $GLOBALS['is_ajax_request'] == true) { PMA_printGitRevision(); exit; } echo '

然后在 php myadmin 演示服务器下方有更多的代码..

答案1

安装libapache2-mod-php应该可以修复该问题。


然后,您可以清除您的安装,如果您想要一个很少失败的简单安装程序,请使用 apachefriends 提供的脚本。https://www.apachefriends.org/index.html

答案2

将其添加到 apache2.conf:

<Directory /usr/share/phpMyAdmin/>
        Options FollowSymLinks
        php_flag engine on
        Require all granted
</Directory>

相关内容