# The following settings allow ImpEx to connect to the vBulletin 3
# database into which you will be importing data.
####
#
# TARGET - The target is the vBulletin database (where the data is going to)
#
####
$impexconfig['target']['server'] = 'localhost';
$impexconfig['target']['user'] = 'wrestlef_admin';
$impexconfig['target']['password'] = 'MY PASS IS HERE';
$impexconfig['target']['database'] = 'wrestlef_main';
$impexconfig['target']['tableprefix'] = 'wf_';
# If the system that is being imported from uses a database,
# enter the details for it here and set 'sourceexists' to true.
# If the source data is NOT stored in a database, set 'sourceexists' to false
$impexconfig['sourceexists'] = true;
####
#
# SOURCE - The source is the old forum database (where the data is coming from)
#
####
# mysql / mssql
$impexconfig['source']['databasetype'] = 'mysql'; // mysql OR mssql
$impexconfig['source']['server'] = 'localhost';
$impexconfig['source']['user'] = 'wrestlef_admin';
$impexconfig['source']['password'] = 'MY PASS IS HERE';
$impexconfig['source']['database'] = 'wrestlef_phpbb';
$impexconfig['source']['tableprefix'] = 'phpbb_';