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
With Symfony Local Server, I got the value of 127.0.0.1:8000 for $_SERVER['SERVER_NAME']. This is not standard behaviour; it will be 127.0.0.1 instead in other platforms regardless of which port the request is coming to.
This is caused by the behaviour of http.Request.Host:
// ...// It may be of the form "host:port". ...Hoststring
Uh oh!
There was an error while loading. Please reload this page.
With Symfony Local Server, I got the value of
127.0.0.1:8000
for$_SERVER['SERVER_NAME']
. This is not standard behaviour; it will be127.0.0.1
instead in other platforms regardless of which port the request is coming to.This is caused by the behaviour of
http.Request.Host
:The text was updated successfully, but these errors were encountered: