ImpExConfig.php 
Note:
The config file has changed from an ini file to a PHP scripts in 3.5 the same as the standard vBulletin config file.
<?php
#################################################################### |;
# vBulletin [#]version[#] - Licence Number [#]license[#]
# ---------------------------------------------------------------- # |;
# Copyright ©2000–[#]year[#] Jelsoft Enterprises Ltd. All Rights Reserved. |;
# This file may not be redistributed in whole or significant part. # |;
# ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # |;
# http://www.vbulletin.com | http://www.vbulletin.com/license.html # |;
#################################################################### |;

# The following settings allow ImpEx to connect to the vBulletin 3
# database into which you will be importing data.

# If impex is installed in vBulletin you can ignore the target details
# as includes/config.php

$impexconfig['target']['databasetype']    = 'mysql';
$impexconfig['target']['server']          = 'localhost';
$impexconfig['target']['user']            = 'username';
$impexconfig['target']['password']        = 'password';
$impexconfig['target']['database']        = 'vbulletin_forum';
$impexconfig['target']['tableprefix']     = '';


# 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']              = false;

# mysql / mssql
$impexconfig['source']['databasetype']    = 'mysql';
$impexconfig['source']['server']          = 'localhost';
$impexconfig['source']['user']            = 'username';
$impexconfig['source']['password']        = 'password';
$impexconfig['source']['database']        = 'source';
$impexconfig['source']['tableprefix']     = '';


# Error logging will log import errors to a database table impexerror
# for use with support. 
# Language file is the file of phrases to be used, default is english.
# pagespeed is the second(s) wait before the page refreshes.

$impexconfig['system']['errorlogging']    = true;
$impexconfig['system']['language']        = 'impex/impex_language.php';
$impexconfig['system']['pagespeed']       = 1;

define('impexdebug'false);
define('emailcasesensitive'false);
define('forcesqlmode'false);
define('skipparentids'false);
?>
User Contributed Notes: ImpExConfig.php Add a Comment