После оплаты через Единую кассу при нажатии на кнопку вернуться в магазин делается переход на страницу
название_сайта/index.php?route=extension/payment/ocstore_w1/success на которой выдается сообщение:
WMI_RESULT=RETRY&WMI_DESCRIPTION=HTTP+method+should+be+POSTWarning: Cannot modify header information - headers already sent by (output started at /home/r/rpsram/onlayn-diplom.rf/public_html/catalog/controller/extension/payment/ocstore_w1.php:173) in /home/r/rpsram/onlayn-diplom.rf/public_html/system/library/response.php on line 12
В файле ocstore_w1.php:173 запись ob_end_flush();
protected function sendForbidden($error) {
$this->log->Write('ERROR: ' . $error);
ob_start();
echo 'WMI_RESULT=RETRY&WMI_DESCRIPTION=' . urlencode($error);
ob_end_flush();
}
В фале response.php on line 12 запись: header('Location: ' . str_replace(array('&', "\n", "\r"), array('&', '', ''), $url), true, $status);
public function redirect($url, $status = 302) {
header('Location: ' . str_replace(array('&', "\n", "\r"), array('&', '', ''), $url), true, $status);
exit();
}
Подскажите, в чем может быть причина???