Seite 1 von 1

[3.2] Fehler unter Dateianhänge verwalten

Verfasst: 17.01.2018 00:08
von archivar
Datenbank-Server: MySQL(i) 5.5.58-0+deb7u1-log
PHP-Version: 7.2.1
Version des Boards: 3.2.2
Unter Dateianhänge verwalten erhalte ich diese Fehlermeldungen:
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Notice: in file [ROOT]/includes/acp/acp_attachments.php on line 1282: Undefined index: EXT_GROUP_Images
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_acp.php on line 137: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3268)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_acp.php on line 137: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3268)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_acp.php on line 137: Cannot modify header information -
Wie kann ich diese Fehler beheben?

Re: [3.2] Fehler unter Dateianhänge verwalten

Verfasst: 19.01.2018 04:15
von Underhill
Hi,

der gleiche Fehler wurde hier behoben: http://www.phpbb-es.com/foro/viewtopic. ... 88#p235085 Hilft dir das auf die Schnelle?

Seltsamerweise ist der Fehler noch immer offen: https://tracker.phpbb.com/browse/PHPBB3-14459 (Tritt vielleicht nur seltenen Konstellationen auf).

Gruß
Underhill

Re: [3.2] Fehler unter Dateianhänge verwalten (gelöst)

Verfasst: 19.01.2018 07:26
von archivar
Underhill hat geschrieben:Hi,
der gleiche Fehler wurde hier behoben: http://www.phpbb-es.com/foro/viewtopic. ... 88#p235085 Hilft dir das auf die Schnelle?
Gruß
Underhill
Underhill hat geschrieben:Hi,
Seltsamerweise ist der Fehler noch immer offen: https://tracker.phpbb.com/browse/PHPBB3-14459 (Tritt vielleicht nur seltenen Konstellationen auf).
Gruß
Underhill
Dann sollte der Fehler doch nun mal behoben werden.
Ja das war der Fehler und wurde durch diese Änderung behoben!!!
Da es aber 2x die "acp_attachments.php" gibt möchte ich hinzufügen, dass es Die in root/includes/acp/acp_attachments.php betrifft:
suche:

Code: Alles auswählen

'EXT_GROUP_NAME'	=> (!empty($extensions[$row['extension']]['group_name'])) ? $user->lang['EXT_GROUP_' . $extensions[$row['extension']]['group_name']] : '',
ersetze damit:

Code: Alles auswählen

'EXT_GROUP_NAME'	=> (!empty($user->lang[$extensions[$row['extension']]['group_name']])) ? $user->lang['EXT_GROUP_' . $extensions[$row['extension']]['group_name']] : $extensions[$row['extension']]['group_name'],
Eine Frage noch dazu:
Was wäre in diesem Fall beispielsweise eine seltene Konstellation?
Recht vielen Dank für deine kompetente Hilfe!!! :)