Michael,
If it's any consolation, pretty much everything else on your remote site seems fine. All the links I can see are good. While I would encourage you to follow the above instructions so that your site is properly defined (in case you need to make adjustments to it later), you could in the meantime make a small change to your index.php file - which should get things going for you so you can see the light at the end of the tunnel.
In Dreamweaver open (if you can) your index.php page.
In code view, on your keyboard pres Ctrl+F to get the Find and Replace window open.
For 'Find in' select 'Current Document'
For 'Search' select 'Source Code'
In the 'Find' window, copy and paste in:
file:///C|/Users/michael/AppData/Local/Temp/wz88ce/
And leave the bottom pane (replace) blank.
None of the tick boxes needs to be ticked.
Now click 'Replace all'
When you've done, save and upload that one page to your remote site, and let it over-write the last one.
See what happens, and post back.
Edit: Michael, Note the revised line for search and replace!!!!!!
These are now your first 15 lines which go before the line that begins '<!DOCTYPE html PUBLIC . . . '
<?php require_once( "WA_Globals/WA_Globals.php" ); ?>
<?php require_once('Connections/localhost.php'); ?>
<?php
//WA eCart Include
require_once("WA_eCart/WA_Store_Cart_PHP.php");
?>
<?php
$WA_Store_Cart->GetContent();
?>
<?php
// WA eCart Redirect
if ($WA_Store_Cart->redirStr != "") {
header("Location: ".$WA_Store_Cart->redirStr);
}
?>


