PHP Signon/Signup solution needed

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • totalstranger

    PHP Signon/Signup solution needed

    I've looked at and installed PatUser
    http://www.php-tools.net/site.php?&f...r/overview.xml and
    PHPautomembersa rea http://www.dwalker.co.uk/phpautomembersarea/ but
    neither of those systems seem to do what I want, which is: some PHP
    pages need to run for anybody on the web and also for signed on users
    that get additional content, I also want to protect
    folders/directories, interface with Paypal, and have lost password dialogs.

    I've recently looked at Guard Dog http://www.phpguarddog.com/, but
    before I spend US $75 for it I'm wondering if anyone can give some
    feedback on Guard Dog, or can suggest a free or commercial PHP/MySql
    signon system solution they are successfully using or have deployed at a
    client site.

    Thank You
  • Meiao

    #2
    Re: PHP Signon/Signup solution needed

    Take a look at Pear's Authentication





    <?php

    // In this test, the file is named "test.php".

    require_once "Auth.php";

    function loginFunction()
    {
    /*
    * Change the HTML output so that it fits to your
    * application.
    */
    echo "<form method=\"post\" action=\"test.p hp?login=1\">";
    echo "<input type=\"text\" name=\"username \">";
    echo "<input type=\"password \" name=\"password \">";
    echo "<input type=\"submit\" >";
    echo "</form>";
    }

    if (isset($_GET['login']) && $_GET['login'] == 1) {
    $optional = true;
    } else {
    $optional = false;
    }

    $dsn = "mysql://user:password@l ocalhost/database";
    $a = new Auth("DB", $dsn, "loginFunction" , $optional);

    $a->start();

    echo "Everybody can see this text!<br />";

    if (!isset($_GET['login'])) {
    echo "<a href=\"test.php ?login=1\">Clic k here to log in</a>\n";
    }

    if ($a->getAuth()) {
    echo "One can only see this if he is logged in!";
    }
    ?>

    Comment

    • totalstranger

      #3
      Re: PHP Signon/Signup solution needed

      On or about 10/16/2005 10:05 AM, it came to pass that Meiao wrote:[color=blue]
      > Take a look at Pear's Authentication
      >
      > http://pear.php.net/manual/en/packag...entication.php
      >[/color]
      <snip>
      Thank you!

      Comment

      Working...