[phpBB Debug] PHP Warning: in file [ROOT]/ext/tas2580/seourls/event/listener.php on line 213: Undefined array key "FORUM_NAME"
REDAXO Forum • yform headers already sent
Seite 1 von 1

yform headers already sent

Verfasst: 29. Jan 2017, 11:38
von Marshall
Hallo Redaxoaner,
im Systemlog einer Installation fand ich eben etliche Warnings wie diese:

Code: Alles auswählen

Cannot modify header information - headers already sent by (output started at rex:///template/8:5) redaxo/src/core/lib/response.php
In meinem Fall wurden diese Warnings durch das Action-Feld "redirect" ausgelöst.

Lösung:
In Zeile 47 der Redirect-Action (/redaxo/src/addons/yform/lib/yform/action/redirect.php) ein die/exit hinzufügen.

Code: Alles auswählen

if ($url != '') {
  ob_end_clean();
  header('Location: ' . $url);
  die();
}
Grüße
Marshall

Re: yform headers already sent

Verfasst: 29. Jan 2017, 14:25
von Oliver.Kreischer
Danke,

ich habe mal hie reingetragen:

https://github.com/yakamara/redaxo_yform/issues/244

LG
Oliver