to troubleshoot the probelm
1) edit line 133:
header("Location: ".$WA_redirectURL);
to:
//header("Location: ".$WA_redirectURL);
2) add the following code at line 1:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
and add this code just before the </body> tag:
<?php
if (isset($_POST["Insert"]) || isset($_POST["Insert_x"])) {
echo("insert SQL: ".$WA_Sql);
echo("<pre>");
var_dump($_FILES);
echo("</pre>");
echo WA_DFP_AllUploadsDebug();
}
?>
post back the results that this writes to the page after trying an insert.