Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to suppress the "configuration storage is not completely configured"-message? #19100

Open
kosuodhmwa opened this issue Apr 6, 2024 · 12 comments

Comments

@kosuodhmwa
Copy link

Hi there

As title says, supress that message without to create & configure the phpmyadmin settings database ;-)

Thank you very much for your feedbacks.

@williamdes
Copy link
Member

You need to put all storage features to false. I will post an example I use.

@kosuodhmwa
Copy link
Author

ok thx

@kosuodhmwa
Copy link
Author

kosuodhmwa commented Apr 6, 2024

But my "config.inc.php" file contains:

/**
 * phpMyAdmin configuration storage settings.
 */

/* User used to manipulate with storage */
// $cfg['Servers'][$i]['controlhost'] = '';
// $cfg['Servers'][$i]['controlport'] = '';
// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'pmapass';

/* 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]['userconfig'] = 'pma__userconfig';
// $cfg['Servers'][$i]['recent'] = 'pma__recent';
// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
// $cfg['Servers'][$i]['users'] = 'pma__users';
// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';

/**
 * End of servers configuration
 */

Hmm...?

@williamdes
Copy link
Member

$cfg['Servers'][$i]['pmadb'] = '';
$cfg['Servers'][$i]['bookmarktable'] = false; // 'pma__bookmark';
$cfg['Servers'][$i]['relation'] = false; // 'pma__relation';
$cfg['Servers'][$i]['table_info'] = false; // 'pma__table_info';
$cfg['Servers'][$i]['table_coords'] = false; // 'pma__table_coords';
$cfg['Servers'][$i]['pdf_pages'] = false; // 'pma__pdf_pages';
$cfg['Servers'][$i]['column_info'] = false; // 'pma__column_info';
$cfg['Servers'][$i]['history'] = false; // 'pma__history';
$cfg['Servers'][$i]['table_uiprefs'] = false; // 'pma__table_uiprefs';
$cfg['Servers'][$i]['tracking'] = false; // 'pma__tracking';
$cfg['Servers'][$i]['userconfig'] = false; // 'pma__userconfig';
$cfg['Servers'][$i]['recent'] = false; // 'pma__recent';
$cfg['Servers'][$i]['favorite'] = false; // 'pma__favorite';
$cfg['Servers'][$i]['users'] = false; // 'pma__users';
$cfg['Servers'][$i]['usergroups'] = false; // 'pma__usergroups';
$cfg['Servers'][$i]['navigationhiding'] = false; // 'pma__navigationhiding';
$cfg['Servers'][$i]['savedsearches'] = false; // 'pma__savedsearches';
$cfg['Servers'][$i]['central_columns'] = false; // 'pma__central_columns';
$cfg['Servers'][$i]['designer_settings'] = false; // 'pma__designer_settings';
$cfg['Servers'][$i]['export_templates'] = false; // 'pma__export_templates';

This should shut it off

@kosuodhmwa
Copy link
Author

kosuodhmwa commented Apr 7, 2024

Thank you very very much!! :-) - seems to work at least on phpmyadmin v6.x

image

@kosuodhmwa
Copy link
Author

But not on last stable version 5.2.1...

image

@kamil-tekiela
Copy link
Contributor

@williamdes Can you remember if this was fixed in 5.2.2? I think I remember someone fixing this at some point.

@kosuodhmwa
Copy link
Author

Oh - does a 5.2.2 version exist? I was thinking the last version is 5.2.1...

@liviuconcioiu
Copy link
Contributor

liviuconcioiu commented Apr 7, 2024

Oh - does a 5.2.2 version exist? I was thinking the last version is 5.2.1...

See phpMyAdmin 5.2+snapshot (5.2.2-dev) from https://www.phpmyadmin.net/downloads/.

@kosuodhmwa
Copy link
Author

kosuodhmwa commented Apr 7, 2024

OK thx - maybe there is another way to suppress that phpmyadmin configuration settings database warning in the current stable version 5.2.1?

@liviuconcioiu
Copy link
Contributor

liviuconcioiu commented Apr 7, 2024

OK thx - maybe there is another way to suppress that phpmyadmin configuration settings database warning in the current stable version 5.2.1?

The only way is to find the commit that fixed the issue and change your code. I see is fixed in 5.2.2-dev. I can't remember when this was fixed. Probably this? #18315

@kosuodhmwa
Copy link
Author

ok thx :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants