He cargado la copia de seguridad en una tabla, abriendo la tabla, veo esto:
Warning in ./libraries/sql.lib.php#601
count(): Parameter must be an array or an object that implements Countable
Backtrace
./libraries/sql.lib.php#2038: PMA_isRememberSortingOrder(array)
./libraries/sql.lib.php#1984: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'alternativegirls',
string 'tgp_photo',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `tgp_photo`',
NULL,
NULL,
)
./sql.php#216: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'alternativegirls',
string 'tgp_photo',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `tgp_photo`',
NULL,
NULL,
)
./index.php#53: include(./sql.php)
Dentro de phpMyAdmin ...
PHP es 7.2, el servidor es Ubuntu 16.04, instalado ayer.
Buscando, vi que algunos tienen este error en su código, pero no encontré a nadie que lo recibió en phpMyAdmin ...
¿Qué tengo que hacer? ¿Ese es mi error? ¿Un error de phpmyadmin? esperar actualización? Vuelvo a PHP 7.1?
if ( count($articles)){..}
en CodeIgniter , deberían usar:if ( count((array)$articles)){..}
como aquí