Подтвердить что ты не робот

Phpmyadmin показывает все таблицы, не разделенные на представления и таблицы

Как я могу сделать поведение phpMyAdmin 4.0.8 таким, как он использовал для перечисления всех таблиц, чтобы он этого не делал:

enter image description here

Я читал все старые сообщения, и до сих пор в моем конфиге я добавил все из них, но все равно нужно постоянно нажимать на таблицы расширения каждые 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.
4b9b3361