Ok this is my problem
When making a purchase in the store and filling out all information, you get to the checkoutconfirm page. When you click the button it takes you back to the checkoutpaymentinfo page.
So I thought that some payment information was missing, until I went to first data and looked at the transaction report.
Looking there the following information has been passed to them from the shopping cart. First Name, Last Name, Address, city, State, Zip, Country, Credit Card Number, Exp Date, cvc.
Reading the code in the file CheckoutConfirm.ascx.cs file I see what is causing the redirect back to the checkoutpaymentinfo.aspx, but I don't know why.
var paymentInfo = this.PaymentInfo;
if (paymentInfo == null)
{
var args1 = new CheckoutStepEventArgs() { OrderConfirmed = false };
OnCheckoutStepChanged(args1);
if (!this.OnePageCheckout)
{
Response.Redirect("~/checkoutpaymentinfo.aspx");
}
else
{
return;
}
}
I am using version 1.8
If paymentinfo is missing, why is FD getting all of it passed to processor?
So my question is what paymentinfo is missing?
Thanks for any help.