12

我怎样才能使 phpMyAdmin 4.0.8 的行为像它用来列出所有表一样,所以它不会这样做:

在此处输入图像描述

我一直在阅读所有旧帖子,到目前为止,在我的配置中我已经添加了所有这些,但仍然必须每 2 分钟单击一次展开表。

$cfg['ShowPhpInfo'] = true;
$cfg['ShowAll'] = true; // Enable display all the rows
$cfg['MaxRows'] = 50; // Maximum number of rows to display
$cfg['MaxDbList'] = 1000; // Maximum databases displayed per page
$cfg['MaxNavigationItems'] = 1000; // Maximum navigation items per list
$cfg['MaxTableList'] = 1000; // Maximum tables displayed per page
$cfg['NavigationTreeDBSeparator']  = ''; // Disable prefix removal
$cfg['NumRecentTables'] = 100; // Number of recently used tables. Set this to 0 (zero) to disable the listing of recent tables.
$cfg['LoginCookieValidity'] = 604800; // Prevent timeout for a week 
$cfg['NavigationTreeEnableGrouping'] = false; // Group the databases based on a common prefix in their name 
$cfg['NavigationDisplayLogo'] = false; // Hide logo
$cfg['NavigationTreeDisplayItemFilterMinimum'] = 9999; // Minimum number of items (tables, views, routines and events) to display a JavaScript filter box above the list of items in the navigation tree.
$cfg['NavigationTreeDisplayDbFilterMinimum'] = 9999; // Minimum number of databases to display a JavaScript filter box above the list of databases in the navigation tree.
4

1 回答 1

4

听起来你想设置NavigationTreeEnableGrouping= false;

于 2013-11-13T02:30:11.707 回答