Results 1 to 2 of 2

Paypal Payflo Pro (formerly Verisign Payflow Pro)

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 ...

      
  1. #1
    osCMax Development Team met00's Avatar
    Join Date
    Oct 2005
    Location
    wherever I happen to be at the moment
    Posts
    854
    Blog Entries
    2
    Rep Power
    21


    Default Paypal Payflo Pro (formerly Verisign Payflow Pro)

    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. #2
    osCMax Development Team met00's Avatar
    Join Date
    Oct 2005
    Location
    wherever I happen to be at the moment
    Posts
    854
    Blog Entries
    2
    Rep Power
    21


    Default Re: Paypal Payflo Pro (formerly Verisign Payflow Pro)

    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'));
    remember to change the comments when you move from test to production!

    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>
    
    <? } ?>
    That should just about do it. Once these changes have been madeyou should be able to use payflow pro with no problems.
    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

Similar Threads

  1. Payflow pro issue.
    By daliernest in forum osCMax v2 Features Discussion
    Replies: 5
    Last Post: 02-27-2007, 08:20 AM
  2. Payflow Pro - verisign payment module help
    By markymrk22 in forum osCommerce 2.2 Modification Help
    Replies: 7
    Last Post: 07-18-2005, 05:22 AM
  3. Payment Modules -where is verisign?
    By studioridge in forum osCMax v1.7 General Mods Discussion
    Replies: 3
    Last Post: 05-29-2004, 01:10 PM
  4. credit card error on verisign payflow pro
    By kfree in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 05-26-2004, 12:06 PM
  5. Verisign Payflow Link Problems
    By desi0r in forum osCommerce 2.2 Modification Help
    Replies: 2
    Last Post: 04-11-2003, 03:34 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •