A Much Better Credit Card Module than the Basic One. This is perfect for those who need to process cards offline like wholesalers etc. It encrypts,decrypts on the fly and adds cvv. I have it working however there are a few bugs that I Know a couple of you here could fix in 10 minutes. Please post all fixes back here. This is a great module lets get it done.
Basic Description:
Collect cvv, switch issue and start date.
Allow encryption on cc number in database (see below)
Allow bypassing of the card validation and identification, set in admin.
Allow bypassing of the card blacklist check, set in admin.
Allow bypass of cvv collection
Allow bypass of issue collection It will also determine which card type the customer uses based on the BIN (Bank Identification Number) of the card. (the first 6 digits of the card) The card is either accepted or rejected depending on the card type which can be set by using the cc module configuration in the administration panel where you can set card types on and off.
You can now access a credit card blacklist and enter cards you do not want to accept via the admin panel.
If you select to split cc info by entering email address in admin module it will send not only the middle 8 digits via email but also start date, issue number and CVV too.
There is also changes which allow the automatic deletion of the CC info via a button in the orders page in the administration panel.
The version 1.81 replaced 1.8 and the bugs are fixed. It is working great on my site now so the previous note has already been corrected in cc.php on the version you download now.
Blayne
by bkpie on Fri, 2007-06-15 07:15
Quote:
Originally Posted by bkpie
The version 1.81 replaced 1.8 and the bugs are fixed. It is working great on my site now so the previous note has already been corrected in cc.php on the version you download now.
Blayne
Some have had problems with some good credit cards being rejected due to not having updated BIN in the cc_validation.php file so I am attaching a stripped out cc_validation.php which will correct this. Please set validation to false in admin. It will still use basic validation.
Bkpie
by thuglife on Fri, 2008-02-15 07:10
hello ,
i want to convert oscmax db to osc 2.2 , but the credit cards is still encrypted . how can i do ?
thank's
by bkpie on Fri, 2008-02-15 07:30
The original contribution was for osc 2.2 so it should not be a problem. The exception being any files that were changed when I ported it to oscmax. Many times for oscmax the files changed are in the template files instead of catalog/ files. also the javascript files are diff. than osc 2.2 Compare the install instructions from the oscmax version to the original here osCommerce Community Add-Ons make any changes. I have never gone from Oscmax backwards to 2.2 and not sure why you want to.
In catalog\includes\modules\payment\cc.php
Find:
' if (cc_cvv == "" || cc_cvv.length != ' . CC_CVV_MIN_LENGTH . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_CC_TEXT_JS_CC_CVV . '";' . "\n" .
' error = 1;' . "\n" .
and replace with:
' if (cc_cvv == "" || cc_cvv.length < ' . CC_CVV_MIN_LENGTH . ' || cc_cvv.length > 4) {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_CC_TEXT_JS_CC_CVV . '";' . "\n" .
' error = 1;' . "\n" .
Blayne
Blayne
Bkpie
i want to convert oscmax db to osc 2.2 , but the credit cards is still encrypted . how can i do ?
thank's