简体   繁体   English

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

[英]phpmyadmin show all tables not separated into views and tables

How can I make phpMyAdmin 4.0.8 behavior like it used to listing all tables so it doesn't do this: 我如何使phpMyAdmin 4.0.8行为像用于列出所有表,所以它不这样做:

在此输入图像描述

I have been reading all the old posts and so far in my config I have added all of these but still have to keep clicking the expand tables every 2 minutes. 我一直在阅读所有旧帖子,到目前为止,在我的配置中,我添加了所有这些,但仍然必须每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.

听起来你想设置NavigationTreeEnableGrouping = false;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM