mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
for now svn users can edit glestuser.ini and add the following entry (pointing to your folder of course) to see the country flags in game: CountryTexturePath=/home/softcoder/Code/megaglest/trunk/source/masterserver/flags
17 lines
781 B
PHP
17 lines
781 B
PHP
<?php
|
|
if ( !defined('INCLUSION_PERMITTED') || ( defined('INCLUSION_PERMITTED') && INCLUSION_PERMITTED !== true ) ) { die( 'This file must not be invoked directly.' ); }
|
|
|
|
define( 'MYSQL_HOST', '127.0.0.1' );
|
|
define( 'MYSQL_DATABASE', 'glest' );
|
|
define( 'MYSQL_USER', 'root' );
|
|
define( 'MYSQL_PASSWORD', 'your_pwd' );
|
|
// Allow using persistent MYSQL database server connections
|
|
// This _can_ improve performance remarkably but _can_ also break stuff completely, so read up:
|
|
// http://php.net/manual/function.mysql-pconnect.php
|
|
// http://php.net/manual/features.persistent-connections.php
|
|
define( 'MYSQL_LINK_PERSIST', false );
|
|
// How many recently seen servers to store
|
|
define( 'MAX_RECENT_SERVERS', 5 );
|
|
define( 'DEFAULT_COUNTRY', '?' );
|
|
?>
|