Our customer received this message
REMINDER: Payflow integration changes
The following Payflow URLs are scheduled to be deprecated on August 3, 2015:
payflowpro.verisign.com
cr-payflow.verisign.com
payflow.verisign.com
payments.verisign.com
Please click on this link and take the necessary action.
https://www.paypal-knowledge.com/infocenter/index?page=content&widgetview=true&id=FAQ1776&viewlocale...
I have found this code
foreach (array(
'pilot-payflowpro.verisign.com' => 'pilot-payflowpro.paypal.com',
'test-payflow.verisign.com' => 'pilot-payflowpro.paypal.com',
'payflow.verisign.com' => 'payflowpro.paypal.com',
) as $from => $to) {
$installer->run("
UPDATE {$installer->getTable('core/config_data')} SET `value` = REPLACE(`value`, '{$from}', '{$to}')
WHERE `path` = 'payment/verisign/url'
");
}
in
app\code\core\Mage\Paygate\sql\paygate_setup\mysql4-upgrade-0.7.0-0.7.1.php
but I don't find 'payment/verisign/url' path in core_config_data table.
Where to change 'payflow.verisign.com' => 'payflowpro.paypal.com' this code in magento 1.9.1.0
Thanks,