databaseleri localde kurdum impex-config.php nin içeriğini yayınlıyorum
Locahost için xammp kullanıyorum
<?php
#################################################################### |;
# vBulletin
# ---------------------------------------------------------------- # |;
# Copyright ©2000–2006 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

if (!defined('IDIR')) { die; }

$impexconfig['target']['databasetype']	= 'mysql';
$impexconfig['target']['server']		= 'localhost';
$impexconfig['target']['user']			= 'root';
$impexconfig['target']['password']		= '';
$impexconfig['target']['database']		= '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']			= true;

# mysql / mssql
$impexconfig['source']['databasetype']	= 'mysql';
$impexconfig['source']['server']		= 'localhost';
$impexconfig['source']['user']			= 'root';
$impexconfig['source']['password']		= '';
$impexconfig['source']['database']		= 'smf';
$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_language.php';
$impexconfig['system']['pagespeed']		= 1;

define('impexdebug', false);
define('emailcasesensitive', false);
define('forcesqlmode', false);
define('skipparentids', false);
?>