* (c) 2006-2007 * http://siege.org/projects/phpMyID * * Config File Version 1 * * *************************************************************************** * * CONFIGURATION * *************************************************************************** * * You must change these values: * auth_username = login name * auth_password = md5(username:realm:password) * * Default username = 'test', password = 'test', realm = 'phpMyID' */ $profile = array( 'auth_username' => 'chris', 'auth_realm' => 'cs278', // 'auth_password' => 'b554161e4863b95b3b6424dd0e90b060', 'auth_password' => 'b05a85bddd7c9e4255e2db84e4280d43', // 'debug' => true, ); $profile = array( 'auth_username' => 'chris', 'auth_realm' => 'cs278', 'auth_password' => '0138ac6f7ec113d884653517164d6d99', ); /* * Optional - Simple Registration Extension: * If you would like to add any of the following optional registration * parameters to your login profile, simply uncomment the line, and enter the * correct values. * * Details on the exact allowed values for these paramters can be found at: * http://openid.net/specs/openid-simple-registration-extension-1_0.html */ $sreg = array ( 'nickname' => 'Chris', 'email' => 'chris@cs278.org', 'fullname' => 'Chris Smith', 'dob' => '1988-01-22', 'gender' => 'M', 'postcode' => 'GL12 8QE', 'country' => 'UK', 'language' => 'en', 'timezone' => 'Europe/London' ); /******************************************************************************/ /* * Internal configuration * DO NOT ALTER ANYTHING BELOW THIS POINT UNLESS YOU KNOW WHAT YOU ARE DOING! */ if (! defined('PHPMYID_STARTED')) include('MyID.php'); ?>