phpmyadmin显示所有未分为视图和表的表

Joh*_*lia 12 php mysql phpmyadmin

我如何使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.
Run Code Online (Sandbox Code Playgroud)

Isa*_*tch 4

听起来你想设置NavigationTreeEnableGrouping= false;

  • 谢谢,但我尝试了这个,它只影响具有相同前缀的数据库分组。与我的主要问题分组表和视图无关 (2认同)