Hi Verisign has officially changed the URL you go to. It's on their main voicemail greetings when you call there. I cannot figure out how to change this in Amember and it's not in the web interface configuration. It must be in the code itself? Can someone help me. My site is down and Verisign cant help. I started a trouble ticket but I will delete or respond on this thread. I just need an answer in the fastest possible time frame so I am posting here too. Thanks LB
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(); }