Re: [Phplib-users] auth url question
Brought to you by:
nhruby,
richardarcher
|
From: Giancarlo P. <gia...@na...> - 2002-10-30 07:05:58
|
> The crcloginform.html from the snapshot calls $auth->url() which calls
> $sess->self_url() to populate the for post action. $sess->self_url() calls
> getenv('REQUEST_URI') which my understanding is does not work under some
In the snapshot this ha been solved long ago. You are probably mixing
things then.
We have decided that url rewriting/preparation has to be done on
HTP_SERVER_VARS[Query_string], and self_url() has to use that. They
are 2 different varibles, and if we 'prepare' REQUEST_URI, then in
self_url we have to use that, or vv.
Gian
>
> can the getenv('REQUEST_URI') in self_url() be changed to $PHP_SELF . "?" .
> $HTTP_SERVER_VARS['QUERY_STRING']; ?
|