You have $WAGLOBAL_Root_URL to "/beadsandjewellerymaking.co.uk/"
the $WAGLOBAL_Root_URL has to be the complete URL to your site:
$WAGLOBAL_Root_URL = "https://web113.secure-secure.co.uk/beadsandjewellerymaking.co.uk/" ;
The suggestion that was made was to change the $WAGLOBAL_localRoot and the $WAGLOBAL_remoteRoot variables to:
$WAGLOBAL_localRoot = "/beadsandjewellerymaking.co.uk/";
$WAGLOBAL_remoteRoot = "/beadsandjewellerymaking.co.uk/";
if that does not work, find the following code on the confirm page:
<?php
if ($WA_Store_Cart->IsEmpty()) {
$WA_Store_Cart->redirStr = "cart.php";
$WA_Store_Cart->cartAction = "RedirectIfEmpty";
}
?>
and change it to:
<?php
$WA_Store_Cart->GetContent();
if ($WA_Store_Cart->IsEmpty()) {
$WA_Store_Cart->redirStr = "cart.php";
$WA_Store_Cart->cartAction = "RedirectIfEmpty";
}
?>