Results 1 to 2 of 2

Thread: PHP Auth on IIS

  1. #1

    Thread Starter
    Hyperactive Member dandono's Avatar
    Join Date
    Aug 2004
    Location
    Cornwall, UK
    Posts
    485

    PHP Auth on IIS

    hi, just got another thing that im confused with again (unusual). looking through the PHP manual there is php auth functions. how can i get this working on IIS 6?
    PHP Code:
    <?php
      
    if (!isset($_SERVER['PHP_AUTH_USER'])) {
        
    header('WWW-Authenticate: Basic realm="My Realm"');
        
    header('HTTP/1.0 401 Unauthorized');
        echo 
    'Text to send if user hits Cancel button';
        exit;
      } else {
        echo 
    "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>";
        echo 
    "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>";
      }
    ?>
    i know i can set the auth type in inetmgr but i would like to specify users and passwords through php
    thanks, dandono
    If there is only one perfect person in the universe, does that make them imperfect?

  2. #2

    Thread Starter
    Hyperactive Member dandono's Avatar
    Join Date
    Aug 2004
    Location
    Cornwall, UK
    Posts
    485

    Re: PHP Auth on IIS

    i found the awnser hidden in the manual here.
    it works now
    If there is only one perfect person in the universe, does that make them imperfect?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width