Ah, the out of box configuration probably doesn't enable recurring billing. In web\DSC.config file add the following to orderPipelineConfiguration section. And then restart the OrderPipeline service.
<add name="Recurring">
<processors>
<clear />
<add name="CreditCardAuthorization" />
<add name="CreditCardCapture" />
<add name="RecurringInvoiceEmail" />
</processors>
</add>
DotShoppingCart Staff
|