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
phpbb Statistic Mod 1.0.1
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Re: phpbb Statistic Mod 1.0.1
Also, bei 1.0.1 ist in Zeile 1717 aber folgendes:
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:
Ersetze durch:
Code: Alles auswählen
foreach($bbcode_ary as $key => $current_bbcode)
edit:
Probier mal das hier:
Öffne statistics/includes/functions.php
Finde:
Code: Alles auswählen
$matches = $smilies = $smiley_ary = array();
Code: Alles auswählen
$matches = $smilies = $smiley_ary = $bbcode_ary = array();
phpBB Lead Developer
Re: phpbb Statistic Mod 1.0.1
Das wars... TOP !!!marc1706 hat geschrieben:Also, bei 1.0.1 ist in Zeile 1717 aber folgendes:Hast du schon einmal das hier durchgeführt?: http://www.phpbb.de/community/viewtopic ... 1#p1130597Code: Alles auswählen
foreach($bbcode_ary as $key => $current_bbcode)
edit:
Probier mal das hier:
Öffne statistics/includes/functions.php
Finde:Ersetze durch:Code: Alles auswählen
$matches = $smilies = $smiley_ary = array();
Code: Alles auswählen
$matches = $smilies = $smiley_ary = $bbcode_ary = array();
Danke.
