ya krissy is correct...
what you want to do is go into config.php(located in the root of the script install)
inside of you you will see this:
<?php
/*
+ ----------------------------------------------------------------------------+
| PHPDirector Config File
| $License: GPL General Public License
| $Website: phpdirector.co.uk
| $Author: Ben Swanson
+----------------------------------------------------------------------------+
*/
$cfg["db_host"] = "localhost";
$cfg["db_name"] = "database name";
$cfg["db_user"] = "database username";
$cfg["db_pass"] = "database user password";
$cfg["admin_user"] = "admin";
$cfg["admin_pass"] = "------";
?>
all you want to do is plug in your server details.... below is a example:
EXAMPLE BELOW
<?php
/*
+ ----------------------------------------------------------------------------+
| PHPDirector Config File
| $License: GPL General Public License
| $Website: phpdirector.co.uk
| $Author: Ben Swanson
+----------------------------------------------------------------------------+
*/
$cfg["db_host"] = "localhost";
$cfg["db_name"] = "PHPDVids";
$cfg["db_user"] = "testuser";
$cfg["db_pass"] = "blahblahblah";
$cfg["admin_user"] = "admin";
$cfg["admin_pass"] = "passpasspass";
?>
EXAMPLE ABOVE