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
I use the version 3.8 for a while without problems bu recently I needed to switch from standard port (443) to a custom port (9443) and now the reroute process "kills" me the port.
if (!$this->checklogged($f3)) { $f3->reroute('/logout'); };
What I am missing?
Thanks,
Francesco
The text was updated successfully, but these errors were encountered:
Hi.
Well, the port is determined by $_SERVER['SERVER_PORT'] or X-Forwarded-Port header. If your used port is not set because it gets lost in an reverse proxy or some other configuration, you can either manually overwrite $_SERVER['SERVER_PORT'] before running the framework or simply set the PORT hive variable with the used port. This is then going to be used when rerouting.
Hi,
I use the version 3.8 for a while without problems bu recently I needed to switch from standard port (443) to a custom port (9443) and now the reroute process "kills" me the port.
if (!$this->checklogged($f3)) { $f3->reroute('/logout'); };
What I am missing?
Thanks,
Francesco
The text was updated successfully, but these errors were encountered: