1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
/**
* mysql database
*/
$txpcfg['db'] = 'databasename';
/**
* database login name
*/
$txpcfg['user'] = 'root';
/**
* database password
*/
$txpcfg['pass'] = '';
/**
* database host
*/
$txpcfg['host'] = 'localhost';
/**
* table prefix (Use ONLY if you require multiple installs in one db)
*/
$txpcfg['table_prefix'] = '';
/**
* full server path to textpattern dir (no slash at end)
*/
$txpcfg['txpath'] = '/home/path/to/textpattern';
/**
* DB Connection Charset, only for MySQL4.1 and up. Must be equal to the Table-Charset.
*/
$txpcfg['dbcharset'] = 'latin1';
/**
* optional: database client flags as needed (@see http://www.php.net/manual/function.mysql-connect.php)
*/
# $txpcfg['client_flags'] = MYSQL_CLIENT_SSL | MYSQL_CLIENT_COMPRESS;
define('txpath', $txpcfg['txpath']);
?>
|