Probleme mit der Auth Pear-Klasse

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Probleme mit der Auth Pear-Klasse

    Hallo,

    verwende folgenden Aufruf für die Pear Klasse, habe die Datenbank auth, mit den Feldern username und password angelegt und anschließend ein Login eingetragen.

    Einloggen funktioniert jedoch nicht, es kommt ständig "Wrong login data". Bin was Pear angeht noch Anfänger und weiß leider nicht mehr weiter... woran könnte das liegen?

    Danke für Eure Hilfe!

    PHP-Code:
    $dsn "mysql://xxx:xxx@localhost/test"
    $my_auth = new Auth('DB'$dsn); 

    $my_auth->start(); 

    if(
    true === $my_auth->getAuth()) 

        print 
    "Sie sind drin"

    » http://www.htaccess-generator.com

  • #2
    Im Beispiel benutzt der ja ein Array mit dem Key "dsn" für die Options... vielleicht liegt's daran?!

    Kommentar


    • #3
      Aus http://pear.php.net/manual/en/packag...ro-storage.php


      The storage-specific argument for the Auth constructor() is an array.

      Table 28-1. Array keys and values
      Key - Description - Default value
      "dsn" - A valid and well-formed DSN . - ""
      "table" - The name of the database table, where the authorization data is stored. - "auth"
      "usernamecol" - The name of the colunm, where the username is stored - "username"
      "passwordcol" - The name of the colunm, where the MD5-crypted password is stored. Make sure, that the password field can contain at least 32 characters. - "password"

      Kommentar

      Lädt...
      X