Statistik |
Beiträge: 138.793 (Täglich: 23,28 )
Themen: 16.171
Mitglieder: 13.157
Neuestes Mitglied: irt99298.
Ausl. d. letzten Minute: 189%
Ausl. d. letzten 5 Minuten: 170%
Ausl. d. letzten 15 Minuten: 172%
Freier Webspace: 2.01 TB
PHP-Version: 7.3.10
|
|
|
WoltLab Burning Board 2.3.6pl2: Update PHP-Version 7.x |
|
Super Arbeit, das wars.
Danke
|
|
11.08.2017 22:39 |
|
|
|
Ich werde unten bei Useronline nicht Angezeigt, woran liegt das?
|
|
13.08.2017 07:39 |
|
|
|
Unten auf der index ist die Anzeige von "Zur Zeit ist 1 Mitglied im Forum unterwegs."
Da bin ich nicht zu sehen.
Wenn ich mich aber komplett auslogge und mich wieder einlogge, stehe ich wieder da,
|
|
14.08.2017 11:55 |
|
|
|
Glaube schon, ein Hack wollte das, weiß aber nicht mehr welcher?
Dateianhang: |
session.txt (11 KB, 1 mal heruntergeladen)
|
|
|
14.08.2017 22:09 |
|
|
|
Super, da bin ich wieder
.
Danke
|
|
14.08.2017 22:40 |
|
|
|
Habe noch was gefunden:
wenn ich im usercp auf Gruppenleiter gehe, bekomme ich eine Fehlermeldung:
SQL-DATABASE ERROR
Database error in WoltLab Burning Board (2.3.6): Invalid SQL: SELECT a.*,u.*,g.* FROM bb1_applications a LEFT JOIN bb1_users u ON u.userid=a.userid LEFT JOIN bb1_groups g ON g.groupid=a.groupid WHERE a.groupid IN(0,,1,14,15,17,16,13,12) AND status<=1 ORDER BY sendtime DESC,username ASC
mysql error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1,14,15,17,16,13,12) AND status<=1 ORDER BY sendtime DESC,username ASC' at line 1
mysql error number: 1064
mysql version: 5.7.15-nmm5-log
php version: 7.0.20-nmm1
Date: 20.08.2017 @ 21:06
Script: /usergroups.php?action=groupleaders
Referer: Mein Link/usercp.php
Hänge die usercp mal an, wird sowieso danach gefragt
Dateianhang: |
usercp.txt (72,04 KB, 1 mal heruntergeladen)
|
|
|
20.08.2017 21:09 |
|
|
kill0rz
Hackschreiber

Dabei seit: 09.01.2014
Beiträge: 829
23 Filebase-Einträge
wBB-Version: wBB2.3 PHP-Version: 7 MySQL-Version: 10 (MariaDB)
Bewertung:
Level: 40 [?]
Erfahrungspunkte: 1.791.794
Nächster Level: 2.111.327
 |
|
|
20.08.2017 21:48 |
|
|
|
Danke, wie immer Top Leistung.
|
|
22.08.2017 08:42 |
|
|
kill0rz
Hackschreiber

Dabei seit: 09.01.2014
Beiträge: 829
23 Filebase-Einträge
wBB-Version: wBB2.3 PHP-Version: 7 MySQL-Version: 10 (MariaDB)
Bewertung:
Level: 40 [?]
Erfahrungspunkte: 1.791.794
Nächster Level: 2.111.327
 |
|
|
29.08.2017 20:45 |
|
|
|
Hallo,
Folgende Variablen müssen noch zusätzlich definiert werden:
php: |
1:
2:
|
var $search2 = array();
var $search_replace2 = array(); |
|
Der Teil in deiner Anleitung muss nun um Einiges anders, damit "$this->stripSlashes()" entfernt wird und jene Teile nicht mehr in der "preg_replace_callback()"-Funktion verwendet werden, da es obsolet wurde:
php: |
1:
2:
3:
4:
|
$this->search_replace2['/\[list=("|[\'"]?)([^"\']+)\1](.+)\[\/list((=\1[^"\']+\1])|(\]))/siU'] = function($matches) { return $this->breakChar.'[list='.$matches[1].$this->breakChar.$matches[2].$this->breakChar.$matches[1].']'.$this->breakChar.$this->stripSlashes($matches[3]).$this->breakChar.'[/list='.$matches[1].$this->breakChar.$matches[2].$this->breakChar.$matches[1].']'.$this->breakChar;};
$this->search_replace2['/\[list](.+)\[\/list\]/siU'] = function($matches) { return $this->breakChar.'[list]'.$this->breakChar.$this->stripSlashes($matches[1]).$this->breakChar.'[/list]'.$this->breakChar;};
$this->search_replace2['/\[url=("|[\'"]?)([^"\']+)\1](.+)\[\/url\]/siU'] = function($matches) { return $this->breakChar.'[url='.$matches[1].$this->breakChar.$this->insertBreakChar($matches[2]).$this->breakChar.$matches[1].']'.$this->breakChar.$this->stripSlashes($matches[3]).$this->breakChar.'[/url]'.$this->breakChar;};
$this->search_replace2['/\[url]([^"\[]+)\[\/url\]/iU'] = function($matches) { return $this->breakChar.'[url]'.$this->breakChar.$this->insertBreakChar($matches[1]).$this->breakChar.'[/url]'.$this->breakChar;}; |
|
Unbedingt die Reihenfolge in meiner Anleitung beachten und "$this->search2 = $this->search;"
Dann muss "$this->search[] = $search;" noch mit "$this->search2[] = $search;" ergänzt werden.
php: |
1:
|
$post = preg_replace($this->search, $this->replace2, $post); |
|
wird zu:
php: |
1:
2:
|
$post = preg_replace_callback_array($this->search_replace2, $post);
$post = preg_replace($this->search2, $this->replace2, $post); |
|
und nicht zu:
php: |
1:
2:
|
$post = preg_replace_callback_array($this->search_replace2, $post);
$post = preg_replace($this->search, $this->replace2, $post); |
|
Zusätzlich müssen noch die Funktionen "formaturl()" und "formatlist()" von "$this->stripSlashes()" bereinigt werden.
__________________
Nur bei v-gn.de
WoltLab Burning Board Lite 1.0.2pl3 ( HTML5 ) - Version
mywbb.info(†19.8.2011)
your-wbb.de(†20.2.2015)
|
|
30.08.2017 22:37 |
|
|
|
|
 |
|