3

我搜索了网络,观看了 youtube 视频,但无济于事。我正在寻找 phpmyadmin 上的设计器选项卡,在那里我可以像在 ms Access 中一样查看表关系。我已经设置了我的 config.inc.php,就像我在无数网站上看到的一样,运行 sql 来创建 phpmyadmin db,我只是没有得到设计器视图的选项卡。

我使用config.sample.inc.php了文件并取消了所有这些行的注释:

/* User used to manipulate with storage */

$cfg['Servers'][$i]['controlhost'] = 'localhost';
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = 'root';

/* Storage database and tables */

$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
$cfg['Servers'][$i]['recent'] = 'pma_recent';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs'; 

然后将文件保存在 config.inc.php 上,登录并收到此错误。

“phpMyAdmin配置存储未完全配置,部分扩展功能已停用。了解原因点击这里。”

单击“此处”将我带到此页面,我猜这基本上是在告诉我一切都已禁用

在此处输入图像描述

这就是我所追求的。它必须能够完成。我显然错过了一些东西

在此处输入图像描述

4

1 回答 1

2

WAMP 需要重新启动。而且您只会在 db 页面上看到设计器选项卡,而不是在 table 页面上。否则我根据这个 YouTube 视频所做的一切都有效

http://youtu.be/hPYLbaXa35o

于 2013-03-10T08:31:52.253 回答