J'ai téléchargé la sauvegarde dans une table, en ouvrant la table, je vois ceci:
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)
Dans phpMyAdmin ...
PHP est 7.2, le serveur est Ubuntu 16.04, installé hier.
En cherchant j'ai vu que certains ont cette erreur dans leur code, mais je n'ai trouvé personne qui l'ait reçue dans phpMyAdmin ...
Que devrais-je faire? C'est mon erreur? Une erreur phpmyadmin? attendre la mise à jour? Je reviens à PHP 7.1?
if ( count($articles)){..}
dans CodeIgniter , ils devraient utiliser:if ( count((array)$articles)){..}
comme ici