Version: 7.3.4 (proxy_fcgi)
Fehlermeldung: AH01071: Got error ‚PHP message: PHP Warning: count(): Parameter must be an array or an object that implements Countable in /usr/share/php73/lib/php/MDB2.php on line 826‘
Line 826: if (!count($dsn)) {
Lösung: if (is_array($dsn) && !count($dsn)) {
Fehlermeldung: AH01071: Got error ‚PHP message: PHP Warning: count(): Parameter must be an array or an object that implements Countable in /var/customers/webs/rwagner/maia/maia_db/cache_management.php on line 175
Line 175: $update .= ‚?‘ . str_repeat(‚,?‘, count($mail_id) – 1);
Lösung: $update .= ‚?‘ . str_repeat(‚,?‘, is_array($mail_id) && count($mail_id) – 1);