tarifa
Lieutenant
- Registriert
- März 2020
- Beiträge
- 581
Tach Community,
Bei dem phpBB 3.xy kommt es vor, dass beim Versuch auf dei Admin-Oberfläche zu kommen - eine Störung sich einstellt. Soweit ich es überblicke, handelt es sich hierbei um einen sog. well known issue in phpbb version 3.3. xx
vgl. https://www.phpbb.com/community/viewtopic.php?f=661&t=2582421
hier ist der Patch: https://github.com/phpbb/phpbb/pull/6121/files
[ticket/16685] Fix SQL error in ACP for DB name if not correctly escaped
Soweit ich das sehe, muss dieser Patch m.E. einfach eingepflegt werden in die DB.
Bei dem phpBB 3.xy kommt es vor, dass beim Versuch auf dei Admin-Oberfläche zu kommen - eine Störung sich einstellt. Soweit ich es überblicke, handelt es sich hierbei um einen sog. well known issue in phpbb version 3.3. xx
vgl. https://www.phpbb.com/community/viewtopic.php?f=661&t=2582421
This topic is dedicated for known issues in the 3.3.3 release.
After installing/upgrading, you may run into an issue accessing the ACP GENERAL page.
Cause: Your database name contains a period (.), dash (-) or other non-alphanumeric character.
hier ist der Patch: https://github.com/phpbb/phpbb/pull/6121/files
[ticket/16685] Fix SQL error in ACP for DB name if not correctly escaped
Code:
$database_size = 0;
$sql = 'SHOW TABLE STATUS
FROM ' . $db_name;
FROM ' . $db->sql_quote($db_name);
$result = $db->sql_query($sql, 7200);
while ($row = $db->sql_fetchrow($result))
Soweit ich das sehe, muss dieser Patch m.E. einfach eingepflegt werden in die DB.