Yeah, this script will NOT work on the default URL that comes with your account, you MUST use a regular domain name and the paths to the domain. Make sure that you don't have the default directories listed in the config file also.

For example:

You MUST use

http://scootertube.de (or whatever domain you're using)

and NOT

http://snowy.cirtexhosting.com/~scooede/scootertube_de

Your config.php file should look like something like this:

Code:
<?


error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);

session_start();



$db_host     = "localhost";

$db_name     = "yourdatabasenamehere";

$db_user     = "yourdatabaseusernamehere";

$db_pass     = "yourpassword";



$config = array();



$config['ffmpeg']          =  "/usr/local/bin/ffmpeg";

$config['mplayer']          =  "/usr/bin/mplayer";

$config['mencoder']          =  "/usr/bin/mencoder";

$config['flvtool']          =  "/usr/local/bin/flvtool2";

$config['basedir']        =  "/home/scootertube.de/public_html/";

$config['baseurl']        =  "http://scootertube.de/";



include($config['basedir'] . "/include/vshare.php");



?>
if you have http://snowy.cirtexhosting.com/~scooede in the $config['baseurl'] and $config['basedir'] sections, the script will crash.