Seite 1 von 1

phpbb Statistic Mod 1.0.1

Verfasst: 10.09.2009 15:15
von MeSsIaHaS
Hallo,

hab den Statisic Mod Version 1.0.1 in meinem TestBoard 3.0.5 eingebaut.
Soweit so gut, alle Statistiken funktionieren.

Allerdings hab ich festgestellt, das beim Abschicken, Fehlermeldungen entstehen.

phpBB Debug] PHP Notice: in file /statistics/includes/functions.php on line 1717: Invalid argument supplied for foreach()
[phpBB Debug] PHP Notice: in file /statistics/includes/functions.php on line 1738: Invalid argument supplied for foreach()
[phpBB Debug] PHP Notice: in file /statistics/includes/functions.php on line 1782: Invalid argument supplied for foreach()
[phpBB Debug] PHP Notice: in file /statistics/includes/functions.php on line 1788: Invalid argument supplied for foreach()
[phpBB Debug] PHP Notice: in file /statistics/includes/functions.php on line 1813: Invalid argument supplied for foreach()

Hat da jemand ne Idee dazu. Hat anscheinend was mit dem Profil Feldern zu tun.
1717: function get_profile_field_data($profile_field, &$total_values_set, &$total_groups, $limit_count = 0)

Vielen Dank vorab.

Mfg.
Jürgen

Re: phpbb Statistic Mod 1.0.1

Verfasst: 10.09.2009 16:34
von marc1706
Also, bei 1.0.1 ist in Zeile 1717 aber folgendes:

Code: Alles auswählen

foreach($bbcode_ary as $key => $current_bbcode) 
Hast du schon einmal das hier durchgeführt?: http://www.phpbb.de/community/viewtopic ... 1#p1130597

edit:
Probier mal das hier:
Öffne statistics/includes/functions.php
Finde:

Code: Alles auswählen

$matches = $smilies = $smiley_ary = array(); 
Ersetze durch:

Code: Alles auswählen

$matches = $smilies = $smiley_ary = $bbcode_ary =  array(); 

Re: phpbb Statistic Mod 1.0.1

Verfasst: 10.09.2009 19:55
von MeSsIaHaS
marc1706 hat geschrieben:Also, bei 1.0.1 ist in Zeile 1717 aber folgendes:

Code: Alles auswählen

foreach($bbcode_ary as $key => $current_bbcode) 
Hast du schon einmal das hier durchgeführt?: http://www.phpbb.de/community/viewtopic ... 1#p1130597

edit:
Probier mal das hier:
Öffne statistics/includes/functions.php
Finde:

Code: Alles auswählen

$matches = $smilies = $smiley_ary = array(); 
Ersetze durch:

Code: Alles auswählen

$matches = $smilies = $smiley_ary = $bbcode_ary =  array(); 
Das wars... TOP !!!
Danke. :D