This probably seems like a stupid question off hand, and maybe it is actually, but there are a few specific reasons I’m leaning away from using them. The paypal recurring profiles implementation seems like it doesn’t work very well for a couple reasons:
- There are a number of bugs in the process, including that new customers aren’t created for first time checkouts using it.
- Orders don’t seem to be created for Recurring Profiles – maybe I have something misconfigured…?
- Recurring Profiles have a Related Orders association, which is empty for my tests.
- Apparently, Transactions are supposed to be used for recurring profiles (I read that on another thread recently), however I don’t see those being populated either, needless to say.
What I’m leaning towards is the following:
- Products can be associated to Subscription Plans within Recurly
- During checkout, if a product with an association to a Subscription Plan is in the cart, the Recurly payment method will be available.
- Upon purchase, an account and subscription will be created for the Magento user account.
- In addition to the Order that is created, I will create a Transaction and associate it to the Order.
- On the successful_payment_notification, I will insert a fresh Transaction against the original Order.
- In the My Account section for the end user, I will extend the order detail template with a list of transactions.
- Having a config option to suppress the Recurring Profiles section from My Account to avoid confusion on the part of the end users.
I’m sure someone much smarter than me has thought through this already, look forward to any insight you may be able to offer! Thanks!
UPDATE: My original question was kind of broken into two parts: one being why aren’t my recurring profiles working even with PayPal, and the other being – does it make sense to use Recurring Profiles for my subscriptions feature. I didn’t really get any answer for the latter, so I accepted the answer that was given to assist with the former issue.
I have since posted a new question related specifically to the question of whether or not to use Recurring Profiles: https://magento.stackexchange.com/questions/3202/should-i-use-recurring-profiles-for-subscriptions-feature
I have same problem and just found this:
Working with Recurring Profiles
where written that:
I guess this is the solution to the problem