|
Posted by Robert Cummings on 10/23/05 02:08
On Sat, 2005-10-22 at 18:21, John Taylor-Johnston wrote:
> Robert Cummings wrote:
>
> >On Sat, 2005-10-22 at 17:59, John Taylor-Johnston wrote:
> >
> >
> >>Does anyone see anything wrong with my code below? It works in other
> >>files, on other servers. I copied and pasted it exactly?
> >>It won't recognise the user name or password. Does Authenticate work on
> >>all servers? Here is my phpinfo if that helps?!
> >>http://www.royalarchmasonsofquebec.com/phpinfo.php
> >>I don't get it.
> >>John
> >>
> >><?php
> >>if ( ( !isset( $PHP_AUTH_USER )) || (!isset($PHP_AUTH_PW))
> >> || ( $PHP_AUTH_USER != 'user' ) || ( $PHP_AUTH_PW != 'password' ) ) {
> >>
> >> header('WWW-Authenticate: Basic realm="Private"');
> >> header('HTTP/1.0 401 Unauthorized');
> >> echo 'Authorization Required.' . '<a href="' . $PHP_SELF . '">Try
> >>again</a> or contact <a href="mailtoGSE@foo.com">GSE</a>';
> >> exit;
> >>
> >>} else {
> >>?>
> >>in
> >><?php
> >>}
> >>?>
> >
> >Check phpinfo() and let us know the value of "register_globals".
> >
> register_globals On On
Sorry to have asked, just re-read the post and realized you posted a
link to your phpinfo(). (man I'm not sleeping enough lately :/) Anyways
viewing your phpinfo() shows that the server is in CGI mode contrary to
the requirements listed here :(
http://ca.php.net/features.http-auth
Cheers,
Rob.
--
..------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting |
| a powerful, scalable system for accessing system services |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for |
| creating re-usable components quickly and easily. |
`------------------------------------------------------------'
[Back to original message]
|