Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Не срабатывает редирект на сервис авторизации #129

Open
kernusr opened this issue Oct 3, 2023 · 1 comment

Comments

@kernusr
Copy link

kernusr commented Oct 3, 2023

PHP 8.2
Joomla 4.3.4
SLogin 3.0.2

Включаем и настраиваем любой плагин авторизации, публикуем модуль, жмём на иконку способа авторизации и видим главную страницу сайта во всплывающем окне.

Причина косяка в том, что после установки редиректа через header('Location') нужно насильно прибивать исполнение кода, иначе заголовки рискуют быть не отправлены и редирект не произойдёт. Об этом и в документации PHP написано.

https://www.php.net/manual/ru/function.header.php
изображение

Собственно, решение проблемы заключается в том, что нужно "выйти" после установки заголовков:

header("Cache-Control: no-store, no-cache, must-revalidate");
header("Expires: " . date("r"));
header('Location:' . $url);
}

@kernusr
Copy link
Author

kernusr commented Oct 3, 2023

Сделал PR #130 и сослался на issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant