Tagged Questions
This tag is used with questions related to payment cards. If your question is regarding security of payment card data, then you may want to consider using the pci-dss tag. Note that much of the advice surrounding this topic is region dependent, so it will help if you mention where in the world you are. FAQs for this tag: Which payment gateway should I choose Terminology associated with this tag: Merchant Payment Gateway PCI-DSS
39
votes
10answers
2k views
Somebody is storing credit card data - how are they doing it?
Storing credit card information securely and legally is very difficult and should not be attempted. I have no intention of storing credit card data but I'm dying to figure out the following:
My ...
34
votes
8answers
890 views
A worthy developer-friendly alternative to PayPal
I understand payments are a tricky thing, but I'm yet to find a worthy alternative to PayPal. I want to change from PayPal because I think they are expensive and it doesn't work in all countries. ...
33
votes
10answers
6k views
Storing credit card details
I have a business requirement that forces me to store a customer's full credit card details (number, name, expiry date, CVV2) for a short period of time.
Rationale: If a customer calls to order a ...
27
votes
11answers
8k views
Determine credit card type by number?
Can credit card type be determined solely from the credit card number?
Is this recommended or always ask client for the type of credit card they're using?
I googled about it and found this ...
24
votes
8answers
5k views
What is the best way to validate a credit card in PHP?
Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number?
Right now I need something that will work with American ...
20
votes
19answers
3k views
What is the best credit card processing service? [closed]
We're looking to add credit card payments to our system (and it needs to be fairly custom, handling variable "per use" charges each month). We would like the integration to be simple and secure (i.e. ...
17
votes
10answers
2k views
Storing Credit Card Numbers in SESSION - ways around it?
I am well aware of PCI Compliance so don't need an earful about storing CC numbers (and especially CVV nums) within our company database during checkout process.
However, I want to be safe as ...
17
votes
6answers
1k views
Online Credit Card Storage?
I am about to inherit and work on a small business retail website that is very poorly designed. Among other things, the greatest concern is with the current credit card processing.
Currently, the ...
14
votes
3answers
2k views
Storing Credit Card Information
Can I store my users' credit card's expiration date & last 4 digits? The reasons for this is so we can notify the user that their card is about to expire and that they should change their account ...
13
votes
4answers
2k views
Maximum Year in Expry Date of Credit Card
Various online services have different values for maximum year of expiry, when it comes to Credit Cards.
For instance:
Basecamp: +15 years (2025)
Amazon: +20 years (2030)
Paypal: +19 years (2029)
...
12
votes
1answer
307 views
how can i detect 1-time e-credit cards?
I need to detect credit cards that are 1-time credit cards (they become obsolete after the first payment).
I know there are some bin ranges database out there. Can you share your experience on this ...
12
votes
1answer
2k views
How to mask credit card numbers in log files with Log4J?
Our web app needs to be made PCI compliant, i.e. it must not store any credit card numbers. The app is a frontend to a mainframe system which handles the CC numbers internally and - as we have just ...
11
votes
13answers
1k views
Best way to prevent duplicate use of credit cards
We have a system where we want to prevent the same credit card number being registered for two different accounts. As we don't store the credit card number internally - just the last four digits and ...
10
votes
6answers
308 views
Is there a GOOD reason many web sites won't accept credit cards with spaces and dashes in them? [closed]
Is there a technical/legal/financial/contractual/design reason for not accepting credit card numbers with spaces in them?
So many web sites do not allow you to put spaces or dashes in a credit card ...
10
votes
6answers
2k views
How to test on Live paypal site with dummy credit cards
Right now I am able to test credit card functionality on development server using test/dummy credit cards. But not able to test the same functionality on live server. Are there any dummy credit cards, ...
9
votes
4answers
2k views
Saving credit card information in MySQL database?
I want to allow my customer users to enter their credit card information so that I can charge them every month.
I wonder how one should save this information?
Should it be saved in the MySQL ...
9
votes
3answers
975 views
Credit card expiration dates in which timezone?
We know from Credit card expiration dates - Inclusive or exclusive? that credit card expires on the last day. However, in which time zone?
8
votes
8answers
709 views
Collecting Credit Card Information - not to collect payment
I am working in PHP on a Linux server with MySQL.
I have a requirement (that I have attempted to talk them out of) to collect credit card information from users so that our company can use the card ...
8
votes
3answers
258 views
My first e-commerce site, or how I learned to stop worrying and love credit card transactions
Sooner or later it's going to happen. A freelance client is going to want an e-commerce website, and while the programming doesn't scare me, the handling of other people's money does. Thing like this ...
7
votes
5answers
810 views
Can I save credit card secret code in the database?
I need to save the credit card numbers and secret codes of users in the database in plain text ( consensus behind obviously ) for automatic operation made from the server.
Is there some problems ?
...
7
votes
5answers
2k views
Best practices to store CreditCard information into DataBase
In my country the online payments are not an old thing, the first time i saw a web application taking payments directly to a local bank account was last year.
So, Im a newbie coding web payment ...
7
votes
4answers
682 views
Online payment service recommendation?
We're currently in the process of looking for an online payment service that will allow us to accept credit cards, etc. However, our business model also involves revenue sharing in a model similar to ...
7
votes
4answers
1k views
Is 42 a valid credit card number? jQuery validator thinks it is
We all know that 42 is the answer to everything, but it's news to me that it is a valid credit card number.
Try entering '42' or '42176' into this jQuery Validation testing page and click OK.
What's ...
7
votes
9answers
2k views
Whats the best way to offer credit card payment on your website?
I want to offer credit card payment on my website and was wondering whats the best (or prefered) way to do so?
I know I could use Google checkout, paypal, etc. but this is not what i am looking for. ...
7
votes
2answers
796 views
Credit Card processing library that handles many merchant gateways?
Looking for a c# library that interfaces to multiple merchant gateways.
Should at minimum be able to handle PayPal and authorize.
7
votes
4answers
2k views
How to test credit card interactions?
After reading this answer, I wonder if there's a way to get a "testing" credit card number. One that you can experiment with but that doesn't actually charge anything.
6
votes
2answers
1k views
american express API
Is there an API that would let me access my AMEX transactions? How do Mint or any other finance websites export my data? If so, is it free?
6
votes
4answers
3k views
Parse Credit Card input from Magnetic Stripe
Does anyone know how to parse a credit card string input from a Magnetic Card Swiper?
I tried a JavaScript parser but never got it to work. This is what the input looks like.
...
6
votes
3answers
249 views
Is it secure to POST Credit Card data from View to Controller?
Need to submit some CC data from the View to the Controller where it will be processed, can I just POST it or is there some common way of securing the data in transit?
6
votes
7answers
2k views
Storing partial credit card numbers
Possible Duplicates:
Best practices for taking and storing credit card information with PHP
Storing credit card details
Storing Credit Card Information
I need to store credit card numbers within ...
6
votes
4answers
1k views
Token based credit card systems vs. traditional gateway
I'm trying to decide between Paypal PayFlow for a transaction processing service or a service like BrainTree.
BrainTree's service intrigues me because they will actually return a token to you for a ...
6
votes
2answers
2k views
What options are available to accept credit card payments through an iPhone?
What are the options to accept a credit card payment from an iPhone application? This will be a stand alone application, not an iPhone specific web site. Can I integrate with a payment gateway like ...
6
votes
2answers
577 views
ActiveMerchant: How to authorise cards when using gateways that do not support the void operation?
I am working on the billing component of a Ruby on Rails application using ActiveMerchant. The payment gateway we have chosen is PaymentExpress.
Code examples I am seeing such as the one below, use ...
6
votes
4answers
264 views
Limiting impact of credit card processing scripts/bots
I'm involved in building a donation form for non-profits. We recently got hit by a fast round of low dollar submissions. Many were invalid cards, but a few went through. Obviously someone wrote a ...
5
votes
1answer
88 views
How to get Credit Card Balance?
Is there ability to get in some way Balance on CreditCard ?
API of Authorize.net or Paypal were examined on this subject and no results.
In real life any cash terminal can show to you balance on your ...
5
votes
1answer
332 views
Storing credit cards, an alternate to using a credit card vault
Obviously I'd love to use a credit card vault to store cards. But our business model doesn't allow for this.
For example: our clients are corporations, they create accounts in our software. Each ...
5
votes
3answers
1k views
Is there a credit card reader for the iPhone that has its own API?
I'm looking for a good credit card reader for iPhone, but I haven't seen any device that came with its API. Most of them come with their own applications, but I want to build my own app to interact ...
5
votes
1answer
2k views
How to delay credit card payment like Groupon with APIs (e.g, PayPal, Amazon, Google Checkout)?
We need to mimic Groupon style payment, where users enter a credit card but aren't charged unless some trigger event occurs. (No, this isn't for another deal site.)
Which payment APIs are best ...
5
votes
2answers
448 views
How to prevent the credit-card number field being cached by the browser
I have an input field on a webpage that contains a credit-card number. What is the best way of preventing the browser from caching this value?
Any solution needs to work on a large selection of ...
5
votes
5answers
753 views
Safest way to pass credit card number through a multi-step form?
On step 3 I have a form which accepts a credit card, Step 4 re-prints the information including the last 4 digits of the credit card, and Step 5 I need to know the full CC # to process it and send it ...
5
votes
3answers
1k views
Minimizing PCI compliance when my checkout flow has a confirmation page
I have a shopping cart flow like this:
Page 1. Choose Products
Page 2. Enter address, shipping, credit card details on a single page checkout.
Page 3. User confirms the order - but we want a final ...
5
votes
4answers
6k views
Credit card payment gateway in PHP?
I need to process credit cards and integrate with backend payment services to credit them. The majority of solutions on the internet require an intermediary, eg. 2CO, GCO, Auth.net.
Do you have any ...
5
votes
4answers
1k views
How do I charge someone a variable amount every 2 months without storing CVV code?
We have a physical product that is shipped every 2, 3, or 4 months depending upon customer preference. In between shipments the user may elect to modify their choices.
Before anyone suggests it - I'm ...
5
votes
2answers
7k views
Bank name from credit card details?
Is there a way we can find the name of the bank from the details that we get after scanning a card?
The only relevant info seems to be Card type - Visa etc and the last four digits of the account ...
5
votes
3answers
641 views
Credit Card - Card on file services?
Does anyone have any experience with card on file services for credit cards, that handle the storage of credit card information for ongoing purchases?
We are looking for a solution that can be ...
5
votes
3answers
378 views
Credit Card Payment Solutions for Desktop Applications
There are a whole raft of questions regarding payment processors for web applications but I haven't seen one yet for desktop applications. What are your experiences?
Perhaps to put this into a little ...
5
votes
6answers
495 views
What are some best practices for handling sensitive information?
I'm currently creating an application for a customer that will allow them to automatically bill their customers credit cards.
I'm curious as to what are some best practices to safely store and ...
4
votes
2answers
139 views
How much data, on average, does a credit card transaction use?
Not sure if this is the correct place to ask, but when a credit card is swiped at a POS terminal, how much data is passed for the entire transaction? Please include references if available.
edit: ...
4
votes
6answers
413 views
How to process payments through cards?
I am developing a web application, using ASP.net and C#. I need to provide a functionality through which users can pay through their cards (Credit card, Master card, Vsia card, Debit card etc.). Now ...
4
votes
3answers
1k views
Storing Credit Card Number - PCI?
What are the PCI rules to follow for storing credit card numbers in a database?
1) is this allowed?
2) if so, what rules do we have to follow?
Im looking at this site ...