
ini_set('display_errors',on);
should be:
ini_set('display_errors','on');

I have made this change.

<?php require_once("file:///website/fuel09-Manager/WA_DataAssist/WA_AppBuilder_PHP.php"); ?>
<?php require_once('file:///website/fuel09-Manager/Connections/FuelManagement.php'); ?>
<?php require_once("file:///website/fuel09-Manager/WA_DigitalFilePro/HelperPHP.php"); ?>
they should not have a file reference, it should be a relative path the included files:
<?php require_once("WA_DataAssist/WA_AppBuilder_PHP.php"); ?>
<?php require_once('Connections/FuelManagement.php'); ?>
<?php require_once("WA_DigitalFilePro/HelperPHP.php"); ?>
The only time I have seen the require-once lines use a file reference is if you save as outside of the website and when Dreamweaver asks to update links you answer yes.

yep sorry - the links were broken when I did a save as in order to zip the file... I must have clicked yes... it is not like that on the live site, so this is not the problem.
I still get the below error code

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /usr/home/fuelcd/www/htdocs/fuel09-Manager/jobs_Insert.php:3) in /usr/home/fuelcd/www/htdocs/fuel09-Manager/WA_DigitalFilePro/HelperPHP.php on line 70
Warning: Cannot modify header information - headers already sent by (output started at /usr/home/fuelcd/www/htdocs/fuel09-Manager/jobs_Insert.php:3) in /usr/home/fuelcd/www/htdocs/fuel09-Manager/jobs_Insert.php on line 153

Here is a link to the new page with the changes ou requested - attachment.php?attachmentid=343&stc=1&d=1252017607
Thanks for your time.
Pete