* @copyright 2006-2008 * @license http://www.gnu.org/licenses/gpl.html GNU Public License * @url http://siege.org/projects/phpMyID * @version 2 */ /** * User profile * @name $profile * @global array $GLOBALS['profile'] */ $GLOBALS['profile'] = array( # Basic Config - Required 'auth_username' => 'bvgastel', 'auth_password' => '0130e8b0a9ec084560c36bec672b32cf', 'auth_realm' => 'bitpowder', # Optional Config - Please see README before setting these # 'microid' => array('mailto:user@site', 'http://delegator'), # 'pavatar' => 'http://your.site.com/path/pavatar.img', # Advanced Config - Please see README before setting these # 'allow_gmp' => false, # 'allow_test' => false, # 'allow_suhosin' => false, # 'auth_realm' => 'phpMyID', # 'force_bigmath' => false, # 'idp_url' => 'http://your.site.com/path/MyID.config.php', # 'lifetime' => 1440, # 'paranoid' => false, # EXPERIMENTAL # Debug Config - Please see README before setting these # 'debug' => false, # 'logfile' => '/tmp/phpMyID.debug.log', ); /** * Simple Registration Extension * @name $sreg * @global array $GLOBALS['sreg'] */ $GLOBALS['sreg'] = array ( 'nickname' => 'macintostie', 'email' => 'bvgastel@bitpowder.com', 'fullname' => 'Bernard van Gastel', # 'dob' => '1970-10-31', # 'gender' => 'M', # 'postcode' => '22000', 'country' => 'NL', 'language' => 'nl', 'timezone' => 'Europe/Amsterdam' ); require('MyID.php'); ?>