Read the full tutorial, everything is in there (and a lot more) and it's very easy.
You need something like this:
PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
// change the line below to the actual filename without ".php" extention.
// the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.
define('THIS_SCRIPT', 'test');
// ########################## REQUIRE BACK-END ############################
chdir('/home/site/public_html/livexchange/forums/global.php');
require_once('./global.php');
// #################### HARD CODE JAVASCRIPT PATHS ########################
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################
if (!is_member_of($vbulletin->userinfo, 6) AND !is_member_of($vbulletin->userinfo, 7))
{
print_no_permission();
}
// Your upload code here
?>
Probably you need to change this code (have a look at your config.php for it):
PHP Code:
chdir('/home/site/public_html/livexchange/forums/global.php');
Also change the script name and the usergroups to the correct ones for your script.