27eb6c15a7
### 1.1.0 (2.27.2004) ### ### Thanks to Miker, Yop, Mantagnana & Maebius for bug reports & feature ideas. :) - Added option to verify registration emails. - Added options to turn off display of news/online/babblebox in towns. - Added gameurl and adminemail fields to control table. - Added ability to ban a user without deleting the account. - Added rules for passwords (alphanumeric, maxlength=10). - Added page where users can change their passwords. - Added a page for lost passwords. - Fixed bugs in users.php to use doquery() instead of mysql_query(). - Fixed bug in installer program when creating the admin user account. - Changed the way towns and spells are handled in the user account. - Removed some deprecated code from the onlinechar() function.
16 lines
787 B
PHP
16 lines
787 B
PHP
<?php // config.php :: Low-level app/database variables.
|
|
|
|
$dbsettings = Array(
|
|
"server" => "localhost", // MySQL server name. (Default: localhost)
|
|
"user" => "", // MySQL username.
|
|
"pass" => "", // MySQL password.
|
|
"name" => "", // MySQL database name.
|
|
"prefix" => "dk", // Prefix for table names. (Default: dk)
|
|
"secretword" => ""); // Secret word used when hashing information for cookies.
|
|
|
|
// These are used for display purposes only. Technically you could change them, but it's not going to
|
|
// do anything special. And I'd prefer if you didn't, just to keep things all nice and standardized.
|
|
$version = "1.1.0";
|
|
$build = "";
|
|
|
|
?>
|