You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The thirth parameter is not configured. If you provide the request_stack service it will actually check if https is used with the symfony request, instead of the PHP $_SERVER variable. The symfony request has checks that validate if the request is being used by a proxy.
So changing it from:
We are experiencing the same issue as described here: #1025
We did found the cause and solution.
This happens when proxing an https for a http request.
In
platform/src/Oro/Bundle/SecurityBundle/Resources/config/services.yml
Line 744 in 3475755
The thirth parameter is not configured. If you provide the request_stack service it will actually check if https is used with the symfony request, instead of the PHP $_SERVER variable. The symfony request has checks that validate if the request is being used by a proxy.
So changing it from:
to
Fixes the issue.
The symfony class that is used looks like.
The text was updated successfully, but these errors were encountered: