33 lines
935 B
PHP
33 lines
935 B
PHP
<?php
|
|
|
|
/**
|
|
* DiscuzX Convert
|
|
*
|
|
* $Id: index.php 8 2010-04-07 03:56:45Z Cnteacher $
|
|
*/
|
|
|
|
$_config['source']['dbhost'] = 'localhost';
|
|
$_config['source']['dbuser'] = 'root';
|
|
$_config['source']['dbpw'] = '';
|
|
$_config['source']['dbname'] = 'discuz';
|
|
$_config['source']['tablepre'] = 'cdb_';
|
|
$_config['source']['dbcharset'] = '';
|
|
$_config['source']['pconnect'] = '1';
|
|
|
|
$_config['target']['dbhost'] = 'localhost';
|
|
$_config['target']['dbuser'] = 'root';
|
|
$_config['target']['dbpw'] = '';
|
|
$_config['target']['dbname'] = 'discuzx';
|
|
$_config['target']['tablepre'] = 'pre_';
|
|
$_config['target']['dbcharset'] = '';
|
|
$_config['target']['pconnect'] = '1';
|
|
|
|
$_config['ucenter']['dbhost'] = '';
|
|
$_config['ucenter']['dbuser'] = '';
|
|
$_config['ucenter']['dbpw'] = '';
|
|
$_config['ucenter']['dbname'] = '';
|
|
$_config['ucenter']['tablepre'] = '';
|
|
$_config['ucenter']['dbcharset'] = '';
|
|
$_config['ucenter']['pconnect'] = '1';
|
|
|
|
?>
|