Forum Moderators: buckworks
One project is subscription-based, and I need for users to be able to subscribe and manage their subscriptions entirely within the site. I'm really just looking for someone to point me in the direction of some good resources and tutorials, and give me some tips and advice to avoid common pitfalls. What components do I need? What should I be aware of?
Thank you.
I need for users to be able to subscribe and manage their subscriptions entirely within the site.
You do this via "silent post" to your processor. One way is to use the command line program curl to make the post. If you do this on a secure server, the user never leaves the site. Something like:
- present the signup page
- on submission you do $result = curl -d [parameters you pass to processor][processor post url]
$result will contain the response returned from the processor, such as approved, declined etc., to take appropriate action and return response to browser.
You will find some good back grounders here [webmasterworld.com]
Depending on your volume, you can probably start around 2.25% and if you are in the United States, doing less than $30,000 a month, and not selling anything high risk - a merchant account is usually approved within 24 hours. It might take about the same time to get onto one of the transaction platforms as well to process the credit cards.
-Corey