This is a discussion on Paypal Payflo Pro (formerly Verisign Payflow Pro) within the Paypal forums, part of the Payment Modules category; Has anyone installed this contribution to OSCMax yet? osCommerce: PayPal Payflow Pro If so, what changes did you have to ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Has anyone installed this contribution to OSCMax yet? osCommerce: PayPal Payflow Pro If so, what changes did you have to make? For the record, on the install to date I have installed to instructions. BUT, when I select the payment type from the checkout_payment, I get a blank page on checkout_confirmation. We have authorize.net installed and it is NOT exhibiting this behavior. Any suggestions would be appreciated.
__________________ so endith the lesson<think>sometimes I just sit's and thinks</think> "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB |
|
#2
| |||
| |||
| Installed and working. some notes: 1) make a copy of the classes/cc_validation.php to classes/cc_validation1.php as the one with oscmax is more current 2) if you are attempting to run tests they will fail unless you modify functions/php_pfpro.php as follows Code: define(pfpro_defaulthost, ($READ_PHP_INI == 0) ? '
test-payflow.verisign.com' : get_cfg_var('pfpro.defaulthost'));
// define(pfpro_defaulthost, ($READ_PHP_INI == 0) ?
'payflow.verisign.com' : get_cfg_var('pfpro.defaulthost')); Also, this module does store CC numbers (a very bad thing) in your database. Make sure that you follow the directions on ensuring that cards are stored as 111 xxx xxx 111. Finally, nothing upsets a customer more than seeing their credit card number being echo'd back to them during confirmation. make the following adjustment to make them feel happy... In checkout_confirmation.tpl.php (most likely in your templates/templatename/content directory) make te following mod Code: <? if ($confirmation['fields'][$i]['title'] == "Credit Card Number:") {
$dcc_number = (substr_replace($confirmation['fields'][$i]['field'], ' xxxx xxxx ', 4, -4)); ?>
<td class="main"><?php echo $dcc_number; ?></td>
<? } else { ?>
<td class="main"><?php echo $confirmation['fields'][$i]['field']; ?></td>
<? } ?>
__________________ so endith the lesson<think>sometimes I just sit's and thinks</think> "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Payflow pro issue. | daliernest | osCMax v2 Features Discussion | 5 | 02-27-2007 08:20 AM |
| Payflow Pro - verisign payment module help | markymrk22 | osCommerce 2.2 Modification Help | 7 | 07-18-2005 04:22 AM |
| Payment Modules -where is verisign? | studioridge | osCMax v1.7 General Mods Discussion | 3 | 05-29-2004 12:10 PM |
| credit card error on verisign payflow pro | kfree | osCommerce 2.2 Modification Help | 1 | 05-26-2004 11:06 AM |
| Verisign Payflow Link Problems | desi0r | osCommerce 2.2 Modification Help | 2 | 04-11-2003 02:34 PM |