|
Posted by Robert Cummings on 10/23/05 01:06
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".
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. |
`------------------------------------------------------------'
Navigation:
[Reply to this message]
|