昨天我将我的ubuntu从16.10
更新为17.10
。从那以后,它一直在应用程序中引起一些问题。此外,我的PhpMyAdmin
已停止运行并显示代码
我已经阅读了其他答案,但大多数人都要求安装php-mysql
和php
,这两者都已安装。之前工作正常。我使用mysql
的php项目工作正常。
有人可以帮忙吗?
编辑#1 :
我已经检查了这个被标记为副本的问题。我说在更新之前它正在工作。所以我已经有了所需的设置,这就是为什么它首先在工作。
编辑#2:
这是它显示的代码:
<?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',
'collation_connection',
'db',
'table'
);
.
.
.
function PMA_printListItem($name, $listId = null, $url = null,
$mysql_help_page = null, $target = null, $a_id = null, $class = null,
$a_class = null
) {
echo PMA\libraries\Template::get('list/item')
->render(
array(
'content' => $name,
'id' => $listId,
'class' => $class,
'url' => array(
'href' => $url,
'target' => $target,
'id' => $a_id,
'class' => $a_class,
),
'mysql_help_page' => $mysql_help_page,
)
);
}