phpmyadmin正在显示一些文本页面

时间:2016-11-05 13:07:56

标签: php apache ubuntu phpmyadmin

我有Ubuntu 16.04.1 LTS。我已经安装了phpmyadmin但是当我输入我的浏览器localhost / phpmyadmin时,它会打开一个包含文本的有线页面,如 -

PHP

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Main loader script
 *
 * @package PhpMyAdmin
 */
use PMA\libraries\RecentFavoriteTable;

/**
 * Gets some core libraries and displays a top message if required
 */
require_once 'libraries/common.inc.php';

/**
 * display Git revision if requested
 */
require_once 'libraries/display_git_revision.lib.php';

/**
 * pass variables to child pages
 */
$drops = array(
    'lang',
    'server',enter code here
    'collation_connection',..
    'db',
    'table'
);
etc...........

请让我知道我做错了什么。

1 个答案:

答案 0 :(得分:0)

Ubuntu文档提供了有关如何安装和启用PHP的详细信息。 考虑到你安装了Apache:

安装Apache PHP库

$ sudo apt-get install libapache2-mod-php5

启用模块

`$ sudo a2enmod php5`

重启Apache

$ sudo service apache2 restart

https://help.ubuntu.com/community/ApacheMySQLPHP#Installing_PHP_5