Ho caricato il backup su una tabella, aprendo la tabella vedo questo:
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)
All'interno di phpMyAdmin ...
PHP è 7.2, il server è Ubuntu 16.04, installato ieri.
Cercando ho visto che alcuni hanno questo errore nel loro codice, ma non ho trovato nessuno che lo abbia ricevuto in phpMyAdmin ...
Cosa dovrei fare? È questo il mio errore? Un errore phpmyadmin? attendere l'aggiornamento? Torno su PHP 7.1?
if ( count($articles)){..}
in CodeIgniter , dovrebbero usare:if ( count((array)$articles)){..}
come qui