Payflow Verisign stopped working Amember how change?

Discussion in 'Troubleshooting' started by LittleBrother, Sep 2, 2005.

  1. LittleBrother

    LittleBrother New Member

    Joined:
    Dec 28, 2004
    Messages:
    17
    How do I change the URL at payflow that amember sends to? I dont see this documented but Verisign says they have changed it and we need to change our end. Unfortunately they never sent me notification like they claim they did so my whole site went down hard today and customers are failing purchases left and right.

    Any ideas? I have already read the manual and configuring the payflow link plugin does NOT include the URL that goes to verisign. I am imagining this is a code change somewhere?

    Thanks
    Doug
  2. LittleBrother

    LittleBrother New Member

    Joined:
    Dec 28, 2004
    Messages:
    17
    I found it in a php file plugins/payflowlink/ payflow_link.inc.php and edited it and I think fixed it. By changing the value to this exact value
    https://payments.verisign.com/payflowlink

    See this Verisign Link
    http://support.verisign.com/support/advisories/page_035301.html


    OLD VALUE
    }
    $vars = join('&', $vars1);
    header("Location: https://payflowlink.verisign.com/payflowlink.cfm?$vars");
    exit();
    }


    NEW VALUE
    }
    $vars = join('&', $vars1);
    header("Location: https://payments.verisign.com/payflowlink?$vars");
    exit();
    }

Share This Page