php-openid
php-openid copied to clipboard
examples/server/setup.php & SQLite broken
It seems that setup.php generates the wrong configuration in SQLite.
It generates something like: $s = new Auth_OpenID_SQLiteStore ('pathtosqlitedbfile');
While it should generate something similair to MySQL with: require_once ('DB.php');
$db =& DB::connect($dsn);
Because Auth_OpenID_SQLiteStore expects a PEAR-DB-connection-object.
Hope this helps.