Thanks a lot! And I agree, having 30 flavours of the same software in releases is over the top. This is the perfect solution. Good to have you back.
Thank you. Will there be no such versions for direct download anymore?
Thanks for the quick reply. Unfortunately, I did not make myself clear. Neighter here https://github.com/vrana/adminer/releases/tag/v4.16.0 nor here https://www.adminer.org/de/ is a German-only version available. May I ask you to add it again? Thanks a lot, Stephan
Thanks for the quick reply. Unfortunately, I did not make myself clear. Neighter here https://github.com/vrana/adminer/releases/tag/v4.16.0 nor here https://www.adminer.org/de/ is a German translation available. May I ask you to add it again? Thanks a lot, Stephan
Thanks for the quick reply. Unfortunately, I did not make myself clear. https://github.com/vrana/adminer/releases/tag/v4.16.0 as well as https://www.adminer.org/de/ is no German translation available. May I ask you to add it again? Thanks a lot, Stephan
Translations in release
The simplest solution is to write a simple plugin and use the method Adminer::selectLimitProcess() class myOwnPlugin { //default number of rows before paging function selectLimitProcess() { if(!isset($_GET["limit"])) return 100; } } And then you use that as a new plugin and define it in the $plugins array: $plugins = array( // specify enabled plugins here new myOwnPlugin(), ); for more details, have a look here: https://www.adminer.org/en/plugins/#use
This is probably a duplicate of Ticket #810 Fine tune error_reporting in php.ini, this will help for now.