Still using it. Great product. But I had to file an extension and crap to get it all sorted out, which was highly annoying.
Stripe And A/B Testing Made Me A Small Fortune
21–30 of 164 posts
Re: Stripe And A/B Testing Made Me A Small Fortune
#22Re: Stripe And A/B Testing Made Me A Small Fortune
#23In case anyone is curious, here's Patrick's sales graph: http://www.bingocardcreator.com/stats/sales-by-month You can see the big jump in May-July (although the jump for July is 32%, not 53%)
Re: Stripe And A/B Testing Made Me A Small Fortune
#24Re: Stripe And A/B Testing Made Me A Small Fortune
#25Or spend a few hours, get a merchant account through a bank and authorize.net with much lower fees and a pretty standard API. Tons of classes to use authorize.net with and super simple... no point of adding ANOTHER layer... charging with a merchant account is trivial.
Re: Stripe And A/B Testing Made Me A Small Fortune
#26Or spend a few hours, get a merchant account through a bank and authorize.net with much lower fees and a pretty standard API. Tons of classes to use authorize.net with and super simple... no point of adding ANOTHER layer... charging with a merchant account is trivial.
It might be trivial to charge, but storing credit card details and remaining PCI compliant is a nightmare for businesses, especially at scale. Trust me -- getting audited and fined because you're not PCI complaint is much more expensive than giving the burden to another company like Stripe. Plus, Stripe is great because they don't hold your customers' data hostage.
Re: Stripe And A/B Testing Made Me A Small Fortune
#27Or spend a few hours, get a merchant account through a bank and authorize.net with much lower fees and a pretty standard API. Tons of classes to use authorize.net with and super simple... no point of adding ANOTHER layer... charging with a merchant account is trivial.
That's certainly not been my experience with setting up online billing through authorize.net (or braintree for that matter). Integration is easy enough, it's the screwing around with getting a merchant account that's a pita. Plus, if you're a startup, you don't really know how much you're going to be selling (or not selling). It's a good idea to keep associated costs variable until you have some better benchmarks. St…
Re: Stripe And A/B Testing Made Me A Small Fortune
#28Re: Stripe And A/B Testing Made Me A Small Fortune
#29Re: Stripe And A/B Testing Made Me A Small Fortune
#30> This means that their credit card details never hit your server. One thing I've been seeing recently is that some implementations using Stripe DO have the CC details hitting their server. The most common case being when Javascript is disabled the form posts to the website because the developer didn't design with graceful degradation, a dangerous mistake when mixed with credit card numbers. It doesn't appear to be a…
No putting them in a DB, no putting the in a log file (not even the last four or something like that), nothing. So if your form takes the numbers in, you make an API call, and then you blank them in memory you were OK.
If you put them in the user's session, you were in trouble.
It's all insanely complicated, and the only good solution is "don't do it." There's a good reason people use things like Stripe, PayPal, Authorize.net's CIM (where they store it and certify that they are PCI compliant).