mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 04:02:30 +01:00
14 lines
662 B
PHP
14 lines
662 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 );
|
|
?>
|