die entsprechende anweisung laut install-anleitung heisst:Warning: array_count_values() [function.array-count-values]: The argument should be an array in D:\Homepages\xampp\htdocs\astraworld\includes\page_header.php on line 315
Warning: Variable passed to each() is not an array or object in D:\Homepages\xampp\htdocs\astraworld\includes\page_header.php on line 316
Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------
#
$prev_session_ip = $row['session_ip'];
}
$db->sql_freeresult($result);
#
#-----[ AFTER, ADD ]------------------------------------------
#
$all_bots = array();
$all_bots = array_count_values($bot_array);
while (list ($key, $val) = each ($all_bots))
{
if (strlen($bots_list) == 0)
{
$bots_list = $key . '(' . $val . ')';
}
else
{
$bots_list .= ', ' . $key . '(' . $val . ')';
}
}
$bots_online = count($all_bots);zeile 315 ist => $all_bots = array_count_values($bot_array);
zeile 316 ist => while (list ($key, $val) = each ($all_bots))
was ist falsch?
