* @copyright 2006-2007 * @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 'auth_username' => 'lawrence.coffin', 'auth_password' => '52f587e047ceca96cb3ad4a17e851dd4', 'auth_realm' => 'phpMyID', # Advanced Config # 'allow_gmp' => false, # 'allow_test' => true, # 'debug' => true, # 'logfile' => '/tmp/phpMyID.debug.log', # 'force_bigmath' => false, ); /** * Simple Registration Extension * @name $sreg * @global array $GLOBALS['sreg'] */ $GLOBALS['sreg'] = array ( # 'nickname' => 'Joe', # 'email' => 'joe@example.com', # 'fullname' => 'Joe Example', # 'dob' => '1970-10-31', # 'gender' => 'M', # 'postcode' => '22000', # 'country' => 'US', # 'language' => 'en', # 'timezone' => 'America/New_York' ); require('MyID.php'); ?>