Compatibility patch for phpMyAdmin 4.4.x; "Uncaught InvalidArgumentException: Select_string only accepts integers: 0 in /usr/share/php/gettext/gettext.php:354": - https://github.com/phpmyadmin/phpmyadmin/issues/12881 - https://github.com/phpmyadmin/phpmyadmin/commit/827ff5715a4fe8e2d8eee37ad2f759c4f551e5f4 --- phpMyAdmin-4.4.15.10/libraries/DbSearch.class.php 2017-01-23 20:08:47.000000000 +0100 +++ phpMyAdmin-4.4.15.10/libraries/DbSearch.class.php.gettext-search 2019-10-29 16:59:28.354078246 +0100 @@ -281,7 +281,7 @@ // Gets the SQL statements $newsearchsqls = $this->_getSearchSqls($each_table); // Executes the "COUNT" statement - $res_cnt = $GLOBALS['dbi']->fetchValue($newsearchsqls['select_count']); + $res_cnt = intval($GLOBALS['dbi']->fetchValue($newsearchsqls['select_count'])); $num_search_result_total += $res_cnt; // Gets the result row's HTML for a table $html_output .= $this->_getResultsRow(