Version Notes
Payline payment module
Download this release
Release Info
Developer | Payline |
Extension | Payline |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
- app/code/community/Monext/Payline/Helper/Data.php +59 -2
- app/code/community/Monext/Payline/Model/Cpt.php +1 -1
- app/code/community/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php +2 -2
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-08.log +0 -126
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-09.log +0 -280
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-10.log +0 -100
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-11.log +0 -70
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-12.log +0 -84
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-15.log +0 -234
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-16.log +0 -44
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-17.log +0 -258
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-18.log +0 -194
- app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-19.log +0 -34
- app/code/community/Monext/Payline/controllers/Adminhtml/ManagecontractsController.php +9 -2
- app/code/community/Monext/Payline/controllers/IndexController.php +66 -20
- app/code/community/Monext/Payline/etc/config.xml +3 -2
- app/code/community/Monext/Payline/etc/system.xml +40 -0
- app/locale/en_US/Monext_Payline.csv +3 -1
- app/locale/fr_FR/Monext_Payline.csv +3 -1
- package.xml +5 -5
- skin/frontend/default/default/images/payline_moyens_paiement/cb.png +0 -0
app/code/community/Monext/Payline/Helper/Data.php
CHANGED
@@ -401,8 +401,15 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
|
|
401 |
}
|
402 |
$this->secondaryContractNumberList = $this->_prepareContractList(false,false);
|
403 |
|
|
|
404 |
$this->customPaymentPageCode = Mage::getStoreConfig($xmlConfigPath.'/custom_payment_page_code');
|
405 |
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
$this->primaryMaxfailRetry = Mage::getStoreConfig($commonConfigPath.'/primary_max_fail_retry');
|
407 |
$this->primaryCallTimeout = Mage::getStoreConfig($commonConfigPath.'/primary_call_timeout');
|
408 |
$this->primaryReplayTimer = Mage::getStoreConfig($commonConfigPath.'/primary_replay_timer');
|
@@ -519,7 +526,7 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
|
|
519 |
if (is_string($result)) {
|
520 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $result);
|
521 |
return '';
|
522 |
-
} elseif (isset($result['result']) && $result['result']['code']!='0000' && $result['result']['code']!='2500' ){
|
523 |
//Back to default
|
524 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' .
|
525 |
'Error while retrieving transaction contract number for transactionId'.' '.$transactionId.' and order '.$orderRef.' error : '.$result['result']['shortMessage']);
|
@@ -591,4 +598,54 @@ class Monext_Payline_Helper_Data extends Mage_Core_Helper_Data {
|
|
591 |
$string = iconv('UTF-8', "ASCII//TRANSLIT", $string);
|
592 |
return $string;
|
593 |
}
|
594 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
}
|
402 |
$this->secondaryContractNumberList = $this->_prepareContractList(false,false);
|
403 |
|
404 |
+
// default template
|
405 |
$this->customPaymentPageCode = Mage::getStoreConfig($xmlConfigPath.'/custom_payment_page_code');
|
406 |
|
407 |
+
// "responsive" template
|
408 |
+
$customTheme = $this->_checkUserAgentAgainstRegexps($xmlConfigPath.'/custom_payment_page_code_ua_regexp');
|
409 |
+
if ($customTheme) {
|
410 |
+
$this->customPaymentPageCode = $customTheme;
|
411 |
+
}
|
412 |
+
|
413 |
$this->primaryMaxfailRetry = Mage::getStoreConfig($commonConfigPath.'/primary_max_fail_retry');
|
414 |
$this->primaryCallTimeout = Mage::getStoreConfig($commonConfigPath.'/primary_call_timeout');
|
415 |
$this->primaryReplayTimer = Mage::getStoreConfig($commonConfigPath.'/primary_replay_timer');
|
526 |
if (is_string($result)) {
|
527 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $result);
|
528 |
return '';
|
529 |
+
} elseif (isset($result['result']) && $result['result']['code']!='0000' && $result['result']['code']!='2500' && $result['result']['code']!='04003'){
|
530 |
//Back to default
|
531 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' .
|
532 |
'Error while retrieving transaction contract number for transactionId'.' '.$transactionId.' and order '.$orderRef.' error : '.$result['result']['shortMessage']);
|
598 |
$string = iconv('UTF-8', "ASCII//TRANSLIT", $string);
|
599 |
return $string;
|
600 |
}
|
601 |
+
|
602 |
+
public function setOrderStatus($order, $status)
|
603 |
+
{
|
604 |
+
$state = Mage::getModel('sales/order_status')->getCollection()
|
605 |
+
->joinStates()
|
606 |
+
->addFieldToFilter('state_table.status', $status)
|
607 |
+
->getFirstItem()
|
608 |
+
->getState();
|
609 |
+
|
610 |
+
if (empty($state)) {
|
611 |
+
$state = Mage_Sales_Model_Order::STATE_PROCESSING;
|
612 |
+
}
|
613 |
+
|
614 |
+
$order->setState($state, $status);
|
615 |
+
}
|
616 |
+
|
617 |
+
protected function _checkUserAgentAgainstRegexps($regexpsConfigPath)
|
618 |
+
{
|
619 |
+
if (empty($_SERVER['HTTP_USER_AGENT'])) {
|
620 |
+
return false;
|
621 |
+
}
|
622 |
+
|
623 |
+
$configValueSerialized = Mage::getStoreConfig($regexpsConfigPath, Mage::app()->getStore());
|
624 |
+
|
625 |
+
if (!$configValueSerialized) {
|
626 |
+
return false;
|
627 |
+
}
|
628 |
+
|
629 |
+
$regexps = @unserialize($configValueSerialized);
|
630 |
+
|
631 |
+
if (empty($regexps)) {
|
632 |
+
return false;
|
633 |
+
}
|
634 |
+
|
635 |
+
return self::getPackageByUserAgent($regexps, $regexpsConfigPath);
|
636 |
+
}
|
637 |
+
|
638 |
+
public static function getPackageByUserAgent(array $rules)
|
639 |
+
{
|
640 |
+
foreach ($rules as $rule) {
|
641 |
+
|
642 |
+
$regexp = '/' . trim($rule['regexp'], '/') . '/';
|
643 |
+
|
644 |
+
if (@preg_match($regexp, $_SERVER['HTTP_USER_AGENT'])) {
|
645 |
+
return $rule['value'];
|
646 |
+
}
|
647 |
+
}
|
648 |
+
|
649 |
+
return false;
|
650 |
+
}
|
651 |
+
}
|
app/code/community/Monext/Payline/Model/Cpt.php
CHANGED
@@ -113,7 +113,7 @@ class Monext_Payline_Model_Cpt extends Mage_Payment_Model_Method_Abstract
|
|
113 |
if (is_string($transDetails)) {
|
114 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $transDetails);
|
115 |
return;
|
116 |
-
} elseif (isset($transDetails['result']) && $transDetails['result']['code']!='0000' && $transDetails['result']['code']!='2500' ){
|
117 |
//Back to default
|
118 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' .
|
119 |
'Error while retrieving transaction contract number for transactionId'.' '.$payment->getCcTransId().' and order '.$orderRef.' error : '.$transDetails['result']['shortMessage']);
|
113 |
if (is_string($transDetails)) {
|
114 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' . $transDetails);
|
115 |
return;
|
116 |
+
} elseif (isset($transDetails['result']) && $transDetails['result']['code']!='0000' && $transDetails['result']['code']!='2500' && $transDetails['result']['code']!='04003'){
|
117 |
//Back to default
|
118 |
Mage::helper('payline/logger')->log('[getTransactionContractNumber] ' .
|
119 |
'Error while retrieving transaction contract number for transactionId'.' '.$payment->getCcTransId().' and order '.$orderRef.' error : '.$transDetails['result']['shortMessage']);
|
app/code/community/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php
CHANGED
@@ -342,7 +342,7 @@ final class Log {
|
|
342 |
class paylineSDK{
|
343 |
|
344 |
// kit version
|
345 |
-
const KIT_VERSION = 'module Magento 1.7.
|
346 |
|
347 |
// trace log
|
348 |
var $paylineTrace;
|
@@ -1633,4 +1633,4 @@ class paylineSDK{
|
|
1633 |
|
1634 |
|
1635 |
}
|
1636 |
-
?>
|
342 |
class paylineSDK{
|
343 |
|
344 |
// kit version
|
345 |
+
const KIT_VERSION = 'module Magento 1.7.4';
|
346 |
|
347 |
// trace log
|
348 |
var $paylineTrace;
|
1633 |
|
1634 |
|
1635 |
}
|
1636 |
+
?>
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-08.log
DELETED
@@ -1,126 +0,0 @@
|
|
1 |
-
2012-10-08 11:58:33 - ----------------------------------------------------------
|
2 |
-
2012-10-08 11:58:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-08 11:58:33 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
4 |
-
2012-10-08 11:58:34 - response return (code 00000)
|
5 |
-
2012-10-08 12:23:38 - ----------------------------------------------------------
|
6 |
-
2012-10-08 12:23:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-08 12:23:38 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
8 |
-
2012-10-08 12:23:39 - response return (code 00000)
|
9 |
-
2012-10-08 12:24:13 - ----------------------------------------------------------
|
10 |
-
2012-10-08 12:24:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-08 12:24:13 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
12 |
-
2012-10-08 12:24:14 - response return (code 00000)
|
13 |
-
2012-10-08 12:24:19 - ----------------------------------------------------------
|
14 |
-
2012-10-08 12:24:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-08 12:24:19 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
16 |
-
2012-10-08 12:24:20 - response return (code 00000)
|
17 |
-
2012-10-08 12:24:34 - ----------------------------------------------------------
|
18 |
-
2012-10-08 12:24:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-08 12:24:34 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
20 |
-
2012-10-08 12:24:34 - response return (code 02500)
|
21 |
-
2012-10-08 12:24:35 - ----------------------------------------------------------
|
22 |
-
2012-10-08 12:24:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-08 12:24:35 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
24 |
-
2012-10-08 12:24:36 - response return (code 02500)
|
25 |
-
2012-10-08 14:27:39 - ----------------------------------------------------------
|
26 |
-
2012-10-08 14:27:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-08 14:28:45 - ----------------------------------------------------------
|
28 |
-
2012-10-08 14:28:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
29 |
-
2012-10-08 14:28:45 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
30 |
-
2012-10-08 14:28:45 - response return (code 00000)
|
31 |
-
2012-10-08 14:34:07 - ----------------------------------------------------------
|
32 |
-
2012-10-08 14:34:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
33 |
-
2012-10-08 14:34:07 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
34 |
-
2012-10-08 14:34:08 - response return (code 00000)
|
35 |
-
2012-10-08 14:35:21 - ----------------------------------------------------------
|
36 |
-
2012-10-08 14:35:21 - paylineSDK::__construct(36472284953602, Ka*******************tt, , , , , 0)
|
37 |
-
2012-10-08 14:35:21 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
38 |
-
2012-10-08 14:35:21 - Exception : Authorization Required
|
39 |
-
2012-10-08 14:40:21 - ----------------------------------------------------------
|
40 |
-
2012-10-08 14:40:21 - paylineSDK::__construct(36472284953602, Ka*******************tt, , , , , 0)
|
41 |
-
2012-10-08 14:40:21 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
42 |
-
2012-10-08 14:40:21 - Exception : Authorization Required
|
43 |
-
2012-10-08 14:40:59 - ----------------------------------------------------------
|
44 |
-
2012-10-08 14:40:59 - paylineSDK::__construct(36472284953602, Ka*******************tt, , , , , 0)
|
45 |
-
2012-10-08 14:40:59 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
46 |
-
2012-10-08 14:41:00 - Exception : Authorization Required
|
47 |
-
2012-10-08 14:41:06 - ----------------------------------------------------------
|
48 |
-
2012-10-08 14:41:06 - paylineSDK::__construct(36472284953602, Ka*******************tt, , , , , 0)
|
49 |
-
2012-10-08 14:41:06 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
50 |
-
2012-10-08 14:41:06 - Exception : Authorization Required
|
51 |
-
2012-10-08 14:41:30 - ----------------------------------------------------------
|
52 |
-
2012-10-08 14:41:30 - paylineSDK::__construct(36472284953602, Ka****************ot, test, , , , 0)
|
53 |
-
2012-10-08 14:41:30 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
54 |
-
2012-10-08 14:41:30 - response return (code 00000)
|
55 |
-
2012-10-08 14:41:45 - ----------------------------------------------------------
|
56 |
-
2012-10-08 14:41:45 - paylineSDK::__construct(36472284953602, Ka****************ot, test, , , , 0)
|
57 |
-
2012-10-08 14:41:45 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
58 |
-
2012-10-08 14:41:47 - response return (code 00000)
|
59 |
-
2012-10-08 14:42:31 - ----------------------------------------------------------
|
60 |
-
2012-10-08 14:42:31 - paylineSDK::__construct(36472284953602, Ka****************ot, test.com, 123, login, pass, 0)
|
61 |
-
2012-10-08 14:42:31 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
62 |
-
2012-10-08 14:42:32 - response return (code 00000)
|
63 |
-
2012-10-08 14:51:53 - ----------------------------------------------------------
|
64 |
-
2012-10-08 14:51:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
65 |
-
2012-10-08 14:51:53 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
66 |
-
2012-10-08 14:51:53 - response return (code 00000)
|
67 |
-
2012-10-08 14:52:34 - ----------------------------------------------------------
|
68 |
-
2012-10-08 14:52:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
69 |
-
2012-10-08 14:52:34 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
70 |
-
2012-10-08 14:52:34 - response return (code 00000)
|
71 |
-
2012-10-08 14:53:18 - ----------------------------------------------------------
|
72 |
-
2012-10-08 14:53:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
73 |
-
2012-10-08 14:53:18 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
74 |
-
2012-10-08 14:53:18 - response return (code 00000)
|
75 |
-
2012-10-08 14:54:00 - ----------------------------------------------------------
|
76 |
-
2012-10-08 14:54:00 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
77 |
-
2012-10-08 14:54:00 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
78 |
-
2012-10-08 14:54:01 - response return (code 00000)
|
79 |
-
2012-10-08 14:54:54 - ----------------------------------------------------------
|
80 |
-
2012-10-08 14:54:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
81 |
-
2012-10-08 14:54:54 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
82 |
-
2012-10-08 14:54:54 - response return (code 00000)
|
83 |
-
2012-10-08 14:55:04 - ----------------------------------------------------------
|
84 |
-
2012-10-08 14:55:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
85 |
-
2012-10-08 14:55:04 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
86 |
-
2012-10-08 14:55:05 - response return (code 00000)
|
87 |
-
2012-10-08 14:55:26 - ----------------------------------------------------------
|
88 |
-
2012-10-08 14:55:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
89 |
-
2012-10-08 14:55:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
90 |
-
2012-10-08 14:55:27 - response return (code 00000)
|
91 |
-
2012-10-08 15:57:09 - ----------------------------------------------------------
|
92 |
-
2012-10-08 15:57:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
93 |
-
2012-10-08 15:57:09 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
94 |
-
2012-10-08 15:57:10 - response return (code 00000)
|
95 |
-
2012-10-08 15:57:26 - ----------------------------------------------------------
|
96 |
-
2012-10-08 15:57:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
97 |
-
2012-10-08 15:57:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
98 |
-
2012-10-08 15:57:27 - response return (code 00000)
|
99 |
-
2012-10-08 15:58:41 - ----------------------------------------------------------
|
100 |
-
2012-10-08 15:58:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
101 |
-
2012-10-08 15:58:41 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
102 |
-
2012-10-08 15:58:41 - response return (code 00000)
|
103 |
-
2012-10-08 15:58:58 - ----------------------------------------------------------
|
104 |
-
2012-10-08 15:58:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
105 |
-
2012-10-08 15:58:58 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
106 |
-
2012-10-08 15:58:59 - response return (code 00000)
|
107 |
-
2012-10-08 15:59:39 - ----------------------------------------------------------
|
108 |
-
2012-10-08 15:59:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
109 |
-
2012-10-08 15:59:39 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
110 |
-
2012-10-08 15:59:39 - response return (code 00000)
|
111 |
-
2012-10-08 15:59:42 - ----------------------------------------------------------
|
112 |
-
2012-10-08 15:59:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
113 |
-
2012-10-08 15:59:42 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
114 |
-
2012-10-08 15:59:42 - response return (code 00000)
|
115 |
-
2012-10-08 15:59:44 - ----------------------------------------------------------
|
116 |
-
2012-10-08 15:59:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
117 |
-
2012-10-08 15:59:44 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
118 |
-
2012-10-08 15:59:44 - response return (code 00000)
|
119 |
-
2012-10-08 15:59:53 - ----------------------------------------------------------
|
120 |
-
2012-10-08 15:59:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
121 |
-
2012-10-08 15:59:53 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
122 |
-
2012-10-08 15:59:54 - response return (code 00000)
|
123 |
-
2012-10-08 15:59:59 - ----------------------------------------------------------
|
124 |
-
2012-10-08 15:59:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
125 |
-
2012-10-08 15:59:59 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
126 |
-
2012-10-08 15:59:59 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-09.log
DELETED
@@ -1,280 +0,0 @@
|
|
1 |
-
2012-10-09 7:37:38 - ----------------------------------------------------------
|
2 |
-
2012-10-09 7:37:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-09 7:37:38 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-09 7:37:39 - response return (code 00000)
|
5 |
-
2012-10-09 7:39:33 - ----------------------------------------------------------
|
6 |
-
2012-10-09 7:39:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-09 7:39:33 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
8 |
-
2012-10-09 7:39:33 - response return (code 00000)
|
9 |
-
2012-10-09 7:40:07 - ----------------------------------------------------------
|
10 |
-
2012-10-09 7:40:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-09 7:40:07 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-09 7:40:07 - response return (code 00000)
|
13 |
-
2012-10-09 7:45:29 - ----------------------------------------------------------
|
14 |
-
2012-10-09 7:45:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-09 7:45:29 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
16 |
-
2012-10-09 7:45:30 - response return (code 00000)
|
17 |
-
2012-10-09 7:46:24 - ----------------------------------------------------------
|
18 |
-
2012-10-09 7:46:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-09 7:46:24 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
20 |
-
2012-10-09 7:46:25 - response return (code 00000)
|
21 |
-
2012-10-09 7:47:32 - ----------------------------------------------------------
|
22 |
-
2012-10-09 7:47:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-09 7:47:32 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
24 |
-
2012-10-09 7:47:33 - response return (code 00000)
|
25 |
-
2012-10-09 7:48:26 - ----------------------------------------------------------
|
26 |
-
2012-10-09 7:48:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-09 7:48:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
28 |
-
2012-10-09 7:48:26 - response return (code 00000)
|
29 |
-
2012-10-09 7:54:14 - ----------------------------------------------------------
|
30 |
-
2012-10-09 7:54:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-09 7:54:15 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
32 |
-
2012-10-09 7:54:15 - response return (code 00000)
|
33 |
-
2012-10-09 7:56:29 - ----------------------------------------------------------
|
34 |
-
2012-10-09 7:56:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
35 |
-
2012-10-09 7:56:29 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
36 |
-
2012-10-09 7:56:29 - response return (code 00000)
|
37 |
-
2012-10-09 8:02:04 - ----------------------------------------------------------
|
38 |
-
2012-10-09 8:02:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-09 8:02:04 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
40 |
-
2012-10-09 8:02:05 - response return (code 00000)
|
41 |
-
2012-10-09 8:04:20 - ----------------------------------------------------------
|
42 |
-
2012-10-09 8:04:20 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-09 8:04:20 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
44 |
-
2012-10-09 8:04:21 - response return (code 00000)
|
45 |
-
2012-10-09 8:06:11 - ----------------------------------------------------------
|
46 |
-
2012-10-09 8:06:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-09 8:06:11 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
48 |
-
2012-10-09 8:06:11 - response return (code 00000)
|
49 |
-
2012-10-09 8:07:16 - ----------------------------------------------------------
|
50 |
-
2012-10-09 8:07:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-09 8:07:16 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
52 |
-
2012-10-09 8:07:17 - response return (code 00000)
|
53 |
-
2012-10-09 8:07:37 - ----------------------------------------------------------
|
54 |
-
2012-10-09 8:07:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-09 8:07:37 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
56 |
-
2012-10-09 8:07:38 - response return (code 00000)
|
57 |
-
2012-10-09 11:18:45 - ----------------------------------------------------------
|
58 |
-
2012-10-09 11:18:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-09 11:18:45 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
60 |
-
2012-10-09 11:18:45 - response return (code 02500)
|
61 |
-
2012-10-09 11:18:50 - ----------------------------------------------------------
|
62 |
-
2012-10-09 11:18:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
63 |
-
2012-10-09 11:18:50 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
64 |
-
2012-10-09 11:18:50 - response return (code 02500)
|
65 |
-
2012-10-09 11:19:08 - ----------------------------------------------------------
|
66 |
-
2012-10-09 11:19:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
67 |
-
2012-10-09 11:19:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
68 |
-
2012-10-09 11:19:08 - response return (code 00000)
|
69 |
-
2012-10-09 11:19:30 - ----------------------------------------------------------
|
70 |
-
2012-10-09 11:19:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
71 |
-
2012-10-09 11:19:30 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
72 |
-
2012-10-09 11:19:32 - response return (code 00000)
|
73 |
-
2012-10-09 11:19:37 - ----------------------------------------------------------
|
74 |
-
2012-10-09 11:19:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
75 |
-
2012-10-09 11:19:37 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
76 |
-
2012-10-09 11:19:38 - response return (code 00000)
|
77 |
-
2012-10-09 11:21:54 - ----------------------------------------------------------
|
78 |
-
2012-10-09 11:21:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-09 11:21:54 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
80 |
-
2012-10-09 11:21:55 - response return (code 02500)
|
81 |
-
2012-10-09 11:21:55 - ----------------------------------------------------------
|
82 |
-
2012-10-09 11:21:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
83 |
-
2012-10-09 11:21:55 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
84 |
-
2012-10-09 11:21:56 - response return (code 02500)
|
85 |
-
2012-10-09 12:31:48 - ----------------------------------------------------------
|
86 |
-
2012-10-09 12:31:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
87 |
-
2012-10-09 12:31:48 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
88 |
-
2012-10-09 12:31:49 - response return (code 02500)
|
89 |
-
2012-10-09 12:32:06 - ----------------------------------------------------------
|
90 |
-
2012-10-09 12:32:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
91 |
-
2012-10-09 12:32:06 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
92 |
-
2012-10-09 12:32:07 - response return (code 00000)
|
93 |
-
2012-10-09 12:32:23 - ----------------------------------------------------------
|
94 |
-
2012-10-09 12:32:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
95 |
-
2012-10-09 12:32:23 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
96 |
-
2012-10-09 12:32:24 - response return (code 00000)
|
97 |
-
2012-10-09 13:15:30 - ----------------------------------------------------------
|
98 |
-
2012-10-09 13:15:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
99 |
-
2012-10-09 13:15:30 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
100 |
-
2012-10-09 13:15:31 - response return (code 00000)
|
101 |
-
2012-10-09 13:21:45 - ----------------------------------------------------------
|
102 |
-
2012-10-09 13:21:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
103 |
-
2012-10-09 13:21:45 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
104 |
-
2012-10-09 13:21:45 - response return (code 02319)
|
105 |
-
2012-10-09 13:21:57 - ----------------------------------------------------------
|
106 |
-
2012-10-09 13:21:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
107 |
-
2012-10-09 13:21:57 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
108 |
-
2012-10-09 13:21:58 - response return (code 02500)
|
109 |
-
2012-10-09 13:22:19 - ----------------------------------------------------------
|
110 |
-
2012-10-09 13:22:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
111 |
-
2012-10-09 13:22:19 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
112 |
-
2012-10-09 13:22:20 - response return (code 00000)
|
113 |
-
2012-10-09 13:22:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
114 |
-
2012-10-09 13:22:20 - response return (code 00000)
|
115 |
-
2012-10-09 13:22:21 - webServiceRequest(createWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
116 |
-
2012-10-09 13:22:22 - response return (code 02500)
|
117 |
-
2012-10-09 13:22:26 - ----------------------------------------------------------
|
118 |
-
2012-10-09 13:22:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
119 |
-
2012-10-09 13:22:26 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
120 |
-
2012-10-09 13:22:27 - response return (code 02500)
|
121 |
-
2012-10-09 13:31:24 - ----------------------------------------------------------
|
122 |
-
2012-10-09 13:31:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
123 |
-
2012-10-09 13:31:24 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
124 |
-
2012-10-09 13:31:25 - response return (code 02500)
|
125 |
-
2012-10-09 13:31:35 - ----------------------------------------------------------
|
126 |
-
2012-10-09 13:31:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
127 |
-
2012-10-09 13:32:15 - ----------------------------------------------------------
|
128 |
-
2012-10-09 13:32:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
129 |
-
2012-10-09 13:32:15 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
130 |
-
2012-10-09 13:32:17 - response return (code 00000)
|
131 |
-
2012-10-09 13:32:34 - ----------------------------------------------------------
|
132 |
-
2012-10-09 13:32:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
133 |
-
2012-10-09 13:32:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
134 |
-
2012-10-09 13:32:34 - response return (code 00000)
|
135 |
-
2012-10-09 13:32:41 - ----------------------------------------------------------
|
136 |
-
2012-10-09 13:32:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
137 |
-
2012-10-09 13:32:41 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
138 |
-
2012-10-09 13:32:42 - response return (code 02303)
|
139 |
-
2012-10-09 13:33:45 - ----------------------------------------------------------
|
140 |
-
2012-10-09 13:33:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
141 |
-
2012-10-09 13:33:45 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
142 |
-
2012-10-09 13:33:46 - response return (code 02303)
|
143 |
-
2012-10-09 13:33:49 - ----------------------------------------------------------
|
144 |
-
2012-10-09 13:33:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
145 |
-
2012-10-09 13:33:49 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
146 |
-
2012-10-09 13:33:49 - response return (code 02303)
|
147 |
-
2012-10-09 13:33:54 - ----------------------------------------------------------
|
148 |
-
2012-10-09 13:33:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
149 |
-
2012-10-09 13:33:54 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
150 |
-
2012-10-09 13:33:54 - response return (code 02303)
|
151 |
-
2012-10-09 13:33:54 - ----------------------------------------------------------
|
152 |
-
2012-10-09 13:33:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
153 |
-
2012-10-09 13:33:54 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
154 |
-
2012-10-09 13:33:55 - response return (code 00000)
|
155 |
-
2012-10-09 13:34:35 - ----------------------------------------------------------
|
156 |
-
2012-10-09 13:34:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
157 |
-
2012-10-09 13:34:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
158 |
-
2012-10-09 13:34:35 - response return (code 02319)
|
159 |
-
2012-10-09 13:34:41 - ----------------------------------------------------------
|
160 |
-
2012-10-09 13:34:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
161 |
-
2012-10-09 13:34:41 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
162 |
-
2012-10-09 13:34:42 - response return (code 02303)
|
163 |
-
2012-10-09 13:34:46 - ----------------------------------------------------------
|
164 |
-
2012-10-09 13:34:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
165 |
-
2012-10-09 13:34:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
166 |
-
2012-10-09 13:34:47 - response return (code 02303)
|
167 |
-
2012-10-09 13:36:07 - ----------------------------------------------------------
|
168 |
-
2012-10-09 13:36:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
169 |
-
2012-10-09 13:36:07 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
170 |
-
2012-10-09 13:36:08 - response return (code 02500)
|
171 |
-
2012-10-09 13:37:58 - ----------------------------------------------------------
|
172 |
-
2012-10-09 13:37:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
173 |
-
2012-10-09 13:37:58 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
174 |
-
2012-10-09 13:38:00 - response return (code 02303)
|
175 |
-
2012-10-09 13:38:03 - ----------------------------------------------------------
|
176 |
-
2012-10-09 13:38:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
177 |
-
2012-10-09 13:38:03 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
178 |
-
2012-10-09 13:38:05 - response return (code 00000)
|
179 |
-
2012-10-09 13:38:25 - ----------------------------------------------------------
|
180 |
-
2012-10-09 13:38:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
181 |
-
2012-10-09 13:38:25 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
182 |
-
2012-10-09 13:38:25 - response return (code 00000)
|
183 |
-
2012-10-09 13:38:48 - ----------------------------------------------------------
|
184 |
-
2012-10-09 13:38:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
185 |
-
2012-10-09 13:38:48 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
186 |
-
2012-10-09 13:38:49 - response return (code 00000)
|
187 |
-
2012-10-09 13:38:52 - ----------------------------------------------------------
|
188 |
-
2012-10-09 13:38:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
189 |
-
2012-10-09 13:38:52 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
190 |
-
2012-10-09 13:38:53 - response return (code 02500)
|
191 |
-
2012-10-09 13:41:38 - ----------------------------------------------------------
|
192 |
-
2012-10-09 13:41:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
193 |
-
2012-10-09 13:41:38 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
194 |
-
2012-10-09 13:41:39 - response return (code 02500)
|
195 |
-
2012-10-09 13:41:41 - ----------------------------------------------------------
|
196 |
-
2012-10-09 13:41:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
197 |
-
2012-10-09 13:41:41 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
198 |
-
2012-10-09 13:41:42 - Exception : 2101
|
199 |
-
2012-10-09 13:42:47 - ----------------------------------------------------------
|
200 |
-
2012-10-09 13:42:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
201 |
-
2012-10-09 13:42:47 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
202 |
-
2012-10-09 13:42:47 - Exception : 2101
|
203 |
-
2012-10-09 13:44:59 - ----------------------------------------------------------
|
204 |
-
2012-10-09 13:44:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
205 |
-
2012-10-09 13:44:59 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
206 |
-
2012-10-09 13:45:00 - response return (code 00000)
|
207 |
-
2012-10-09 13:45:28 - ----------------------------------------------------------
|
208 |
-
2012-10-09 13:45:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
209 |
-
2012-10-09 13:45:28 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
210 |
-
2012-10-09 13:45:30 - response return (code 00000)
|
211 |
-
2012-10-09 13:48:12 - ----------------------------------------------------------
|
212 |
-
2012-10-09 13:48:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
213 |
-
2012-10-09 13:48:12 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
214 |
-
2012-10-09 13:48:13 - response return (code 02500)
|
215 |
-
2012-10-09 13:48:29 - ----------------------------------------------------------
|
216 |
-
2012-10-09 13:48:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
217 |
-
2012-10-09 13:48:29 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
218 |
-
2012-10-09 13:48:29 - response return (code 00000)
|
219 |
-
2012-10-09 13:48:42 - ----------------------------------------------------------
|
220 |
-
2012-10-09 13:48:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
221 |
-
2012-10-09 13:48:42 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
222 |
-
2012-10-09 13:48:43 - response return (code 00000)
|
223 |
-
2012-10-09 13:48:46 - ----------------------------------------------------------
|
224 |
-
2012-10-09 13:48:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
225 |
-
2012-10-09 13:48:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
226 |
-
2012-10-09 13:48:46 - response return (code 02500)
|
227 |
-
2012-10-09 13:49:12 - ----------------------------------------------------------
|
228 |
-
2012-10-09 13:49:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
229 |
-
2012-10-09 13:49:12 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
230 |
-
2012-10-09 13:49:12 - response return (code 00000)
|
231 |
-
2012-10-09 13:49:15 - ----------------------------------------------------------
|
232 |
-
2012-10-09 13:49:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
233 |
-
2012-10-09 13:49:15 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
234 |
-
2012-10-09 13:49:15 - response return (code 02319)
|
235 |
-
2012-10-09 13:51:01 - ----------------------------------------------------------
|
236 |
-
2012-10-09 13:51:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
237 |
-
2012-10-09 13:51:01 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
238 |
-
2012-10-09 13:51:01 - response return (code 02500)
|
239 |
-
2012-10-09 13:52:11 - ----------------------------------------------------------
|
240 |
-
2012-10-09 13:52:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
241 |
-
2012-10-09 13:52:11 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
242 |
-
2012-10-09 13:52:12 - response return (code 00000)
|
243 |
-
2012-10-09 13:52:15 - ----------------------------------------------------------
|
244 |
-
2012-10-09 13:52:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
245 |
-
2012-10-09 13:52:15 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
246 |
-
2012-10-09 13:52:16 - response return (code 02319)
|
247 |
-
2012-10-09 14:13:34 - ----------------------------------------------------------
|
248 |
-
2012-10-09 14:13:34 - paylineSDK::__construct(36472284953602, Ka*******************tt, , , , , 0)
|
249 |
-
2012-10-09 14:13:34 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
250 |
-
2012-10-09 14:13:34 - Exception : Authorization Required
|
251 |
-
2012-10-09 14:14:45 - ----------------------------------------------------------
|
252 |
-
2012-10-09 14:14:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
253 |
-
2012-10-09 14:14:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
254 |
-
2012-10-09 14:14:45 - response return (code 02303)
|
255 |
-
2012-10-09 14:16:06 - ----------------------------------------------------------
|
256 |
-
2012-10-09 14:16:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
257 |
-
2012-10-09 14:16:06 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
258 |
-
2012-10-09 14:16:06 - response return (code 00000)
|
259 |
-
2012-10-09 14:16:12 - ----------------------------------------------------------
|
260 |
-
2012-10-09 14:16:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
261 |
-
2012-10-09 14:16:12 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
262 |
-
2012-10-09 14:16:13 - response return (code 00000)
|
263 |
-
2012-10-09 14:57:54 - ----------------------------------------------------------
|
264 |
-
2012-10-09 14:57:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
265 |
-
2012-10-09 14:57:54 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
266 |
-
2012-10-09 14:57:55 - response return (code 02303)
|
267 |
-
2012-10-09 14:57:56 - ----------------------------------------------------------
|
268 |
-
2012-10-09 14:57:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
269 |
-
2012-10-09 14:57:56 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
270 |
-
2012-10-09 14:57:57 - response return (code 00000)
|
271 |
-
2012-10-09 15:00:15 - ----------------------------------------------------------
|
272 |
-
2012-10-09 15:00:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
273 |
-
2012-10-09 15:41:05 - ----------------------------------------------------------
|
274 |
-
2012-10-09 15:41:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
275 |
-
2012-10-09 15:41:05 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
276 |
-
2012-10-09 15:41:06 - response return (code 00000)
|
277 |
-
2012-10-09 15:42:27 - ----------------------------------------------------------
|
278 |
-
2012-10-09 15:42:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
279 |
-
2012-10-09 15:42:27 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
280 |
-
2012-10-09 15:42:27 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-10.log
DELETED
@@ -1,100 +0,0 @@
|
|
1 |
-
2012-10-10 8:26:03 - ----------------------------------------------------------
|
2 |
-
2012-10-10 8:26:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-10 8:26:03 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-10 8:26:04 - response return (code 00000)
|
5 |
-
2012-10-10 8:27:24 - ----------------------------------------------------------
|
6 |
-
2012-10-10 8:27:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-10 8:27:24 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
8 |
-
2012-10-10 8:27:25 - response return (code 00000)
|
9 |
-
2012-10-10 9:16:21 - ----------------------------------------------------------
|
10 |
-
2012-10-10 9:16:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-10 9:16:21 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-10 9:16:21 - response return (code 00000)
|
13 |
-
2012-10-10 9:38:06 - ----------------------------------------------------------
|
14 |
-
2012-10-10 9:38:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-10 9:38:06 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
16 |
-
2012-10-10 9:38:07 - response return (code 00000)
|
17 |
-
2012-10-10 9:38:13 - ----------------------------------------------------------
|
18 |
-
2012-10-10 9:38:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-10 9:38:13 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
20 |
-
2012-10-10 9:38:13 - response return (code 02319)
|
21 |
-
2012-10-10 9:38:27 - ----------------------------------------------------------
|
22 |
-
2012-10-10 9:38:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-10 9:38:27 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
24 |
-
2012-10-10 9:38:27 - response return (code 00000)
|
25 |
-
2012-10-10 9:49:43 - ----------------------------------------------------------
|
26 |
-
2012-10-10 9:49:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-10 9:49:43 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
28 |
-
2012-10-10 9:49:44 - response return (code 00000)
|
29 |
-
2012-10-10 9:50:33 - ----------------------------------------------------------
|
30 |
-
2012-10-10 9:50:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-10 9:50:33 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
32 |
-
2012-10-10 9:50:33 - response return (code 00000)
|
33 |
-
2012-10-10 9:51:17 - ----------------------------------------------------------
|
34 |
-
2012-10-10 9:51:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
35 |
-
2012-10-10 9:51:17 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
36 |
-
2012-10-10 9:51:17 - response return (code 00000)
|
37 |
-
2012-10-10 10:09:54 - ----------------------------------------------------------
|
38 |
-
2012-10-10 10:09:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-10 10:09:54 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
40 |
-
2012-10-10 10:09:55 - response return (code 00000)
|
41 |
-
2012-10-10 12:40:05 - ----------------------------------------------------------
|
42 |
-
2012-10-10 12:40:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-10 12:40:05 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
44 |
-
2012-10-10 12:40:18 - response return (code 00000)
|
45 |
-
2012-10-10 12:50:07 - ----------------------------------------------------------
|
46 |
-
2012-10-10 12:50:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-10 12:50:07 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
48 |
-
2012-10-10 12:50:08 - response return (code 00000)
|
49 |
-
2012-10-10 12:50:16 - ----------------------------------------------------------
|
50 |
-
2012-10-10 12:50:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-10 12:50:16 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
52 |
-
2012-10-10 12:50:16 - response return (code 00000)
|
53 |
-
2012-10-10 12:52:19 - ----------------------------------------------------------
|
54 |
-
2012-10-10 12:52:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-10 12:52:19 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
56 |
-
2012-10-10 12:52:20 - response return (code 00000)
|
57 |
-
2012-10-10 12:54:18 - ----------------------------------------------------------
|
58 |
-
2012-10-10 12:54:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-10 12:54:18 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
60 |
-
2012-10-10 12:54:19 - response return (code 00000)
|
61 |
-
2012-10-10 12:54:52 - ----------------------------------------------------------
|
62 |
-
2012-10-10 12:54:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
63 |
-
2012-10-10 12:54:52 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
64 |
-
2012-10-10 12:54:53 - response return (code 00000)
|
65 |
-
2012-10-10 13:10:02 - ----------------------------------------------------------
|
66 |
-
2012-10-10 13:10:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
67 |
-
2012-10-10 13:10:02 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
68 |
-
2012-10-10 13:10:03 - response return (code 00000)
|
69 |
-
2012-10-10 14:05:18 - ----------------------------------------------------------
|
70 |
-
2012-10-10 14:05:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
71 |
-
2012-10-10 14:05:18 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
72 |
-
2012-10-10 14:05:19 - response return (code 00000)
|
73 |
-
2012-10-10 14:05:37 - ----------------------------------------------------------
|
74 |
-
2012-10-10 14:05:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
75 |
-
2012-10-10 14:05:37 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
76 |
-
2012-10-10 14:05:38 - response return (code 00000)
|
77 |
-
2012-10-10 14:11:26 - ----------------------------------------------------------
|
78 |
-
2012-10-10 14:11:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-10 14:11:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
80 |
-
2012-10-10 14:11:27 - response return (code 00000)
|
81 |
-
2012-10-10 14:12:16 - ----------------------------------------------------------
|
82 |
-
2012-10-10 14:12:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
83 |
-
2012-10-10 14:12:16 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
84 |
-
2012-10-10 14:12:17 - response return (code 00000)
|
85 |
-
2012-10-10 14:12:39 - ----------------------------------------------------------
|
86 |
-
2012-10-10 14:12:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
87 |
-
2012-10-10 14:12:39 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
88 |
-
2012-10-10 14:12:39 - response return (code 00000)
|
89 |
-
2012-10-10 14:13:21 - ----------------------------------------------------------
|
90 |
-
2012-10-10 14:13:21 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
91 |
-
2012-10-10 14:13:21 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
92 |
-
2012-10-10 14:13:21 - response return (code 00000)
|
93 |
-
2012-10-10 14:17:50 - ----------------------------------------------------------
|
94 |
-
2012-10-10 14:17:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
95 |
-
2012-10-10 14:17:50 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
96 |
-
2012-10-10 14:17:51 - response return (code 00000)
|
97 |
-
2012-10-10 14:18:11 - ----------------------------------------------------------
|
98 |
-
2012-10-10 14:18:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
99 |
-
2012-10-10 14:18:11 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
100 |
-
2012-10-10 14:18:12 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-11.log
DELETED
@@ -1,70 +0,0 @@
|
|
1 |
-
2012-10-11 7:49:51 - ----------------------------------------------------------
|
2 |
-
2012-10-11 7:49:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-11 7:49:51 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-11 7:49:53 - response return (code 00000)
|
5 |
-
2012-10-11 8:09:22 - ----------------------------------------------------------
|
6 |
-
2012-10-11 8:09:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-11 8:09:22 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
8 |
-
2012-10-11 8:09:23 - response return (code 00000)
|
9 |
-
2012-10-11 8:09:34 - ----------------------------------------------------------
|
10 |
-
2012-10-11 8:09:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-11 8:09:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
12 |
-
2012-10-11 8:09:35 - response return (code 02319)
|
13 |
-
2012-10-11 8:44:26 - ----------------------------------------------------------
|
14 |
-
2012-10-11 8:44:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-11 8:44:26 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
16 |
-
2012-10-11 8:44:28 - response return (code 00000)
|
17 |
-
2012-10-11 8:49:49 - ----------------------------------------------------------
|
18 |
-
2012-10-11 8:49:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-11 8:49:49 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
20 |
-
2012-10-11 8:49:49 - response return (code 02319)
|
21 |
-
2012-10-11 8:50:29 - ----------------------------------------------------------
|
22 |
-
2012-10-11 8:50:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-11 8:50:29 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
24 |
-
2012-10-11 8:50:30 - response return (code 00000)
|
25 |
-
2012-10-11 8:50:36 - ----------------------------------------------------------
|
26 |
-
2012-10-11 8:50:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-11 8:50:36 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
28 |
-
2012-10-11 8:50:37 - response return (code 02319)
|
29 |
-
2012-10-11 8:50:50 - ----------------------------------------------------------
|
30 |
-
2012-10-11 8:50:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-11 8:50:50 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
32 |
-
2012-10-11 8:50:50 - response return (code 00000)
|
33 |
-
2012-10-11 8:50:56 - ----------------------------------------------------------
|
34 |
-
2012-10-11 8:50:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
35 |
-
2012-10-11 8:50:56 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
36 |
-
2012-10-11 8:50:56 - response return (code 02319)
|
37 |
-
2012-10-11 8:53:46 - ----------------------------------------------------------
|
38 |
-
2012-10-11 8:53:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-11 8:53:46 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
40 |
-
2012-10-11 8:53:48 - response return (code 00000)
|
41 |
-
2012-10-11 8:54:08 - ----------------------------------------------------------
|
42 |
-
2012-10-11 8:54:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-11 8:54:08 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
44 |
-
2012-10-11 8:54:12 - response return (code 02500)
|
45 |
-
2012-10-11 8:54:13 - ----------------------------------------------------------
|
46 |
-
2012-10-11 8:54:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-11 8:54:13 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
48 |
-
2012-10-11 8:54:14 - response return (code 02500)
|
49 |
-
2012-10-11 8:54:29 - ----------------------------------------------------------
|
50 |
-
2012-10-11 8:54:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-11 8:54:29 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
52 |
-
2012-10-11 8:54:30 - response return (code 00000)
|
53 |
-
2012-10-11 8:54:39 - ----------------------------------------------------------
|
54 |
-
2012-10-11 8:54:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-11 8:54:39 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
56 |
-
2012-10-11 8:54:40 - response return (code 02319)
|
57 |
-
2012-10-11 15:32:44 - ----------------------------------------------------------
|
58 |
-
2012-10-11 15:32:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-11 15:32:44 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
60 |
-
2012-10-11 15:32:48 - response return (code 02500)
|
61 |
-
2012-10-11 15:33:59 - ----------------------------------------------------------
|
62 |
-
2012-10-11 15:33:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
63 |
-
2012-10-11 15:33:59 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
64 |
-
2012-10-11 15:34:00 - response return (code 01110)
|
65 |
-
2012-10-11 15:36:30 - ----------------------------------------------------------
|
66 |
-
2012-10-11 15:36:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
67 |
-
2012-10-11 15:36:30 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
68 |
-
2012-10-11 15:36:31 - response return (code 00000)
|
69 |
-
2012-10-11 15:36:31 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
70 |
-
2012-10-11 15:36:32 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-12.log
DELETED
@@ -1,84 +0,0 @@
|
|
1 |
-
2012-10-12 7:43:26 - ----------------------------------------------------------
|
2 |
-
2012-10-12 7:43:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-12 7:43:26 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-12 7:43:27 - response return (code 00000)
|
5 |
-
2012-10-12 8:21:25 - ----------------------------------------------------------
|
6 |
-
2012-10-12 8:21:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-12 8:21:25 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
8 |
-
2012-10-12 8:21:25 - response return (code 00000)
|
9 |
-
2012-10-12 8:22:09 - ----------------------------------------------------------
|
10 |
-
2012-10-12 8:22:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-12 8:22:09 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-12 8:22:09 - response return (code 00000)
|
13 |
-
2012-10-12 8:23:38 - ----------------------------------------------------------
|
14 |
-
2012-10-12 8:23:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-12 8:23:38 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
16 |
-
2012-10-12 8:23:38 - response return (code 00000)
|
17 |
-
2012-10-12 8:24:17 - ----------------------------------------------------------
|
18 |
-
2012-10-12 8:24:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-12 8:24:17 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
20 |
-
2012-10-12 8:24:18 - response return (code 00000)
|
21 |
-
2012-10-12 8:25:29 - ----------------------------------------------------------
|
22 |
-
2012-10-12 8:25:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-12 8:25:29 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
24 |
-
2012-10-12 8:25:30 - response return (code 00000)
|
25 |
-
2012-10-12 8:26:02 - ----------------------------------------------------------
|
26 |
-
2012-10-12 8:26:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-12 8:26:02 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
28 |
-
2012-10-12 8:26:02 - response return (code 00000)
|
29 |
-
2012-10-12 8:27:32 - ----------------------------------------------------------
|
30 |
-
2012-10-12 8:27:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-12 8:27:32 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
32 |
-
2012-10-12 8:27:33 - response return (code 00000)
|
33 |
-
2012-10-12 8:38:20 - ----------------------------------------------------------
|
34 |
-
2012-10-12 8:38:20 - paylineSDK::__construct(36472284953602, Ka********************tt, , , , , 0)
|
35 |
-
2012-10-12 8:38:20 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
36 |
-
2012-10-12 8:38:21 - Exception : Authorization Required
|
37 |
-
2012-10-12 8:38:37 - ----------------------------------------------------------
|
38 |
-
2012-10-12 8:38:37 - paylineSDK::__construct(36472284953602, Ka********************tt, , , , , 0)
|
39 |
-
2012-10-12 8:38:37 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
40 |
-
2012-10-12 8:38:38 - Exception : Authorization Required
|
41 |
-
2012-10-12 8:40:41 - ----------------------------------------------------------
|
42 |
-
2012-10-12 8:40:41 - paylineSDK::__construct(36472284953602, Ka****************ot, www.test.fr, 123, test, test, 0)
|
43 |
-
2012-10-12 8:40:41 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
44 |
-
2012-10-12 8:40:42 - response return (code 00000)
|
45 |
-
2012-10-12 9:31:46 - ----------------------------------------------------------
|
46 |
-
2012-10-12 9:31:46 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-12 9:31:46 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
48 |
-
2012-10-12 9:31:47 - response return (code 02500)
|
49 |
-
2012-10-12 9:32:19 - ----------------------------------------------------------
|
50 |
-
2012-10-12 9:32:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-12 9:32:19 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
52 |
-
2012-10-12 9:32:20 - response return (code 00000)
|
53 |
-
2012-10-12 9:32:20 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
54 |
-
2012-10-12 9:32:21 - response return (code 00000)
|
55 |
-
2012-10-12 12:34:08 - ----------------------------------------------------------
|
56 |
-
2012-10-12 12:34:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
57 |
-
2012-10-12 12:34:08 - webServiceRequest(getMerchantSettings) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
58 |
-
2012-10-12 12:34:08 - response return (code 00000)
|
59 |
-
2012-10-12 14:07:44 - ----------------------------------------------------------
|
60 |
-
2012-10-12 14:07:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
61 |
-
2012-10-12 14:07:44 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
62 |
-
2012-10-12 14:07:45 - response return (code 02303)
|
63 |
-
2012-10-12 14:09:24 - ----------------------------------------------------------
|
64 |
-
2012-10-12 14:09:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
65 |
-
2012-10-12 14:09:24 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
66 |
-
2012-10-12 14:09:25 - response return (code 02303)
|
67 |
-
2012-10-12 14:10:31 - ----------------------------------------------------------
|
68 |
-
2012-10-12 14:10:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
69 |
-
2012-10-12 14:10:31 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
70 |
-
2012-10-12 14:10:32 - response return (code 00000)
|
71 |
-
2012-10-12 14:10:32 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
72 |
-
2012-10-12 14:10:33 - response return (code 00000)
|
73 |
-
2012-10-12 14:52:56 - ----------------------------------------------------------
|
74 |
-
2012-10-12 14:52:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
75 |
-
2012-10-12 14:52:56 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
76 |
-
2012-10-12 14:52:56 - response return (code 02500)
|
77 |
-
2012-10-12 14:52:58 - ----------------------------------------------------------
|
78 |
-
2012-10-12 14:52:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-12 14:52:58 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
80 |
-
2012-10-12 14:52:58 - response return (code 00000)
|
81 |
-
2012-10-12 14:53:29 - ----------------------------------------------------------
|
82 |
-
2012-10-12 14:53:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
83 |
-
2012-10-12 14:53:29 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
84 |
-
2012-10-12 14:53:30 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-15.log
DELETED
@@ -1,234 +0,0 @@
|
|
1 |
-
2012-10-15 9:28:02 - ----------------------------------------------------------
|
2 |
-
2012-10-15 9:28:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-15 9:28:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
4 |
-
2012-10-15 9:28:04 - response return (code 00000)
|
5 |
-
2012-10-15 9:28:34 - ----------------------------------------------------------
|
6 |
-
2012-10-15 9:28:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-15 9:28:34 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
8 |
-
2012-10-15 9:28:36 - response return (code 02500)
|
9 |
-
2012-10-15 9:34:36 - ----------------------------------------------------------
|
10 |
-
2012-10-15 9:34:36 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-15 9:34:36 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-15 9:34:37 - response return (code 02500)
|
13 |
-
2012-10-15 11:18:32 - ----------------------------------------------------------
|
14 |
-
2012-10-15 11:18:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-15 11:18:32 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
16 |
-
2012-10-15 11:18:32 - response return (code 00000)
|
17 |
-
2012-10-15 11:19:08 - ----------------------------------------------------------
|
18 |
-
2012-10-15 11:19:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-15 11:19:08 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
20 |
-
2012-10-15 11:19:09 - response return (code 02319)
|
21 |
-
2012-10-15 11:22:43 - ----------------------------------------------------------
|
22 |
-
2012-10-15 11:22:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-15 11:22:43 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
24 |
-
2012-10-15 11:22:43 - response return (code 00000)
|
25 |
-
2012-10-15 11:23:03 - ----------------------------------------------------------
|
26 |
-
2012-10-15 11:23:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-15 11:23:03 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
28 |
-
2012-10-15 11:23:04 - response return (code 00000)
|
29 |
-
2012-10-15 11:24:44 - ----------------------------------------------------------
|
30 |
-
2012-10-15 11:24:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-15 11:24:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
32 |
-
2012-10-15 11:24:44 - response return (code 00000)
|
33 |
-
2012-10-15 11:24:48 - ----------------------------------------------------------
|
34 |
-
2012-10-15 11:24:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
35 |
-
2012-10-15 11:24:48 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
36 |
-
2012-10-15 11:24:48 - response return (code 02319)
|
37 |
-
2012-10-15 11:32:45 - ----------------------------------------------------------
|
38 |
-
2012-10-15 11:32:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-15 11:32:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
40 |
-
2012-10-15 11:32:46 - response return (code 00000)
|
41 |
-
2012-10-15 11:32:51 - ----------------------------------------------------------
|
42 |
-
2012-10-15 11:32:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-15 11:32:51 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
44 |
-
2012-10-15 11:32:52 - response return (code 02319)
|
45 |
-
2012-10-15 11:36:49 - ----------------------------------------------------------
|
46 |
-
2012-10-15 11:36:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-15 11:36:49 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
48 |
-
2012-10-15 11:36:50 - response return (code 00000)
|
49 |
-
2012-10-15 11:36:59 - ----------------------------------------------------------
|
50 |
-
2012-10-15 11:36:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-15 11:36:59 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
52 |
-
2012-10-15 11:36:59 - response return (code 00000)
|
53 |
-
2012-10-15 11:39:30 - ----------------------------------------------------------
|
54 |
-
2012-10-15 11:39:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-15 11:39:30 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
56 |
-
2012-10-15 11:39:31 - response return (code 00000)
|
57 |
-
2012-10-15 11:47:44 - ----------------------------------------------------------
|
58 |
-
2012-10-15 11:47:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-15 11:47:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
60 |
-
2012-10-15 11:47:45 - response return (code 00000)
|
61 |
-
2012-10-15 11:47:58 - ----------------------------------------------------------
|
62 |
-
2012-10-15 11:47:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
63 |
-
2012-10-15 11:47:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
64 |
-
2012-10-15 11:47:58 - response return (code 00000)
|
65 |
-
2012-10-15 11:49:13 - ----------------------------------------------------------
|
66 |
-
2012-10-15 11:49:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
67 |
-
2012-10-15 11:49:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
68 |
-
2012-10-15 11:49:14 - response return (code 00000)
|
69 |
-
2012-10-15 11:49:35 - ----------------------------------------------------------
|
70 |
-
2012-10-15 11:49:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
71 |
-
2012-10-15 11:49:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
72 |
-
2012-10-15 11:49:35 - response return (code 00000)
|
73 |
-
2012-10-15 11:53:37 - ----------------------------------------------------------
|
74 |
-
2012-10-15 11:53:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
75 |
-
2012-10-15 11:53:37 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
76 |
-
2012-10-15 11:53:37 - response return (code 00000)
|
77 |
-
2012-10-15 11:54:16 - ----------------------------------------------------------
|
78 |
-
2012-10-15 11:54:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-15 11:54:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
80 |
-
2012-10-15 11:54:17 - response return (code 02500)
|
81 |
-
2012-10-15 12:02:44 - ----------------------------------------------------------
|
82 |
-
2012-10-15 12:02:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
83 |
-
2012-10-15 12:02:44 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
84 |
-
2012-10-15 12:02:44 - response return (code 00000)
|
85 |
-
2012-10-15 12:03:10 - ----------------------------------------------------------
|
86 |
-
2012-10-15 12:03:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
87 |
-
2012-10-15 12:03:10 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
88 |
-
2012-10-15 12:03:11 - response return (code 00000)
|
89 |
-
2012-10-15 12:03:47 - ----------------------------------------------------------
|
90 |
-
2012-10-15 12:03:47 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
91 |
-
2012-10-15 12:03:47 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
92 |
-
2012-10-15 12:03:47 - response return (code 00000)
|
93 |
-
2012-10-15 12:05:42 - ----------------------------------------------------------
|
94 |
-
2012-10-15 12:05:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
95 |
-
2012-10-15 12:05:42 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
96 |
-
2012-10-15 12:05:43 - response return (code 00000)
|
97 |
-
2012-10-15 12:06:01 - ----------------------------------------------------------
|
98 |
-
2012-10-15 12:06:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
99 |
-
2012-10-15 12:06:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
100 |
-
2012-10-15 12:06:03 - response return (code 00000)
|
101 |
-
2012-10-15 12:06:27 - ----------------------------------------------------------
|
102 |
-
2012-10-15 12:06:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
103 |
-
2012-10-15 12:06:27 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
104 |
-
2012-10-15 12:06:27 - response return (code 00000)
|
105 |
-
2012-10-15 12:07:09 - ----------------------------------------------------------
|
106 |
-
2012-10-15 12:07:09 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
107 |
-
2012-10-15 12:07:09 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
108 |
-
2012-10-15 12:07:10 - response return (code 00000)
|
109 |
-
2012-10-15 12:07:24 - ----------------------------------------------------------
|
110 |
-
2012-10-15 12:07:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
111 |
-
2012-10-15 12:07:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
112 |
-
2012-10-15 12:07:25 - response return (code 00000)
|
113 |
-
2012-10-15 12:12:54 - ----------------------------------------------------------
|
114 |
-
2012-10-15 12:12:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
115 |
-
2012-10-15 12:12:54 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
116 |
-
2012-10-15 12:12:55 - response return (code 02500)
|
117 |
-
2012-10-15 12:13:03 - ----------------------------------------------------------
|
118 |
-
2012-10-15 12:13:03 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
119 |
-
2012-10-15 12:13:03 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
120 |
-
2012-10-15 12:13:04 - response return (code 00000)
|
121 |
-
2012-10-15 12:13:07 - ----------------------------------------------------------
|
122 |
-
2012-10-15 12:13:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
123 |
-
2012-10-15 12:13:07 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
124 |
-
2012-10-15 12:13:08 - response return (code 00000)
|
125 |
-
2012-10-15 12:13:24 - ----------------------------------------------------------
|
126 |
-
2012-10-15 12:13:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
127 |
-
2012-10-15 12:13:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
128 |
-
2012-10-15 12:13:25 - response return (code 00000)
|
129 |
-
2012-10-15 12:15:35 - ----------------------------------------------------------
|
130 |
-
2012-10-15 12:15:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
131 |
-
2012-10-15 12:15:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
132 |
-
2012-10-15 12:15:35 - response return (code 00000)
|
133 |
-
2012-10-15 12:16:24 - ----------------------------------------------------------
|
134 |
-
2012-10-15 12:16:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
135 |
-
2012-10-15 12:16:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
136 |
-
2012-10-15 12:16:24 - response return (code 00000)
|
137 |
-
2012-10-15 12:16:35 - ----------------------------------------------------------
|
138 |
-
2012-10-15 12:16:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
139 |
-
2012-10-15 12:16:35 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
140 |
-
2012-10-15 12:16:36 - response return (code 00000)
|
141 |
-
2012-10-15 12:16:48 - ----------------------------------------------------------
|
142 |
-
2012-10-15 12:16:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
143 |
-
2012-10-15 12:16:48 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
144 |
-
2012-10-15 12:16:52 - response return (code 00000)
|
145 |
-
2012-10-15 12:17:02 - ----------------------------------------------------------
|
146 |
-
2012-10-15 12:17:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
147 |
-
2012-10-15 12:17:02 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
148 |
-
2012-10-15 12:17:03 - response return (code 02500)
|
149 |
-
2012-10-15 12:33:38 - ----------------------------------------------------------
|
150 |
-
2012-10-15 12:33:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
151 |
-
2012-10-15 12:33:38 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
152 |
-
2012-10-15 12:33:38 - response return (code 00000)
|
153 |
-
2012-10-15 12:33:58 - ----------------------------------------------------------
|
154 |
-
2012-10-15 12:33:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
155 |
-
2012-10-15 12:33:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
156 |
-
2012-10-15 12:33:58 - response return (code 00000)
|
157 |
-
2012-10-15 12:39:24 - ----------------------------------------------------------
|
158 |
-
2012-10-15 12:39:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
159 |
-
2012-10-15 12:39:24 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
160 |
-
2012-10-15 12:39:25 - response return (code 00000)
|
161 |
-
2012-10-15 12:39:52 - ----------------------------------------------------------
|
162 |
-
2012-10-15 12:39:52 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
163 |
-
2012-10-15 12:39:52 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
164 |
-
2012-10-15 12:39:52 - response return (code 02500)
|
165 |
-
2012-10-15 12:46:57 - ----------------------------------------------------------
|
166 |
-
2012-10-15 12:46:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
167 |
-
2012-10-15 12:46:57 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
168 |
-
2012-10-15 12:46:57 - response return (code 00000)
|
169 |
-
2012-10-15 12:47:12 - ----------------------------------------------------------
|
170 |
-
2012-10-15 12:47:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
171 |
-
2012-10-15 12:47:12 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
172 |
-
2012-10-15 12:47:13 - response return (code 02500)
|
173 |
-
2012-10-15 13:22:53 - ----------------------------------------------------------
|
174 |
-
2012-10-15 13:22:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
175 |
-
2012-10-15 13:22:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
176 |
-
2012-10-15 13:22:54 - response return (code 00000)
|
177 |
-
2012-10-15 13:23:08 - ----------------------------------------------------------
|
178 |
-
2012-10-15 13:23:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
179 |
-
2012-10-15 13:23:08 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
180 |
-
2012-10-15 13:23:09 - response return (code 02500)
|
181 |
-
2012-10-15 13:35:48 - ----------------------------------------------------------
|
182 |
-
2012-10-15 13:35:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
183 |
-
2012-10-15 13:35:48 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
184 |
-
2012-10-15 13:35:49 - response return (code 00000)
|
185 |
-
2012-10-15 13:35:49 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
186 |
-
2012-10-15 13:35:51 - response return (code 00000)
|
187 |
-
2012-10-15 13:53:54 - ----------------------------------------------------------
|
188 |
-
2012-10-15 13:53:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
189 |
-
2012-10-15 13:53:54 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
190 |
-
2012-10-15 13:53:54 - response return (code 00000)
|
191 |
-
2012-10-15 13:54:07 - ----------------------------------------------------------
|
192 |
-
2012-10-15 13:54:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
193 |
-
2012-10-15 13:54:07 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
194 |
-
2012-10-15 13:54:07 - response return (code 02500)
|
195 |
-
2012-10-15 14:03:30 - ----------------------------------------------------------
|
196 |
-
2012-10-15 14:03:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
197 |
-
2012-10-15 14:03:30 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
198 |
-
2012-10-15 14:03:31 - response return (code 00000)
|
199 |
-
2012-10-15 14:03:45 - ----------------------------------------------------------
|
200 |
-
2012-10-15 14:03:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
201 |
-
2012-10-15 14:03:45 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
202 |
-
2012-10-15 14:03:46 - response return (code 02500)
|
203 |
-
2012-10-15 15:41:54 - ----------------------------------------------------------
|
204 |
-
2012-10-15 15:41:54 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
205 |
-
2012-10-15 15:41:54 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
206 |
-
2012-10-15 15:41:56 - response return (code 02500)
|
207 |
-
2012-10-15 15:41:59 - ----------------------------------------------------------
|
208 |
-
2012-10-15 15:41:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
209 |
-
2012-10-15 15:41:59 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
210 |
-
2012-10-15 15:42:00 - response return (code 02516)
|
211 |
-
2012-10-15 15:42:02 - ----------------------------------------------------------
|
212 |
-
2012-10-15 15:42:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
213 |
-
2012-10-15 15:42:02 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
214 |
-
2012-10-15 15:42:03 - response return (code 00000)
|
215 |
-
2012-10-15 15:42:53 - ----------------------------------------------------------
|
216 |
-
2012-10-15 15:42:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
217 |
-
2012-10-15 15:42:53 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
218 |
-
2012-10-15 15:42:53 - response return (code 00000)
|
219 |
-
2012-10-15 15:44:53 - ----------------------------------------------------------
|
220 |
-
2012-10-15 15:44:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
221 |
-
2012-10-15 15:44:53 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
222 |
-
2012-10-15 15:44:53 - response return (code 00000)
|
223 |
-
2012-10-15 16:14:13 - ----------------------------------------------------------
|
224 |
-
2012-10-15 16:14:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
225 |
-
2012-10-15 16:14:13 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
226 |
-
2012-10-15 16:14:14 - response return (code 00000)
|
227 |
-
2012-10-15 16:20:55 - ----------------------------------------------------------
|
228 |
-
2012-10-15 16:20:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
229 |
-
2012-10-15 16:20:55 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
230 |
-
2012-10-15 16:20:56 - response return (code 00000)
|
231 |
-
2012-10-15 16:21:19 - ----------------------------------------------------------
|
232 |
-
2012-10-15 16:21:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
233 |
-
2012-10-15 16:21:19 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
234 |
-
2012-10-15 16:21:20 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-16.log
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
2012-10-16 8:19:26 - ----------------------------------------------------------
|
2 |
-
2012-10-16 8:19:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-16 8:19:26 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
4 |
-
2012-10-16 8:19:27 - response return (code 00000)
|
5 |
-
2012-10-16 8:20:15 - ----------------------------------------------------------
|
6 |
-
2012-10-16 8:20:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-16 8:20:15 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
8 |
-
2012-10-16 8:20:16 - response return (code 00000)
|
9 |
-
2012-10-16 8:21:30 - ----------------------------------------------------------
|
10 |
-
2012-10-16 8:21:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-16 8:21:30 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
12 |
-
2012-10-16 8:21:31 - response return (code 00000)
|
13 |
-
2012-10-16 8:23:17 - ----------------------------------------------------------
|
14 |
-
2012-10-16 8:23:17 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-16 8:23:17 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
16 |
-
2012-10-16 8:23:17 - response return (code 00000)
|
17 |
-
2012-10-16 8:23:30 - ----------------------------------------------------------
|
18 |
-
2012-10-16 8:23:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-16 8:23:30 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
20 |
-
2012-10-16 8:23:31 - response return (code 00000)
|
21 |
-
2012-10-16 8:23:49 - ----------------------------------------------------------
|
22 |
-
2012-10-16 8:23:49 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
23 |
-
2012-10-16 8:23:49 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
24 |
-
2012-10-16 8:23:49 - response return (code 00000)
|
25 |
-
2012-10-16 8:24:15 - ----------------------------------------------------------
|
26 |
-
2012-10-16 8:24:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-16 8:24:15 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
28 |
-
2012-10-16 8:24:16 - response return (code 02500)
|
29 |
-
2012-10-16 8:24:16 - ----------------------------------------------------------
|
30 |
-
2012-10-16 8:24:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-16 8:24:16 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
32 |
-
2012-10-16 8:24:17 - response return (code 02500)
|
33 |
-
2012-10-16 8:24:22 - ----------------------------------------------------------
|
34 |
-
2012-10-16 8:24:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
35 |
-
2012-10-16 8:24:22 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
36 |
-
2012-10-16 8:24:23 - Exception : 2101
|
37 |
-
2012-10-16 15:03:18 - ----------------------------------------------------------
|
38 |
-
2012-10-16 15:03:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-16 15:03:18 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
40 |
-
2012-10-16 15:03:19 - response return (code 02500)
|
41 |
-
2012-10-16 16:06:59 - ----------------------------------------------------------
|
42 |
-
2012-10-16 16:06:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-16 16:06:59 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
44 |
-
2012-10-16 16:07:00 - response return (code 02500)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-17.log
DELETED
@@ -1,258 +0,0 @@
|
|
1 |
-
2012-10-17 7:43:45 - ----------------------------------------------------------
|
2 |
-
2012-10-17 7:43:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-17 7:43:45 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-17 7:43:46 - response return (code 02500)
|
5 |
-
2012-10-17 7:58:13 - ----------------------------------------------------------
|
6 |
-
2012-10-17 7:58:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-17 7:58:13 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
8 |
-
2012-10-17 7:58:14 - response return (code 00000)
|
9 |
-
2012-10-17 7:58:58 - ----------------------------------------------------------
|
10 |
-
2012-10-17 7:58:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-17 7:58:58 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
12 |
-
2012-10-17 7:59:00 - response return (code 02319)
|
13 |
-
2012-10-17 10:31:58 - ----------------------------------------------------------
|
14 |
-
2012-10-17 10:31:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-17 10:31:58 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
16 |
-
2012-10-17 10:31:59 - response return (code 02500)
|
17 |
-
2012-10-17 10:32:27 - ----------------------------------------------------------
|
18 |
-
2012-10-17 10:32:27 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
19 |
-
2012-10-17 10:32:27 - webServiceRequest(doImmediateWalletPayment) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
20 |
-
2012-10-17 10:32:27 - response return (code 00000)
|
21 |
-
2012-10-17 10:32:27 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
22 |
-
2012-10-17 10:32:28 - response return (code 00000)
|
23 |
-
2012-10-17 12:49:57 - ----------------------------------------------------------
|
24 |
-
2012-10-17 12:49:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
25 |
-
2012-10-17 12:49:57 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
26 |
-
2012-10-17 12:49:59 - response return (code 02500)
|
27 |
-
2012-10-17 12:52:41 - ----------------------------------------------------------
|
28 |
-
2012-10-17 12:52:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
29 |
-
2012-10-17 12:52:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
30 |
-
2012-10-17 12:52:41 - response return (code 00000)
|
31 |
-
2012-10-17 14:35:31 - ----------------------------------------------------------
|
32 |
-
2012-10-17 14:35:31 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
33 |
-
2012-10-17 14:35:31 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
34 |
-
2012-10-17 14:35:32 - response return (code 02500)
|
35 |
-
2012-10-17 14:36:10 - ----------------------------------------------------------
|
36 |
-
2012-10-17 14:36:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
37 |
-
2012-10-17 14:36:10 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
38 |
-
2012-10-17 14:36:10 - response return (code 00000)
|
39 |
-
2012-10-17 14:36:16 - ----------------------------------------------------------
|
40 |
-
2012-10-17 14:36:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
41 |
-
2012-10-17 14:36:16 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
42 |
-
2012-10-17 14:36:16 - response return (code 00000)
|
43 |
-
2012-10-17 14:36:30 - ----------------------------------------------------------
|
44 |
-
2012-10-17 14:36:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
45 |
-
2012-10-17 14:36:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
46 |
-
2012-10-17 14:36:31 - response return (code 00000)
|
47 |
-
2012-10-17 14:36:31 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
48 |
-
2012-10-17 14:36:31 - response return (code 00000)
|
49 |
-
2012-10-17 15:10:37 - ----------------------------------------------------------
|
50 |
-
2012-10-17 15:10:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-17 15:10:38 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
52 |
-
2012-10-17 15:10:38 - response return (code 00000)
|
53 |
-
2012-10-17 15:10:45 - ----------------------------------------------------------
|
54 |
-
2012-10-17 15:10:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-17 15:10:45 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
56 |
-
2012-10-17 15:10:45 - response return (code 00000)
|
57 |
-
2012-10-17 15:17:08 - ----------------------------------------------------------
|
58 |
-
2012-10-17 15:17:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-17 15:17:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
60 |
-
2012-10-17 15:17:08 - response return (code 00000)
|
61 |
-
2012-10-17 15:17:08 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
62 |
-
2012-10-17 15:17:09 - response return (code 00000)
|
63 |
-
2012-10-17 15:46:01 - ----------------------------------------------------------
|
64 |
-
2012-10-17 15:46:01 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
65 |
-
2012-10-17 15:46:01 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
66 |
-
2012-10-17 15:46:03 - response return (code 00000)
|
67 |
-
2012-10-17 15:46:11 - ----------------------------------------------------------
|
68 |
-
2012-10-17 15:46:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
69 |
-
2012-10-17 15:46:11 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
70 |
-
2012-10-17 15:46:12 - response return (code 00000)
|
71 |
-
2012-10-17 15:48:04 - ----------------------------------------------------------
|
72 |
-
2012-10-17 15:48:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
73 |
-
2012-10-17 15:48:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
74 |
-
2012-10-17 15:48:04 - response return (code 00000)
|
75 |
-
2012-10-17 15:48:04 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
76 |
-
2012-10-17 15:48:05 - response return (code 00000)
|
77 |
-
2012-10-17 15:52:04 - ----------------------------------------------------------
|
78 |
-
2012-10-17 15:52:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-17 15:52:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
80 |
-
2012-10-17 15:52:05 - response return (code 00000)
|
81 |
-
2012-10-17 15:52:05 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
82 |
-
2012-10-17 15:52:05 - response return (code 02110)
|
83 |
-
2012-10-17 16:02:44 - ----------------------------------------------------------
|
84 |
-
2012-10-17 16:02:44 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
85 |
-
2012-10-17 16:02:44 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
86 |
-
2012-10-17 16:02:44 - response return (code 00000)
|
87 |
-
2012-10-17 16:02:44 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
88 |
-
2012-10-17 16:02:44 - response return (code 02110)
|
89 |
-
2012-10-17 16:03:19 - ----------------------------------------------------------
|
90 |
-
2012-10-17 16:03:19 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
91 |
-
2012-10-17 16:03:19 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
92 |
-
2012-10-17 16:03:20 - response return (code 00000)
|
93 |
-
2012-10-17 16:03:20 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
94 |
-
2012-10-17 16:03:20 - response return (code 02110)
|
95 |
-
2012-10-17 16:04:39 - ----------------------------------------------------------
|
96 |
-
2012-10-17 16:04:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
97 |
-
2012-10-17 16:04:39 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
98 |
-
2012-10-17 16:04:40 - response return (code 00000)
|
99 |
-
2012-10-17 16:04:40 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
100 |
-
2012-10-17 16:04:40 - response return (code 02110)
|
101 |
-
2012-10-17 16:11:29 - ----------------------------------------------------------
|
102 |
-
2012-10-17 16:11:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
103 |
-
2012-10-17 16:11:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
104 |
-
2012-10-17 16:11:30 - response return (code 00000)
|
105 |
-
2012-10-17 16:11:30 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
106 |
-
2012-10-17 16:11:30 - response return (code 02110)
|
107 |
-
2012-10-17 16:14:51 - ----------------------------------------------------------
|
108 |
-
2012-10-17 16:14:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
109 |
-
2012-10-17 16:14:51 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
110 |
-
2012-10-17 16:14:52 - response return (code 00000)
|
111 |
-
2012-10-17 16:14:52 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
112 |
-
2012-10-17 16:14:52 - response return (code 00000)
|
113 |
-
2012-10-17 16:15:15 - ----------------------------------------------------------
|
114 |
-
2012-10-17 16:15:15 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
115 |
-
2012-10-17 16:15:15 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
116 |
-
2012-10-17 16:15:15 - response return (code 00000)
|
117 |
-
2012-10-17 16:15:15 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
118 |
-
2012-10-17 16:15:16 - response return (code 00000)
|
119 |
-
2012-10-17 16:18:18 - ----------------------------------------------------------
|
120 |
-
2012-10-17 16:18:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
121 |
-
2012-10-17 16:18:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
122 |
-
2012-10-17 16:18:18 - response return (code 00000)
|
123 |
-
2012-10-17 16:18:22 - ----------------------------------------------------------
|
124 |
-
2012-10-17 16:18:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
125 |
-
2012-10-17 16:18:22 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
126 |
-
2012-10-17 16:18:23 - response return (code 00000)
|
127 |
-
2012-10-17 16:18:41 - ----------------------------------------------------------
|
128 |
-
2012-10-17 16:18:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
129 |
-
2012-10-17 16:18:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
130 |
-
2012-10-17 16:18:42 - response return (code 00000)
|
131 |
-
2012-10-17 16:18:42 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
132 |
-
2012-10-17 16:18:42 - response return (code 00000)
|
133 |
-
2012-10-17 16:19:04 - ----------------------------------------------------------
|
134 |
-
2012-10-17 16:19:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
135 |
-
2012-10-17 16:19:04 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
136 |
-
2012-10-17 16:19:05 - response return (code 00000)
|
137 |
-
2012-10-17 16:19:05 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
138 |
-
2012-10-17 16:19:05 - response return (code 02301)
|
139 |
-
2012-10-17 16:20:30 - ----------------------------------------------------------
|
140 |
-
2012-10-17 16:20:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
141 |
-
2012-10-17 16:20:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
142 |
-
2012-10-17 16:20:30 - response return (code 00000)
|
143 |
-
2012-10-17 16:20:30 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
144 |
-
2012-10-17 16:20:30 - response return (code 02301)
|
145 |
-
2012-10-17 16:21:35 - ----------------------------------------------------------
|
146 |
-
2012-10-17 16:21:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
147 |
-
2012-10-17 16:21:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
148 |
-
2012-10-17 16:21:36 - response return (code 00000)
|
149 |
-
2012-10-17 16:21:36 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
150 |
-
2012-10-17 16:21:36 - response return (code 00000)
|
151 |
-
2012-10-17 16:48:07 - ----------------------------------------------------------
|
152 |
-
2012-10-17 16:48:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
153 |
-
2012-10-17 16:48:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
154 |
-
2012-10-17 16:48:08 - response return (code 00000)
|
155 |
-
2012-10-17 16:48:08 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
156 |
-
2012-10-17 16:48:08 - response return (code 00000)
|
157 |
-
2012-10-17 16:49:18 - ----------------------------------------------------------
|
158 |
-
2012-10-17 16:49:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
159 |
-
2012-10-17 16:49:18 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
160 |
-
2012-10-17 16:49:18 - response return (code 00000)
|
161 |
-
2012-10-17 16:49:23 - ----------------------------------------------------------
|
162 |
-
2012-10-17 16:49:23 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
163 |
-
2012-10-17 16:49:23 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
164 |
-
2012-10-17 16:49:23 - response return (code 00000)
|
165 |
-
2012-10-17 16:50:10 - ----------------------------------------------------------
|
166 |
-
2012-10-17 16:50:10 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
167 |
-
2012-10-17 16:50:10 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
168 |
-
2012-10-17 16:50:10 - response return (code 00000)
|
169 |
-
2012-10-17 16:50:10 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
170 |
-
2012-10-17 16:50:11 - response return (code 00000)
|
171 |
-
2012-10-17 16:51:06 - ----------------------------------------------------------
|
172 |
-
2012-10-17 16:51:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
173 |
-
2012-10-17 16:51:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
174 |
-
2012-10-17 16:51:06 - response return (code 00000)
|
175 |
-
2012-10-17 16:51:06 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
176 |
-
2012-10-17 16:51:07 - response return (code 02110)
|
177 |
-
2012-10-17 16:51:07 - ----------------------------------------------------------
|
178 |
-
2012-10-17 16:51:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
179 |
-
2012-10-17 16:51:07 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
180 |
-
2012-10-17 16:51:07 - response return (code 00000)
|
181 |
-
2012-10-17 16:51:07 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
182 |
-
2012-10-17 16:51:07 - response return (code 00000)
|
183 |
-
2012-10-17 16:52:41 - ----------------------------------------------------------
|
184 |
-
2012-10-17 16:52:41 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
185 |
-
2012-10-17 16:52:41 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
186 |
-
2012-10-17 16:52:41 - response return (code 00000)
|
187 |
-
2012-10-17 16:52:41 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
188 |
-
2012-10-17 16:52:42 - response return (code 02110)
|
189 |
-
2012-10-17 16:52:42 - ----------------------------------------------------------
|
190 |
-
2012-10-17 16:52:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
191 |
-
2012-10-17 16:52:42 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
192 |
-
2012-10-17 16:52:42 - response return (code 00000)
|
193 |
-
2012-10-17 16:52:42 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
194 |
-
2012-10-17 16:52:42 - response return (code 00000)
|
195 |
-
2012-10-17 16:54:53 - ----------------------------------------------------------
|
196 |
-
2012-10-17 16:54:53 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
197 |
-
2012-10-17 16:54:53 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
198 |
-
2012-10-17 16:54:53 - response return (code 00000)
|
199 |
-
2012-10-17 16:54:57 - ----------------------------------------------------------
|
200 |
-
2012-10-17 16:54:57 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
201 |
-
2012-10-17 16:54:57 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
202 |
-
2012-10-17 16:54:58 - response return (code 00000)
|
203 |
-
2012-10-17 16:55:30 - ----------------------------------------------------------
|
204 |
-
2012-10-17 16:55:30 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
205 |
-
2012-10-17 16:55:30 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
206 |
-
2012-10-17 16:55:30 - response return (code 00000)
|
207 |
-
2012-10-17 16:55:30 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
208 |
-
2012-10-17 16:55:31 - response return (code 00000)
|
209 |
-
2012-10-17 16:56:13 - ----------------------------------------------------------
|
210 |
-
2012-10-17 16:56:13 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
211 |
-
2012-10-17 16:56:13 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
212 |
-
2012-10-17 16:56:13 - response return (code 00000)
|
213 |
-
2012-10-17 16:56:13 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
214 |
-
2012-10-17 16:56:13 - response return (code 00000)
|
215 |
-
2012-10-17 16:56:35 - ----------------------------------------------------------
|
216 |
-
2012-10-17 16:56:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
217 |
-
2012-10-17 16:56:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
218 |
-
2012-10-17 16:56:35 - response return (code 00000)
|
219 |
-
2012-10-17 16:56:35 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
220 |
-
2012-10-17 16:56:35 - response return (code 00000)
|
221 |
-
2012-10-17 16:57:08 - ----------------------------------------------------------
|
222 |
-
2012-10-17 16:57:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
223 |
-
2012-10-17 16:57:08 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
224 |
-
2012-10-17 16:57:09 - response return (code 00000)
|
225 |
-
2012-10-17 16:57:09 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
226 |
-
2012-10-17 16:57:09 - response return (code 00000)
|
227 |
-
2012-10-17 17:00:29 - ----------------------------------------------------------
|
228 |
-
2012-10-17 17:00:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
229 |
-
2012-10-17 17:00:29 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
230 |
-
2012-10-17 17:00:29 - response return (code 00000)
|
231 |
-
2012-10-17 17:00:33 - ----------------------------------------------------------
|
232 |
-
2012-10-17 17:00:33 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
233 |
-
2012-10-17 17:00:33 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
234 |
-
2012-10-17 17:00:33 - response return (code 00000)
|
235 |
-
2012-10-17 17:01:05 - ----------------------------------------------------------
|
236 |
-
2012-10-17 17:01:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
237 |
-
2012-10-17 17:01:05 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
238 |
-
2012-10-17 17:01:05 - response return (code 00000)
|
239 |
-
2012-10-17 17:01:05 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
240 |
-
2012-10-17 17:01:06 - response return (code 00000)
|
241 |
-
2012-10-17 17:01:14 - ----------------------------------------------------------
|
242 |
-
2012-10-17 17:01:14 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
243 |
-
2012-10-17 17:01:14 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
244 |
-
2012-10-17 17:01:14 - response return (code 00000)
|
245 |
-
2012-10-17 17:01:15 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
246 |
-
2012-10-17 17:01:15 - response return (code 00000)
|
247 |
-
2012-10-17 17:01:22 - ----------------------------------------------------------
|
248 |
-
2012-10-17 17:01:22 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
249 |
-
2012-10-17 17:01:22 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
250 |
-
2012-10-17 17:01:22 - response return (code 00000)
|
251 |
-
2012-10-17 17:01:22 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
252 |
-
2012-10-17 17:01:23 - response return (code 00000)
|
253 |
-
2012-10-17 17:01:34 - ----------------------------------------------------------
|
254 |
-
2012-10-17 17:01:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
255 |
-
2012-10-17 17:01:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
256 |
-
2012-10-17 17:01:34 - response return (code 00000)
|
257 |
-
2012-10-17 17:01:34 - webServiceRequest(doReAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
258 |
-
2012-10-17 17:01:35 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-18.log
DELETED
@@ -1,194 +0,0 @@
|
|
1 |
-
2012-10-18 7:26:43 - ----------------------------------------------------------
|
2 |
-
2012-10-18 7:26:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-18 7:26:43 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
4 |
-
2012-10-18 7:26:45 - response return (code 00000)
|
5 |
-
2012-10-18 7:26:45 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
6 |
-
2012-10-18 7:26:46 - Exception : Notice: Undefined index: code in /var/www/trunk/Payline/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php on line 797
|
7 |
-
2012-10-18 7:28:45 - ----------------------------------------------------------
|
8 |
-
2012-10-18 7:28:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
9 |
-
2012-10-18 7:28:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
10 |
-
2012-10-18 7:28:45 - response return (code 00000)
|
11 |
-
2012-10-18 7:28:45 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-18 7:29:15 - Exception : Internal Server Error
|
13 |
-
2012-10-18 7:36:06 - ----------------------------------------------------------
|
14 |
-
2012-10-18 7:36:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-18 7:36:06 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
16 |
-
2012-10-18 7:36:07 - response return (code 00000)
|
17 |
-
2012-10-18 7:36:07 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
18 |
-
2012-10-18 7:36:07 - response return (code 00000)
|
19 |
-
2012-10-18 7:36:24 - ----------------------------------------------------------
|
20 |
-
2012-10-18 7:36:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
21 |
-
2012-10-18 7:36:24 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
22 |
-
2012-10-18 7:36:25 - response return (code 00000)
|
23 |
-
2012-10-18 7:36:25 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
24 |
-
2012-10-18 7:36:25 - response return (code 00000)
|
25 |
-
2012-10-18 7:36:34 - ----------------------------------------------------------
|
26 |
-
2012-10-18 7:36:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
27 |
-
2012-10-18 7:36:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
28 |
-
2012-10-18 7:36:35 - response return (code 00000)
|
29 |
-
2012-10-18 7:36:35 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
30 |
-
2012-10-18 7:36:35 - response return (code 00000)
|
31 |
-
2012-10-18 7:37:12 - ----------------------------------------------------------
|
32 |
-
2012-10-18 7:37:12 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
33 |
-
2012-10-18 7:37:12 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
34 |
-
2012-10-18 7:37:13 - response return (code 00000)
|
35 |
-
2012-10-18 7:37:13 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
36 |
-
2012-10-18 7:37:43 - Exception : Internal Server Error
|
37 |
-
2012-10-18 8:12:29 - ----------------------------------------------------------
|
38 |
-
2012-10-18 8:12:29 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
39 |
-
2012-10-18 8:12:29 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
40 |
-
2012-10-18 8:12:30 - response return (code 02500)
|
41 |
-
2012-10-18 8:12:48 - ----------------------------------------------------------
|
42 |
-
2012-10-18 8:12:48 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
43 |
-
2012-10-18 8:12:48 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
44 |
-
2012-10-18 8:12:48 - response return (code 02532)
|
45 |
-
2012-10-18 8:13:40 - ----------------------------------------------------------
|
46 |
-
2012-10-18 8:13:40 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
47 |
-
2012-10-18 8:13:40 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
48 |
-
2012-10-18 8:13:40 - response return (code 02532)
|
49 |
-
2012-10-18 8:13:51 - ----------------------------------------------------------
|
50 |
-
2012-10-18 8:13:51 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
51 |
-
2012-10-18 8:13:51 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
52 |
-
2012-10-18 8:13:52 - response return (code 02500)
|
53 |
-
2012-10-18 8:14:07 - ----------------------------------------------------------
|
54 |
-
2012-10-18 8:14:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
55 |
-
2012-10-18 8:14:07 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
56 |
-
2012-10-18 8:14:07 - response return (code 02532)
|
57 |
-
2012-10-18 8:15:38 - ----------------------------------------------------------
|
58 |
-
2012-10-18 8:15:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
59 |
-
2012-10-18 8:15:38 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
60 |
-
2012-10-18 8:15:38 - Exception : Warning: SoapClient::__doRequest() [<a href='soapclient.--dorequest'>soapclient.--dorequest</a>]: SSL: Connection reset by peer in /var/www/trunk/Payline/Monext/Payline/PaylinePHPKit/lib/paylineSDK.php on line 1139
|
61 |
-
2012-10-18 8:18:50 - ----------------------------------------------------------
|
62 |
-
2012-10-18 8:18:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
63 |
-
2012-10-18 8:18:50 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
64 |
-
2012-10-18 8:18:50 - response return (code 02532)
|
65 |
-
2012-10-18 8:20:16 - ----------------------------------------------------------
|
66 |
-
2012-10-18 8:20:16 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
67 |
-
2012-10-18 8:20:16 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
68 |
-
2012-10-18 8:20:16 - response return (code 02532)
|
69 |
-
2012-10-18 8:24:02 - ----------------------------------------------------------
|
70 |
-
2012-10-18 8:24:02 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
71 |
-
2012-10-18 8:24:02 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
72 |
-
2012-10-18 8:24:02 - response return (code 00000)
|
73 |
-
2012-10-18 8:26:43 - ----------------------------------------------------------
|
74 |
-
2012-10-18 8:26:43 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
75 |
-
2012-10-18 8:26:43 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
76 |
-
2012-10-18 8:26:44 - response return (code 02319)
|
77 |
-
2012-10-18 8:26:58 - ----------------------------------------------------------
|
78 |
-
2012-10-18 8:26:58 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
79 |
-
2012-10-18 8:26:58 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
80 |
-
2012-10-18 8:27:01 - response return (code 00000)
|
81 |
-
2012-10-18 8:27:32 - ----------------------------------------------------------
|
82 |
-
2012-10-18 8:27:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
83 |
-
2012-10-18 8:27:32 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
84 |
-
2012-10-18 8:27:32 - response return (code 00000)
|
85 |
-
2012-10-18 8:28:35 - ----------------------------------------------------------
|
86 |
-
2012-10-18 8:28:35 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
87 |
-
2012-10-18 8:28:35 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
88 |
-
2012-10-18 8:28:35 - response return (code 00000)
|
89 |
-
2012-10-18 8:28:36 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
90 |
-
2012-10-18 8:28:36 - response return (code 00000)
|
91 |
-
2012-10-18 8:28:45 - ----------------------------------------------------------
|
92 |
-
2012-10-18 8:28:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
93 |
-
2012-10-18 8:28:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
94 |
-
2012-10-18 8:28:46 - response return (code 00000)
|
95 |
-
2012-10-18 8:28:46 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
96 |
-
2012-10-18 8:28:46 - response return (code 00000)
|
97 |
-
2012-10-18 8:32:25 - ----------------------------------------------------------
|
98 |
-
2012-10-18 8:32:25 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
99 |
-
2012-10-18 8:32:25 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
100 |
-
2012-10-18 8:32:27 - response return (code 00000)
|
101 |
-
2012-10-18 8:32:27 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
102 |
-
2012-10-18 8:32:28 - response return (code 00000)
|
103 |
-
2012-10-18 8:36:38 - ----------------------------------------------------------
|
104 |
-
2012-10-18 8:36:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
105 |
-
2012-10-18 8:36:38 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
106 |
-
2012-10-18 8:36:39 - response return (code 00000)
|
107 |
-
2012-10-18 8:36:39 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
108 |
-
2012-10-18 8:36:39 - response return (code 00000)
|
109 |
-
2012-10-18 9:55:11 - ----------------------------------------------------------
|
110 |
-
2012-10-18 9:55:11 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
111 |
-
2012-10-18 9:55:11 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
112 |
-
2012-10-18 9:55:12 - response return (code 00000)
|
113 |
-
2012-10-18 9:55:13 - webServiceRequest(doCapture) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
114 |
-
2012-10-18 9:55:13 - response return (code 00000)
|
115 |
-
2012-10-18 11:04:50 - ----------------------------------------------------------
|
116 |
-
2012-10-18 11:04:50 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
117 |
-
2012-10-18 11:04:50 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
118 |
-
2012-10-18 11:04:50 - response return (code 02532)
|
119 |
-
2012-10-18 11:46:26 - ----------------------------------------------------------
|
120 |
-
2012-10-18 11:46:26 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
121 |
-
2012-10-18 11:46:26 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
122 |
-
2012-10-18 11:46:27 - response return (code 00000)
|
123 |
-
2012-10-18 11:47:28 - ----------------------------------------------------------
|
124 |
-
2012-10-18 11:47:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
125 |
-
2012-10-18 11:47:28 - webServiceRequest(getWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
126 |
-
2012-10-18 11:47:28 - response return (code 02500)
|
127 |
-
2012-10-18 11:47:28 - ----------------------------------------------------------
|
128 |
-
2012-10-18 11:47:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
129 |
-
2012-10-18 11:47:28 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
130 |
-
2012-10-18 11:47:29 - response return (code 02500)
|
131 |
-
2012-10-18 11:47:37 - ----------------------------------------------------------
|
132 |
-
2012-10-18 11:47:37 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
133 |
-
2012-10-18 11:47:37 - webServiceRequest(updateWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
134 |
-
2012-10-18 11:47:37 - Exception : 2101
|
135 |
-
2012-10-18 12:46:45 - ----------------------------------------------------------
|
136 |
-
2012-10-18 12:46:45 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
137 |
-
2012-10-18 12:46:45 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
138 |
-
2012-10-18 12:46:45 - response return (code 00000)
|
139 |
-
2012-10-18 12:47:06 - ----------------------------------------------------------
|
140 |
-
2012-10-18 12:47:06 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
141 |
-
2012-10-18 12:47:06 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
142 |
-
2012-10-18 12:47:07 - response return (code 01111)
|
143 |
-
2012-10-18 12:53:05 - ----------------------------------------------------------
|
144 |
-
2012-10-18 12:53:05 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
145 |
-
2012-10-18 12:53:05 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
146 |
-
2012-10-18 12:53:06 - response return (code 00000)
|
147 |
-
2012-10-18 12:53:18 - ----------------------------------------------------------
|
148 |
-
2012-10-18 12:53:18 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
149 |
-
2012-10-18 12:53:18 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
150 |
-
2012-10-18 12:53:18 - response return (code 01111)
|
151 |
-
2012-10-18 12:54:08 - ----------------------------------------------------------
|
152 |
-
2012-10-18 12:54:08 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
153 |
-
2012-10-18 12:54:08 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
154 |
-
2012-10-18 12:54:08 - response return (code 00000)
|
155 |
-
2012-10-18 12:54:38 - ----------------------------------------------------------
|
156 |
-
2012-10-18 12:54:38 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
157 |
-
2012-10-18 12:54:38 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
158 |
-
2012-10-18 12:54:41 - response return (code 01111)
|
159 |
-
2012-10-18 12:54:55 - ----------------------------------------------------------
|
160 |
-
2012-10-18 12:54:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
161 |
-
2012-10-18 12:54:55 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
162 |
-
2012-10-18 12:54:55 - response return (code 01111)
|
163 |
-
2012-10-18 13:06:28 - ----------------------------------------------------------
|
164 |
-
2012-10-18 13:06:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
165 |
-
2012-10-18 13:06:28 - webServiceRequest(disableWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
166 |
-
2012-10-18 13:06:29 - response return (code 02500)
|
167 |
-
2012-10-18 13:06:32 - ----------------------------------------------------------
|
168 |
-
2012-10-18 13:06:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
169 |
-
2012-10-18 13:06:32 - webServiceRequest(createWebWallet) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
170 |
-
2012-10-18 13:06:32 - response return (code 00000)
|
171 |
-
2012-10-18 14:19:42 - ----------------------------------------------------------
|
172 |
-
2012-10-18 14:19:42 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
173 |
-
2012-10-18 14:19:42 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
174 |
-
2012-10-18 14:19:45 - response return (code 00000)
|
175 |
-
2012-10-18 14:19:45 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
176 |
-
2012-10-18 14:19:46 - response return (code 00000)
|
177 |
-
2012-10-18 14:19:47 - webServiceRequest(createWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
178 |
-
2012-10-18 14:19:48 - response return (code 02500)
|
179 |
-
2012-10-18 14:28:39 - ----------------------------------------------------------
|
180 |
-
2012-10-18 14:28:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
181 |
-
2012-10-18 14:28:39 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
182 |
-
2012-10-18 14:28:40 - response return (code 02500)
|
183 |
-
2012-10-18 16:15:55 - ----------------------------------------------------------
|
184 |
-
2012-10-18 16:15:55 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
185 |
-
2012-10-18 16:15:55 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
186 |
-
2012-10-18 16:15:56 - response return (code 02500)
|
187 |
-
2012-10-18 16:16:04 - ----------------------------------------------------------
|
188 |
-
2012-10-18 16:16:04 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
189 |
-
2012-10-18 16:16:04 - webServiceRequest(doWebPayment) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
190 |
-
2012-10-18 16:16:05 - response return (code 00000)
|
191 |
-
2012-10-18 16:16:24 - ----------------------------------------------------------
|
192 |
-
2012-10-18 16:16:24 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
193 |
-
2012-10-18 16:16:24 - webServiceRequest(getWebPaymentDetails) - Location : https://homologation.payline.com/V4/services/WebPaymentAPI
|
194 |
-
2012-10-18 16:16:25 - response return (code 02500)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/PaylinePHPKit/logs/2012-10-19.log
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
2012-10-19 7:38:39 - ----------------------------------------------------------
|
2 |
-
2012-10-19 7:38:39 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
3 |
-
2012-10-19 7:38:40 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
4 |
-
2012-10-19 7:38:41 - response return (code 02500)
|
5 |
-
2012-10-19 7:52:07 - ----------------------------------------------------------
|
6 |
-
2012-10-19 7:52:07 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
7 |
-
2012-10-19 7:52:07 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
8 |
-
2012-10-19 7:52:08 - response return (code 02500)
|
9 |
-
2012-10-19 7:53:32 - ----------------------------------------------------------
|
10 |
-
2012-10-19 7:53:32 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
11 |
-
2012-10-19 7:53:32 - webServiceRequest(getWallet) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
12 |
-
2012-10-19 7:53:33 - response return (code 02500)
|
13 |
-
2012-10-19 8:02:28 - ----------------------------------------------------------
|
14 |
-
2012-10-19 8:02:28 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
15 |
-
2012-10-19 8:02:28 - webServiceRequest(doAuthorization) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
16 |
-
2012-10-19 8:02:29 - response return (code 00000)
|
17 |
-
2012-10-19 8:02:29 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
18 |
-
2012-10-19 8:02:30 - response return (code 00000)
|
19 |
-
2012-10-19 8:03:59 - ----------------------------------------------------------
|
20 |
-
2012-10-19 8:03:59 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
21 |
-
2012-10-19 8:03:59 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
22 |
-
2012-10-19 8:04:00 - response return (code 00000)
|
23 |
-
2012-10-19 8:05:34 - ----------------------------------------------------------
|
24 |
-
2012-10-19 8:05:34 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
25 |
-
2012-10-19 8:05:34 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
26 |
-
2012-10-19 8:05:35 - response return (code 00000)
|
27 |
-
2012-10-19 8:05:35 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
28 |
-
2012-10-19 8:05:35 - response return (code 02305)
|
29 |
-
2012-10-19 8:05:56 - ----------------------------------------------------------
|
30 |
-
2012-10-19 8:05:56 - paylineSDK::__construct(36472284953602, Ka****************ot, , , , , 0)
|
31 |
-
2012-10-19 8:05:56 - webServiceRequest(getTransactionDetails) - Location : https://homologation.payline.com/V4/services/ExtendedAPI
|
32 |
-
2012-10-19 8:05:56 - response return (code 00000)
|
33 |
-
2012-10-19 8:05:56 - webServiceRequest(doRefund) - Location : https://homologation.payline.com/V4/services/DirectPaymentAPI
|
34 |
-
2012-10-19 8:05:57 - response return (code 00000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Monext/Payline/controllers/Adminhtml/ManagecontractsController.php
CHANGED
@@ -49,7 +49,10 @@ class Monext_Payline_Adminhtml_ManagecontractsController extends Mage_Adminhtml_
|
|
49 |
|
50 |
$nbContracts = Mage::getModel('payline/contract')->getCollection()->getSize();
|
51 |
$first = true;
|
52 |
-
$listPointOfSell =
|
|
|
|
|
|
|
53 |
foreach ($listPointOfSell as $key => $pointOfSell) {
|
54 |
if (is_object($pointOfSell)) {
|
55 |
$contracts = $pointOfSell->contracts->contract;
|
@@ -68,6 +71,10 @@ class Monext_Payline_Adminhtml_ManagecontractsController extends Mage_Adminhtml_
|
|
68 |
if(!is_array($contracts)) {
|
69 |
$contracts = array($contracts);
|
70 |
}
|
|
|
|
|
|
|
|
|
71 |
|
72 |
foreach ($contracts as $contract) {
|
73 |
$myContract = Mage::getModel('payline/contract')
|
@@ -202,4 +209,4 @@ class Monext_Payline_Adminhtml_ManagecontractsController extends Mage_Adminhtml_
|
|
202 |
$this->renderLayout();
|
203 |
}
|
204 |
|
205 |
-
}
|
49 |
|
50 |
$nbContracts = Mage::getModel('payline/contract')->getCollection()->getSize();
|
51 |
$first = true;
|
52 |
+
$listPointOfSell = array();
|
53 |
+
if (isset($result['listPointOfSell']['pointOfSell'])) {
|
54 |
+
$listPointOfSell = $result['listPointOfSell']['pointOfSell'];
|
55 |
+
}
|
56 |
foreach ($listPointOfSell as $key => $pointOfSell) {
|
57 |
if (is_object($pointOfSell)) {
|
58 |
$contracts = $pointOfSell->contracts->contract;
|
71 |
if(!is_array($contracts)) {
|
72 |
$contracts = array($contracts);
|
73 |
}
|
74 |
+
|
75 |
+
if (is_array($contracts) && isset($contracts['contractNumber'])) {
|
76 |
+
$contracts = array((object)$contracts);
|
77 |
+
}
|
78 |
|
79 |
foreach ($contracts as $contract) {
|
80 |
$myContract = Mage::getModel('payline/contract')
|
209 |
$this->renderLayout();
|
210 |
}
|
211 |
|
212 |
+
}
|
app/code/community/Monext/Payline/controllers/IndexController.php
CHANGED
@@ -157,7 +157,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
157 |
|
158 |
if($res['result']['code']){
|
159 |
|
160 |
-
if($res['result']['code'] == '00000' || $res['result']['code'] == '02500'){ // transaction OK
|
161 |
$orderOk = true;
|
162 |
|
163 |
if($paymentType == 'NX'){
|
@@ -231,13 +231,20 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
231 |
$helperPayline = Mage::helper('payline');
|
232 |
$paylineSDK = $helperPayline->initPayline('CPT',$array['payment']['currency']);
|
233 |
$paymentMethod = $this->order->getPayment()->getCcType();
|
|
|
234 |
if($paymentMethod) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
$array['payment']['contractNumber'] = $paymentMethod;
|
236 |
$array['contracts'] = array($paymentMethod);
|
237 |
} else {
|
238 |
$array['payment']['contractNumber'] = $helperPayline->contractNumber;
|
239 |
}
|
240 |
-
$array['payment']['action'] = Mage::getStoreConfig('payment/PaylineCPT/payline_payment_action');
|
241 |
$array['payment']['mode'] = 'CPT';
|
242 |
|
243 |
//second contracts
|
@@ -417,8 +424,12 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
417 |
|
418 |
if($this->updateOrder($detail_result,$detail_result['transaction']['id'], 'DIRECT')){
|
419 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
420 |
-
|
421 |
-
|
|
|
|
|
|
|
|
|
422 |
|
423 |
$array['wallet']['lastName'] = $array['buyer']['lastName'];
|
424 |
$array['wallet']['firstName'] = $array['buyer']['firstName'];
|
@@ -543,8 +554,12 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
543 |
|
544 |
if(is_array($detail_result) && $this->updateOrder($detail_result,$detail_result['transaction']['id'], 'WALLET')){
|
545 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
546 |
-
$
|
547 |
-
|
|
|
|
|
|
|
|
|
548 |
Mage::helper('payline')->automateCreateInvoiceAtShopReturn('WALLET', $this->order);
|
549 |
$this->order->save();
|
550 |
Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
|
@@ -706,22 +721,35 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
706 |
$res = Mage::helper('payline')->initPayline('CPT')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
|
707 |
|
708 |
$this->_getCustomerSession()->setWebPaymentDetails($res);
|
709 |
-
|
710 |
-
|
711 |
-
$
|
712 |
}else{
|
713 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
}
|
|
|
|
|
715 |
//If order is still new, notifAction haven't been called yet
|
716 |
if ($this->order->getState()==Mage_Sales_Model_Order::STATE_NEW){
|
717 |
Mage_Core_Controller_Varien_Action::_redirectSuccess($this->cptNotifAction());
|
718 |
}
|
719 |
-
|
|
|
720 |
$this->_redirect('checkout/onepage/success');
|
721 |
-
return;
|
722 |
}else{
|
|
|
723 |
$this->_redirectUrl($this->_getPaymentRefusedRedirectUrl());
|
724 |
-
return;
|
725 |
}
|
726 |
}
|
727 |
|
@@ -758,11 +786,15 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
758 |
$this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
|
759 |
$payment = $this->order->getPayment();
|
760 |
if ($payment->getBaseAmountPaid() != $payment->getBaseAmountOrdered()) {
|
761 |
-
$
|
|
|
|
|
|
|
|
|
762 |
$failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
763 |
if(is_array($res) && $this->updateOrder($res,$res['transaction']['id'], 'CPT')){
|
764 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
765 |
-
$this->order
|
766 |
if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
|
767 |
$this->saveWallet($res['privateDataList']['privateData'][1]->value);
|
768 |
}
|
@@ -816,10 +848,19 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
816 |
$this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
|
817 |
|
818 |
|
819 |
-
$
|
|
|
|
|
|
|
|
|
820 |
$failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
821 |
|
822 |
-
|
|
|
|
|
|
|
|
|
|
|
823 |
for($i=0;$i<$size;$i++){
|
824 |
if($res['billingRecordList']['billingRecord'][$i]->status == 1){
|
825 |
$txnId = $res['billingRecordList']['billingRecord'][$i]->transaction->id;
|
@@ -829,9 +870,9 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
829 |
}
|
830 |
}
|
831 |
|
832 |
-
if($this->updateOrder($res,$billingRecord->transaction->id,'NX')){
|
833 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
834 |
-
$this->order
|
835 |
if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
|
836 |
$this->saveWallet($res['privateDataList']['privateData'][1]->value);
|
837 |
}
|
@@ -856,6 +897,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
856 |
}
|
857 |
|
858 |
Mage::helper('payline/logger')->log('[nxNotifAction] ' .$this->order->getIncrementId().$msgLog);
|
|
|
859 |
$redirectUrl = $this->_getPaymentRefusedRedirectUrl();
|
860 |
}
|
861 |
$this->order->save();
|
@@ -868,7 +910,7 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
868 |
*/
|
869 |
public function cptCancelAction(){
|
870 |
$res = Mage::helper('payline')->initPayline('CPT')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
|
871 |
-
|
872 |
if (isset($res['privateDataList']['privateData']['value'])){
|
873 |
$orderRef=$res['privateDataList']['privateData']['value'];
|
874 |
}else{
|
@@ -894,10 +936,12 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
894 |
} elseif (substr($res['result']['code'], 0, 2)=='01' || substr($res['result']['code'],0,3)=='021'){
|
895 |
//Invalid transaction or error during the process on Payline side
|
896 |
//No error display, the customer is already told on the Payline side
|
|
|
897 |
$msg='PAYLINE ERROR : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
898 |
Mage::helper('payline/logger')->log('[cptCancelAction] ' .$this->order->getIncrementId().$msg);
|
899 |
$cancelStatus=Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
900 |
}else{
|
|
|
901 |
$msg='PAYLINE INFO : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
902 |
//Transaction cancelled by customer
|
903 |
$cancelStatus = Mage::getStoreConfig('payment/payline_common/canceled_order_status');
|
@@ -933,10 +977,12 @@ class Monext_Payline_IndexController extends Mage_Core_Controller_Front_Action
|
|
933 |
} elseif (substr($res['result']['code'], 0, 2)=='01' || substr($res['result']['code'],0,3)=='021'){
|
934 |
//Invalid transaction or error during the process on Payline side
|
935 |
//No error display, the customer is already told on the Payline side
|
|
|
936 |
$msg='PAYLINE ERROR : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
937 |
Mage::helper('payline/logger')->log('[nxCancelAction] ' .$this->order->getIncrementId().$msg);
|
938 |
$cancelStatus=Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
939 |
}else{
|
|
|
940 |
$msg='PAYLINE INFO : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
941 |
//Transaction cancelled by customer
|
942 |
$cancelStatus = Mage::getStoreConfig('payment/payline_common/canceled_order_status');
|
157 |
|
158 |
if($res['result']['code']){
|
159 |
|
160 |
+
if($res['result']['code'] == '00000' || $res['result']['code'] == '02500' || $res['result']['code'] == '04003'){ // transaction OK
|
161 |
$orderOk = true;
|
162 |
|
163 |
if($paymentType == 'NX'){
|
231 |
$helperPayline = Mage::helper('payline');
|
232 |
$paylineSDK = $helperPayline->initPayline('CPT',$array['payment']['currency']);
|
233 |
$paymentMethod = $this->order->getPayment()->getCcType();
|
234 |
+
$array['payment']['action'] = Mage::getStoreConfig('payment/PaylineCPT/payline_payment_action');
|
235 |
if($paymentMethod) {
|
236 |
+
// debut ajout FSZ 15/11/2012
|
237 |
+
Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - customer selected contract '.$paymentMethod);
|
238 |
+
if($paymentMethod == 'LEETCHI'){
|
239 |
+
Mage::helper('payline/logger')->log('[cptAction] order '.$array['order']['ref'].' - LEETCHI selected => payment action is forced to 101');
|
240 |
+
$array['payment']['action'] = '101';
|
241 |
+
}
|
242 |
+
// fin ajout FSZ 15/11/2012
|
243 |
$array['payment']['contractNumber'] = $paymentMethod;
|
244 |
$array['contracts'] = array($paymentMethod);
|
245 |
} else {
|
246 |
$array['payment']['contractNumber'] = $helperPayline->contractNumber;
|
247 |
}
|
|
|
248 |
$array['payment']['mode'] = 'CPT';
|
249 |
|
250 |
//second contracts
|
424 |
|
425 |
if($this->updateOrder($detail_result,$detail_result['transaction']['id'], 'DIRECT')){
|
426 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
427 |
+
if($detail_result['result']['code'] == '04003') {
|
428 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
|
429 |
+
} else {
|
430 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
|
431 |
+
}
|
432 |
+
Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
|
433 |
|
434 |
$array['wallet']['lastName'] = $array['buyer']['lastName'];
|
435 |
$array['wallet']['firstName'] = $array['buyer']['firstName'];
|
554 |
|
555 |
if(is_array($detail_result) && $this->updateOrder($detail_result,$detail_result['transaction']['id'], 'WALLET')){
|
556 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
557 |
+
if($detail_result['result']['code'] == '04003') {
|
558 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
|
559 |
+
} else {
|
560 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
|
561 |
+
}
|
562 |
+
Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
|
563 |
Mage::helper('payline')->automateCreateInvoiceAtShopReturn('WALLET', $this->order);
|
564 |
$this->order->save();
|
565 |
Mage_Core_Controller_Varien_Action::_redirectSuccess($redirectUrl);
|
721 |
$res = Mage::helper('payline')->initPayline('CPT')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
|
722 |
|
723 |
$this->_getCustomerSession()->setWebPaymentDetails($res);
|
724 |
+
|
725 |
+
if (isset($res['privateDataList']['privateData']['value'])){
|
726 |
+
$orderRef=$res['privateDataList']['privateData']['value'];
|
727 |
}else{
|
728 |
+
foreach ($res['privateDataList']['privateData'] as $privateDataList){
|
729 |
+
if($privateDataList->key == 'orderRef'){
|
730 |
+
$orderRef = $privateDataList->value;
|
731 |
+
}
|
732 |
+
}
|
733 |
+
}
|
734 |
+
|
735 |
+
if (!isset($orderRef)){
|
736 |
+
$msgLog='Couldn\'t find order increment id in cpt payment result';
|
737 |
+
Mage::helper('payline/logger')->log('[cptNotifAction] ' .$this->order->getIncrementId().$msgLog);
|
738 |
+
$this->_redirectUrl($this->_getPaymentRefusedRedirectUrl());
|
739 |
+
return;
|
740 |
}
|
741 |
+
$this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
|
742 |
+
|
743 |
//If order is still new, notifAction haven't been called yet
|
744 |
if ($this->order->getState()==Mage_Sales_Model_Order::STATE_NEW){
|
745 |
Mage_Core_Controller_Varien_Action::_redirectSuccess($this->cptNotifAction());
|
746 |
}
|
747 |
+
|
748 |
+
if($res['result']['code'] == '00000' || $res['result']['code'] == '04003'){
|
749 |
$this->_redirect('checkout/onepage/success');
|
|
|
750 |
}else{
|
751 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is refused'));
|
752 |
$this->_redirectUrl($this->_getPaymentRefusedRedirectUrl());
|
|
|
753 |
}
|
754 |
}
|
755 |
|
786 |
$this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
|
787 |
$payment = $this->order->getPayment();
|
788 |
if ($payment->getBaseAmountPaid() != $payment->getBaseAmountOrdered()) {
|
789 |
+
if($res['result']['code'] == '04003') {
|
790 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
|
791 |
+
} else {
|
792 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
|
793 |
+
}
|
794 |
$failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
795 |
if(is_array($res) && $this->updateOrder($res,$res['transaction']['id'], 'CPT')){
|
796 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
797 |
+
Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
|
798 |
if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
|
799 |
$this->saveWallet($res['privateDataList']['privateData'][1]->value);
|
800 |
}
|
848 |
$this->order = Mage::getModel('sales/order')->loadByIncrementId($orderRef);
|
849 |
|
850 |
|
851 |
+
if($res['result']['code'] == '04003') {
|
852 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/fraud_order_status');
|
853 |
+
} else {
|
854 |
+
$newOrderStatus = Mage::getStoreConfig('payment/payline_common/new_order_status');
|
855 |
+
}
|
856 |
$failedOrderStatus = Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
857 |
|
858 |
+
if(isset($res['billingRecordList']['billingRecord'])){
|
859 |
+
$size = sizeof($res['billingRecordList']['billingRecord']);
|
860 |
+
}else{
|
861 |
+
$size = 0;
|
862 |
+
}
|
863 |
+
$billingRecord = false;
|
864 |
for($i=0;$i<$size;$i++){
|
865 |
if($res['billingRecordList']['billingRecord'][$i]->status == 1){
|
866 |
$txnId = $res['billingRecordList']['billingRecord'][$i]->transaction->id;
|
870 |
}
|
871 |
}
|
872 |
|
873 |
+
if($billingRecord && $this->updateOrder($res,$billingRecord->transaction->id,'NX')){
|
874 |
$redirectUrl = Mage::getBaseUrl()."checkout/onepage/success/";
|
875 |
+
Mage::helper('payline')->setOrderStatus($this->order, $newOrderStatus);
|
876 |
if (isset($res['privateDataList']['privateData'][1]) && $res['privateDataList']['privateData'][1]->key=="newWalletId" && $res['privateDataList']['privateData'][1]->value!=''){
|
877 |
$this->saveWallet($res['privateDataList']['privateData'][1]->value);
|
878 |
}
|
897 |
}
|
898 |
|
899 |
Mage::helper('payline/logger')->log('[nxNotifAction] ' .$this->order->getIncrementId().$msgLog);
|
900 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is refused'));
|
901 |
$redirectUrl = $this->_getPaymentRefusedRedirectUrl();
|
902 |
}
|
903 |
$this->order->save();
|
910 |
*/
|
911 |
public function cptCancelAction(){
|
912 |
$res = Mage::helper('payline')->initPayline('CPT')->getWebPaymentDetails(array('token' => $_GET['token'], 'version' => Monext_Payline_Helper_Data::VERSION));
|
913 |
+
|
914 |
if (isset($res['privateDataList']['privateData']['value'])){
|
915 |
$orderRef=$res['privateDataList']['privateData']['value'];
|
916 |
}else{
|
936 |
} elseif (substr($res['result']['code'], 0, 2)=='01' || substr($res['result']['code'],0,3)=='021'){
|
937 |
//Invalid transaction or error during the process on Payline side
|
938 |
//No error display, the customer is already told on the Payline side
|
939 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is refused'));
|
940 |
$msg='PAYLINE ERROR : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
941 |
Mage::helper('payline/logger')->log('[cptCancelAction] ' .$this->order->getIncrementId().$msg);
|
942 |
$cancelStatus=Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
943 |
}else{
|
944 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is canceled'));
|
945 |
$msg='PAYLINE INFO : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
946 |
//Transaction cancelled by customer
|
947 |
$cancelStatus = Mage::getStoreConfig('payment/payline_common/canceled_order_status');
|
977 |
} elseif (substr($res['result']['code'], 0, 2)=='01' || substr($res['result']['code'],0,3)=='021'){
|
978 |
//Invalid transaction or error during the process on Payline side
|
979 |
//No error display, the customer is already told on the Payline side
|
980 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is refused'));
|
981 |
$msg='PAYLINE ERROR : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
982 |
Mage::helper('payline/logger')->log('[nxCancelAction] ' .$this->order->getIncrementId().$msg);
|
983 |
$cancelStatus=Mage::getStoreConfig('payment/payline_common/failed_order_status');
|
984 |
}else{
|
985 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('payline')->__('Your payment is canceled'));
|
986 |
$msg='PAYLINE INFO : '.$res['result']['code']. ' '.$res['result']['shortMessage'] . ' (' . $res['result']['longMessage'].')';
|
987 |
//Transaction cancelled by customer
|
988 |
$cancelStatus = Mage::getStoreConfig('payment/payline_common/canceled_order_status');
|
app/code/community/Monext/Payline/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Monext_Payline>
|
5 |
-
<version>1.7.
|
6 |
</Monext_Payline>
|
7 |
</modules>
|
8 |
<global>
|
@@ -210,6 +210,7 @@
|
|
210 |
<canceled_order_status>canceled</canceled_order_status>
|
211 |
<new_order_status>processing</new_order_status>
|
212 |
<init_order_status>pending</init_order_status>
|
|
|
213 |
<automate_wallet_subscription>1</automate_wallet_subscription>
|
214 |
<primary_max_fail_retry>1</primary_max_fail_retry>
|
215 |
<primary_call_timeout>15</primary_call_timeout>
|
@@ -253,4 +254,4 @@
|
|
253 |
</PaylineWALLET>
|
254 |
</payment>
|
255 |
</default>
|
256 |
-
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Monext_Payline>
|
5 |
+
<version>1.7.4</version>
|
6 |
</Monext_Payline>
|
7 |
</modules>
|
8 |
<global>
|
210 |
<canceled_order_status>canceled</canceled_order_status>
|
211 |
<new_order_status>processing</new_order_status>
|
212 |
<init_order_status>pending</init_order_status>
|
213 |
+
<fraud_order_status>pending</fraud_order_status>
|
214 |
<automate_wallet_subscription>1</automate_wallet_subscription>
|
215 |
<primary_max_fail_retry>1</primary_max_fail_retry>
|
216 |
<primary_call_timeout>15</primary_call_timeout>
|
254 |
</PaylineWALLET>
|
255 |
</payment>
|
256 |
</default>
|
257 |
+
</config>
|
app/code/community/Monext/Payline/etc/system.xml
CHANGED
@@ -127,6 +127,16 @@
|
|
127 |
<show_in_website>1</show_in_website>
|
128 |
<show_in_store>1</show_in_store>
|
129 |
</resignation_order_status>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
<automate_wallet_subscription translate="label comment">
|
131 |
<label>Automate wallet subscription</label>
|
132 |
<comment>A customer wallet will be created with the first payment using Payline</comment>
|
@@ -191,6 +201,16 @@
|
|
191 |
<show_in_website>1</show_in_website>
|
192 |
<show_in_store>1</show_in_store>
|
193 |
</custom_payment_page_code>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
<redirect_message translate="label">
|
195 |
<label>Redirection message</label>
|
196 |
<frontend_type>textarea</frontend_type>
|
@@ -288,6 +308,16 @@
|
|
288 |
<show_in_website>1</show_in_website>
|
289 |
<show_in_store>1</show_in_store>
|
290 |
</custom_payment_page_code>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
<redirect_message translate="label">
|
292 |
<label>Redirection message</label>
|
293 |
<frontend_type>textarea</frontend_type>
|
@@ -422,6 +452,16 @@
|
|
422 |
<show_in_website>1</show_in_website>
|
423 |
<show_in_store>1</show_in_store>
|
424 |
</custom_payment_page_code>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
<payline_register-oneclick_customeraccount translate="label">
|
426 |
<label>registration CMS block id in customer account</label>
|
427 |
<frontend_type>select</frontend_type>
|
127 |
<show_in_website>1</show_in_website>
|
128 |
<show_in_store>1</show_in_store>
|
129 |
</resignation_order_status>
|
130 |
+
<fraud_order_status translate="label">
|
131 |
+
<label>Order status when a fraud is suspected</label>
|
132 |
+
<comment></comment>
|
133 |
+
<frontend_type>select</frontend_type>
|
134 |
+
<source_model>payline/datasource_status</source_model>
|
135 |
+
<sort_order>156</sort_order>
|
136 |
+
<show_in_default>1</show_in_default>
|
137 |
+
<show_in_website>1</show_in_website>
|
138 |
+
<show_in_store>1</show_in_store>
|
139 |
+
</fraud_order_status>
|
140 |
<automate_wallet_subscription translate="label comment">
|
141 |
<label>Automate wallet subscription</label>
|
142 |
<comment>A customer wallet will be created with the first payment using Payline</comment>
|
201 |
<show_in_website>1</show_in_website>
|
202 |
<show_in_store>1</show_in_store>
|
203 |
</custom_payment_page_code>
|
204 |
+
<custom_payment_page_code_ua_regexp translate="comment">
|
205 |
+
<label></label>
|
206 |
+
<frontend_model>adminhtml/system_config_form_field_regexceptions</frontend_model>
|
207 |
+
<backend_model>adminhtml/system_config_backend_design_exception</backend_model>
|
208 |
+
<sort_order>41</sort_order>
|
209 |
+
<show_in_default>1</show_in_default>
|
210 |
+
<show_in_website>1</show_in_website>
|
211 |
+
<show_in_store>1</show_in_store>
|
212 |
+
<comment>Match expressions in the same order as displayed in the configuration.</comment>
|
213 |
+
</custom_payment_page_code_ua_regexp>
|
214 |
<redirect_message translate="label">
|
215 |
<label>Redirection message</label>
|
216 |
<frontend_type>textarea</frontend_type>
|
308 |
<show_in_website>1</show_in_website>
|
309 |
<show_in_store>1</show_in_store>
|
310 |
</custom_payment_page_code>
|
311 |
+
<custom_payment_page_code_ua_regexp translate="comment">
|
312 |
+
<label></label>
|
313 |
+
<frontend_model>adminhtml/system_config_form_field_regexceptions</frontend_model>
|
314 |
+
<backend_model>adminhtml/system_config_backend_design_exception</backend_model>
|
315 |
+
<sort_order>41</sort_order>
|
316 |
+
<show_in_default>1</show_in_default>
|
317 |
+
<show_in_website>1</show_in_website>
|
318 |
+
<show_in_store>1</show_in_store>
|
319 |
+
<comment>Match expressions in the same order as displayed in the configuration.</comment>
|
320 |
+
</custom_payment_page_code_ua_regexp>
|
321 |
<redirect_message translate="label">
|
322 |
<label>Redirection message</label>
|
323 |
<frontend_type>textarea</frontend_type>
|
452 |
<show_in_website>1</show_in_website>
|
453 |
<show_in_store>1</show_in_store>
|
454 |
</custom_payment_page_code>
|
455 |
+
<custom_payment_page_code_ua_regexp translate="comment">
|
456 |
+
<label></label>
|
457 |
+
<frontend_model>adminhtml/system_config_form_field_regexceptions</frontend_model>
|
458 |
+
<backend_model>adminhtml/system_config_backend_design_exception</backend_model>
|
459 |
+
<sort_order>41</sort_order>
|
460 |
+
<show_in_default>1</show_in_default>
|
461 |
+
<show_in_website>1</show_in_website>
|
462 |
+
<show_in_store>1</show_in_store>
|
463 |
+
<comment>Match expressions in the same order as displayed in the configuration.</comment>
|
464 |
+
</custom_payment_page_code_ua_regexp>
|
465 |
<payline_register-oneclick_customeraccount translate="label">
|
466 |
<label>registration CMS block id in customer account</label>
|
467 |
<frontend_type>select</frontend_type>
|
app/locale/en_US/Monext_Payline.csv
CHANGED
@@ -136,4 +136,6 @@
|
|
136 |
"Costs amount/percentage","Costs amount/percentage"
|
137 |
"Payline fees","Payline fees"
|
138 |
"Return options","Return options"
|
139 |
-
"Page to return when payment is refused","Page to return when payment is refused"
|
|
|
|
136 |
"Costs amount/percentage","Costs amount/percentage"
|
137 |
"Payline fees","Payline fees"
|
138 |
"Return options","Return options"
|
139 |
+
"Page to return when payment is refused","Page to return when payment is refused"
|
140 |
+
"Your payment is refused","Your payment is refused"
|
141 |
+
"Your payment is canceled","Your payment is canceled"
|
app/locale/fr_FR/Monext_Payline.csv
CHANGED
@@ -148,4 +148,6 @@
|
|
148 |
"Costs amount/percentage","Montant des frais fixe/pourcentage"
|
149 |
"Payline fees","Frais Payline"
|
150 |
"Return options","Option de retour à la boutique"
|
151 |
-
"Page to return when payment is refused","Page de retour si le paiement est refusé"
|
|
|
|
148 |
"Costs amount/percentage","Montant des frais fixe/pourcentage"
|
149 |
"Payline fees","Frais Payline"
|
150 |
"Return options","Option de retour à la boutique"
|
151 |
+
"Page to return when payment is refused","Page de retour si le paiement est refusé"
|
152 |
+
"Your payment is refused","Votre paiement est refusé"
|
153 |
+
"Your payment is canceled","Votre paiement est annulé"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payline</name>
|
4 |
-
<version>1.7.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Profitez dès à présent de l’essor du marché de la vente à distance en proposant à vos clients une solution de paiement totalement sécurisée. Grâce à Payline vous permettez à vos clients de régler avec leur moyen de paiement habituel, quel que soit votre canal de vente. Vous leur proposez une interface de paiement facile à utiliser, en mesure de vous accompagner dans votre développement à l’international, en toute simplicité.</description>
|
11 |
<notes>Payline payment module</notes>
|
12 |
<authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
|
13 |
-
<date>2012-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="13b7c449e07ef729fbac8caa708decd1"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="05040427f41fb110db974ff5a3eb6ba9"/></dir><file name="Edit.php" hash="7f026d56bfd7a7b03e9e1ad9263a008e"/><file name="Grid.php" hash="5c4415830c82854ec9013bbd611d9ce0"/></dir><file name="Managecontracts.php" hash="343434dde00ba5d5ba35ed255c44a98e"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="c7cd82866d8788ff32d42df8fcdc11f8"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="cd28c26f717481421bfab12c55ab5378"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="df9fd2acea6ca2be213bfd5e335cedd6"/></dir><file name="Cpt.php" hash="85df4f91ef5ca13f14ca3c15a6ff29e3"/><file name="Direct.php" hash="a176d97fe09a830fbb82d517a71c7049"/><dir name="Info"><file name="Direct.php" hash="45e68950f8e0fede01a0e26848367a5e"/></dir><file name="Logo.php" hash="2b7784f040f04489448fbc13b05ffe74"/><file name="Nx.php" hash="e4fd920c944abe9963f76e111e90ba48"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="bbd8b30f2a37e83ce295295f0fe10ebf"/><file name="Details.php" hash="03cb96bd76d2265b842677b2a6825303"/><file name="Infos.php" hash="ae673ceafb630efbf0308657f766a816"/><file name="Sidebar.php" hash="db70b60be9aa20316f91b3fa3a23a2b9"/></dir><file name="Wallet.php" hash="6326c9e76c84777597f30a89d718ccb4"/></dir><dir name="Helper"><file name="Data.php" hash="e5567b46a6e4f4731f36b96f769001e2"/><file name="Logger.php" hash="6b7cf036fdf2e6df2cb7fa645c8912b9"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="67919f148f5d50a266b92e8a32e833f1"/></dir><file name="Contract.php" hash="75ac4b82964f0b87f7b30c4fb0f6b638"/><file name="Cpt.php" hash="280beeee92e40c4b934343963738af5b"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><dir name="Cms"><file name="Block.php" hash="eee43f517c9e29e51f0ca21fdc7b74ed"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="1c67f2af87583aae049c86cb4dcdf881"/><dir name="Status"><file name="Canceled.php" hash="c4e799efcb052536081339520c7b72c2"/><file name="Invoice.php" hash="b2cbeeaf4e78ec4545f6d45faba1922e"/></dir><file name="Status.php" hash="893648bdaa413d2ec2e5243a2f63c9d8"/></dir><file name="Direct.php" hash="d7bde5b06b400fb9362a527d556287c2"/><file name="Fees.php" hash="d51c983f019b43e70516b71e163e9a28"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="be0834927cd3f5c2e9297661550cc8ae"/><dir name="Status"><file name="Collection.php" hash="3a76926bcab21729191a4045fa9662f7"/></dir><file name="Status.php" hash="d4dd5fdff720ced491887f649b66f3ad"/></dir><file name="Contract.php" hash="0351133a419374084608df1a216584f1"/><dir name="Fees"><file name="Collection.php" hash="b00bb0ec3e0a75a2435f6c55d3eea02c"/></dir><file name="Fees.php" hash="c398d9290276806d03af8631a09eac63"/></dir><file name="Nx.php" hash="830433cc06e92665fd554fe0030070f0"/><file name="Observer.php" hash="22f7bc9b9b9de006c07389bf79e05c8d"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="f0cb886cd65e23ec397e651d7913ea9e"/></dir></dir></dir><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="6ead6df53b6169709797d6c08cd4d16c"/><file name="Quote.php" hash="8e7ab3cc36d180c600bb28192193567b"/></dir></dir><file name="Wallet.php" hash="b114d566bd102eb6e25c3070be79303f"/></dir><dir name="PaylinePHPKit"><dir name="configuration"><file name="HighDefinition.ini" hash="689dc8f1ba03e0c04ae6a8758df38f1b"/></dir><dir name="lib"><file name="Payline.wsdl" hash="e8cfcc182f30b639d91891e68bdfa933"/><file name="jIniFileModifier.php" hash="f7d309bd1fb8f408528151b0555b188c"/><file name="lib_debug.php" hash="9cec1fd5e55fd625b98b03ca336214d1"/><file name="paylineSDK.php" hash="dd096145cc5937e52941f3147026c9be"/></dir><dir name="logs"><file name="2012-10-08.log" hash="b26b967385eb5705f6f7b12a258cf96a"/><file name="2012-10-09.log" hash="fc8df8709fb490cd656e48b18f4e2b87"/><file name="2012-10-10.log" hash="3cc496b4e5bb4a490233b35c3b4c4d79"/><file name="2012-10-11.log" hash="da5498f69741d5d1c6ce4d9da9800fbd"/><file name="2012-10-12.log" hash="b184f3393fabf0949551cc012768693b"/><file name="2012-10-15.log" hash="ee45381aa2f4feee39860e8c1eeb463a"/><file name="2012-10-16.log" hash="3d963db27d175bdf3a6198a36c398a75"/><file name="2012-10-17.log" hash="f9c27fd1aa3a8d3cd5cabe65725c7aff"/><file name="2012-10-18.log" hash="26c6f514b20c934409ce64672ba9cc8a"/><file name="2012-10-19.log" hash="9a9a1b0b4a6b138609d8e47b2a5f5d04"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ManagecontractsController.php" hash="21102497011939afe08697fb85261523"/></dir><file name="CheckoutonepageController.php" hash="da35bdb14ac62a258479b44011dacc01"/><file name="IndexController.php" hash="b6f0a64e276c8c781b4ef64f8a36050c"/><file name="UnloggedwalletController.php" hash="90af5be8a8fa8dd1b2e29a442c0b7aab"/><file name="WalletController.php" hash="68e4591c26c2d178b7a5cb1ef6cb7fb1"/></dir><dir name="etc"><file name="config.xml" hash="3cdd39818c096a19c28fae5bf3d4a98d"/><file name="system.xml" hash="c7a1e856c7e754ed821a8fffd4edf755"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="0488c4cfab8321f91ec7a9adaf482837"/></dir><dir name="template"><dir name="payline"><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="f329f2458afeba4cd5f7a56e6a038ac6"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="d5a78eb6488ad0985a4fd62bd10e05e3"/><file name="Direct.phtml" hash="08167b333ce1380879ebaea26c1362ca"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><dir name="info"><file name="default.phtml" hash="4689f891bab252ff10bb789d37e9bc2b"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="1f19d5af1a65cd7b5f4debf785bba49a"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="b850cc0f8b99d4486dedebc7c913d363"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="b8d7e336b994261f66f1a9af5841661e"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="994c98abd9b4f2f68f76eefe20c637d1"/><dir name="sidebar"><file name="form.phtml" hash="b7662b515f5195faada2736cf38b01aa"/><file name="notlogged.phtml" hash="169ccfe11034a47c74a9a78e0eac6046"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="d6ff98113ab17d2b19ee89d7a80cf7e9"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="e45b6f5b6401e348671a1c52dbef30b6"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="70ec201c0dc146907a2a258a86c02cfe"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="payline.css" hash="414432db8dc1d0682f4988917bd8dd6f"/></dir><dir name="images"><file name="ae.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="amex.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="vi.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="visa.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="payline-logo.png" hash="553b387e92d95aef92a35f332e75cac4"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="8d5e4917497ba61120090e166014886d"/><file name="3xcb.png" hash="c76c834e238d3a8e3b3b4a2c116f189c"/><file name="amex.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="amexoneclick.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="aurore.png" hash="e2be3e130bd1212d9375a3bdb354cb78"/><file name="buyster.png" hash="8ec0f280dccd1c18c84cfbd368c6f579"/><file name="casino.png" hash="ce5b159bc98c7f71e8149e1d8b256dbd"/><file name="cb.png" hash="bd8890f0147d451bf1a488d4e268332c"/><file name="cofinoga.png" hash="1dd7025dd22ac998aa968b38693a6a71"/><file name="cyrillus.png" hash="f762ad007f552bf409f5baa610f6746a"/><file name="default.png" hash="26c2dff177e1f8a94994352f6a7cec88"/><file name="diners.png" hash="6c907b8f0233b035ec4c27c2e9542406"/><file name="elv.png" hash="d0bd93c59ef64709b9a5cd81ff557e28"/><file name="fnac.png" hash="c0a7aa595b18fb52105d9337fda3eb1c"/><file name="ideal.png" hash="e0594aed23073daab150d8288a81103c"/><file name="internetplus.png" hash="fe1bc34531cfd6fd3dab6a6614e7ca3f"/><file name="jcb.png" hash="9801aeed2550ffccbdc3fe88b5292a60"/><file name="kangourou.png" hash="5fac97aa8f70380ec3b601ff32fdc012"/><file name="leetchi.png" hash="ecf6612b0228b889c723498f476c4309"/><file name="maestro.png" hash="19d331ae4783d590dba694cbcbb26da9"/><file name="mandarine.png" hash="745a8999468f60753c9c51a0052c527a"/><file name="mastercard.png" hash="cb7aa4a6f3870145295c4ce16a602d1e"/><file name="maxicheque.png" hash="fc3e2988c9944467fc8d4e44b4118a32"/><file name="mcvisa.png" hash="ba6349155be595d6da5ee584241c2946"/><file name="moneo.png" hash="283cf98332a5c05521229282875a158d"/><file name="neosurf.png" hash="9a747833ce3d9cbb3c26d4a11d7e4b4b"/><file name="okshopping.png" hash="8498bd45cf87124d12c4bfbf81272f14"/><file name="pass.png" hash="adb923e16cd9419960a51d0d41f26f97"/><file name="passvisa.png" hash="bd88d99714e9a3ba5000f881a0289f58"/><file name="payfair.png" hash="82f5dc87ea6f43f386b0e4887f33e5e8"/><file name="paypal.png" hash="2e9a634ffb111e1ce20b5e9017a35b29"/><file name="paysafecard.png" hash="a6776e5140ad443596587e3de12cd6a2"/><file name="printemps.png" hash="072cde23d8600c39457cf02a983b6d7f"/><file name="privilege.png" hash="883c70c0ce1c5bac23865397b0b63c5c"/><file name="skrill.png" hash="5d77ac7b63309a8691c27628aad9f60a"/><file name="sofinco.png" hash="93081c5cb7ce8ba216bbc42019cde8d3"/><file name="surcouf.png" hash="d8633f7d4b47460faac4e8657ce42f4d"/><file name="switch.png" hash="e2924bb36ad3de3d3ee61fa4dc3ffa8b"/><file name="ticketpremium.png" hash="5146987c213691e20a5461d7eed59f09"/><file name="ticketsurf.png" hash="bcd9aeb8b2784ea6a06e80cc2b2393ec"/><file name="visa.png" hash="bd8890f0147d451bf1a488d4e268332c"/><file name="wexpay.png" hash="1f3bb2ec092f283a8b27c66e2c32f22f"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Payline</name>
|
4 |
+
<version>1.7.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Profitez dès à présent de l’essor du marché de la vente à distance en proposant à vos clients une solution de paiement totalement sécurisée. Grâce à Payline vous permettez à vos clients de régler avec leur moyen de paiement habituel, quel que soit votre canal de vente. Vous leur proposez une interface de paiement facile à utiliser, en mesure de vous accompagner dans votre développement à l’international, en toute simplicité.</description>
|
11 |
<notes>Payline payment module</notes>
|
12 |
<authors><author><name>Payline</name><user>Payline</user><email>support@payline.com</email></author></authors>
|
13 |
+
<date>2012-12-19</date>
|
14 |
+
<time>08:59:12</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Monext"><dir name="Payline"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="13b7c449e07ef729fbac8caa708decd1"/></dir><dir name="Managecontracts"><dir name="Edit"><file name="Form.php" hash="05040427f41fb110db974ff5a3eb6ba9"/></dir><file name="Edit.php" hash="7f026d56bfd7a7b03e9e1ad9263a008e"/><file name="Grid.php" hash="5c4415830c82854ec9013bbd611d9ce0"/></dir><file name="Managecontracts.php" hash="343434dde00ba5d5ba35ed255c44a98e"/><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Create"><file name="Items.php" hash="c7cd82866d8788ff32d42df8fcdc11f8"/></dir></dir><dir name="Total"><file name="Nxfees.php" hash="cd28c26f717481421bfab12c55ab5378"/></dir></dir></dir></dir><dir name="Checkout"><file name="Total.php" hash="df9fd2acea6ca2be213bfd5e335cedd6"/></dir><file name="Cpt.php" hash="85df4f91ef5ca13f14ca3c15a6ff29e3"/><file name="Direct.php" hash="a176d97fe09a830fbb82d517a71c7049"/><dir name="Info"><file name="Direct.php" hash="45e68950f8e0fede01a0e26848367a5e"/></dir><file name="Logo.php" hash="2b7784f040f04489448fbc13b05ffe74"/><file name="Nx.php" hash="e4fd920c944abe9963f76e111e90ba48"/><dir name="Wallet"><file name="Checkoutbtn.php" hash="bbd8b30f2a37e83ce295295f0fe10ebf"/><file name="Details.php" hash="03cb96bd76d2265b842677b2a6825303"/><file name="Infos.php" hash="ae673ceafb630efbf0308657f766a816"/><file name="Sidebar.php" hash="db70b60be9aa20316f91b3fa3a23a2b9"/></dir><file name="Wallet.php" hash="6326c9e76c84777597f30a89d718ccb4"/></dir><dir name="Helper"><file name="Data.php" hash="ef5f079d40a7bb718c09ee60004ebb1a"/><file name="Logger.php" hash="6b7cf036fdf2e6df2cb7fa645c8912b9"/></dir><dir name="Model"><dir name="Contract"><file name="Status.php" hash="67919f148f5d50a266b92e8a32e833f1"/></dir><file name="Contract.php" hash="75ac4b82964f0b87f7b30c4fb0f6b638"/><file name="Cpt.php" hash="ae40cc4e4749b5e5faf1d887451daf90"/><dir name="Datasource"><file name="Actions.php" hash="2152344a8bd5fbf7dbe711c58f97356c"/><file name="Billingcycles.php" hash="bef244e6d9e744fbbc3afed9cc2050f9"/><file name="Billingoccurrences.php" hash="581ce23ec626ed71791b13c7b11fe6db"/><dir name="Cms"><file name="Block.php" hash="eee43f517c9e29e51f0ca21fdc7b74ed"/></dir><file name="Costs.php" hash="ac09cf06fbe9a1fabddb2a4727dd696f"/><file name="Languages.php" hash="17053eec4880c5c5b1f233a3ca9f0bda"/><file name="Paymentactions.php" hash="6c4aae3b1b4e8b987a4da7393a3a92eb"/><file name="Return.php" hash="d8fac75b41a931a4714ed8acf846d9a2"/><file name="Securitymodes.php" hash="06c55b65e9254d96fa87595322839932"/><file name="Shippingmethods.php" hash="1c67f2af87583aae049c86cb4dcdf881"/><dir name="Status"><file name="Canceled.php" hash="c4e799efcb052536081339520c7b72c2"/><file name="Invoice.php" hash="b2cbeeaf4e78ec4545f6d45faba1922e"/></dir><file name="Status.php" hash="893648bdaa413d2ec2e5243a2f63c9d8"/></dir><file name="Direct.php" hash="d7bde5b06b400fb9362a527d556287c2"/><file name="Fees.php" hash="d51c983f019b43e70516b71e163e9a28"/><dir name="Mysql4"><dir name="Contract"><file name="Collection.php" hash="be0834927cd3f5c2e9297661550cc8ae"/><dir name="Status"><file name="Collection.php" hash="3a76926bcab21729191a4045fa9662f7"/></dir><file name="Status.php" hash="d4dd5fdff720ced491887f649b66f3ad"/></dir><file name="Contract.php" hash="0351133a419374084608df1a216584f1"/><dir name="Fees"><file name="Collection.php" hash="b00bb0ec3e0a75a2435f6c55d3eea02c"/></dir><file name="Fees.php" hash="c398d9290276806d03af8631a09eac63"/></dir><file name="Nx.php" hash="830433cc06e92665fd554fe0030070f0"/><file name="Observer.php" hash="22f7bc9b9b9de006c07389bf79e05c8d"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="f0cb886cd65e23ec397e651d7913ea9e"/></dir></dir></dir><dir name="Total"><dir name="Nx"><file name="Invoice.php" hash="6ead6df53b6169709797d6c08cd4d16c"/><file name="Quote.php" hash="8e7ab3cc36d180c600bb28192193567b"/></dir></dir><file name="Wallet.php" hash="b114d566bd102eb6e25c3070be79303f"/></dir><dir name="PaylinePHPKit"><dir name="configuration"><file name="HighDefinition.ini" hash="689dc8f1ba03e0c04ae6a8758df38f1b"/></dir><dir name="lib"><file name="Payline.wsdl" hash="e8cfcc182f30b639d91891e68bdfa933"/><file name="jIniFileModifier.php" hash="f7d309bd1fb8f408528151b0555b188c"/><file name="lib_debug.php" hash="9cec1fd5e55fd625b98b03ca336214d1"/><file name="paylineSDK.php" hash="ec231c2cc9a025a7715acd0f1e7fa1e2"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ManagecontractsController.php" hash="1a45c5e30f44adaf9b6f1059cb23ee52"/></dir><file name="CheckoutonepageController.php" hash="da35bdb14ac62a258479b44011dacc01"/><file name="IndexController.php" hash="32dbf48be80fa0bcd48ad0dfe8eb2a52"/><file name="UnloggedwalletController.php" hash="90af5be8a8fa8dd1b2e29a442c0b7aab"/><file name="WalletController.php" hash="68e4591c26c2d178b7a5cb1ef6cb7fb1"/></dir><dir name="etc"><file name="config.xml" hash="01a3e84db9408c34f730c663dbfde0cf"/><file name="system.xml" hash="a5e3cd90780f6ce9084e8413c83c726d"/></dir><dir name="sql"><dir name="payline_setup"><file name="mysql4-install-1.6.0.php" hash="ed5013f743ba36a7b2884fc432f97e16"/><file name="mysql4-upgrade-1.7.2-1.7.3.php" hash="7eeb0f5cfc6c379d8300428a5ec39c46"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="0488c4cfab8321f91ec7a9adaf482837"/></dir><dir name="template"><dir name="payline"><file name="contracts.phtml" hash="6d398a529e799880533d954f53f6df96"/><dir name="customer"><dir name="tab"><file name="view.phtml" hash="1c3d9c842c802967bc867ff2be008504"/></dir></dir><file name="switcher.phtml" hash="ced863f3f520e271497c0a6bcc4b38e4"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="payline.xml" hash="f329f2458afeba4cd5f7a56e6a038ac6"/></dir><dir name="template"><dir name="payline"><file name="Cpt.phtml" hash="d5a78eb6488ad0985a4fd62bd10e05e3"/><file name="Direct.phtml" hash="08167b333ce1380879ebaea26c1362ca"/><file name="Payline.phtml" hash="dc264172e5a6c5ae627b697208dff65d"/><dir name="checkout"><dir name="onepage"><dir name="info"><file name="default.phtml" hash="4689f891bab252ff10bb789d37e9bc2b"/></dir><file name="shipping-method.phtml" hash="a81a9f308f15008842bfd9ba69852aa9"/></dir><file name="onepage.phtml" hash="1f19d5af1a65cd7b5f4debf785bba49a"/><file name="total.phtml" hash="24170fbb2b43da6fc3d4a51db4b80d7a"/></dir><file name="iframe.phtml" hash="4a841413fa569be79b31464fc8f9a88a"/><file name="iframeleaver.phtml" hash="b617751653aa68ada738385a3959e863"/><file name="logo.phtml" hash="b850cc0f8b99d4486dedebc7c913d363"/><dir name="page"><file name="empty.phtml" hash="02134361869217c7445f46af028a050a"/></dir><dir name="wallet"><file name="checkoutbtn.phtml" hash="612617f342e05a34f6a2a618e3bf9162"/><file name="details.phtml" hash="b8d7e336b994261f66f1a9af5841661e"/><file name="form.phtml" hash="7358f21e31266c65982afb15239e659f"/><file name="manage.phtml" hash="994c98abd9b4f2f68f76eefe20c637d1"/><dir name="sidebar"><file name="form.phtml" hash="b7662b515f5195faada2736cf38b01aa"/><file name="notlogged.phtml" hash="169ccfe11034a47c74a9a78e0eac6046"/></dir><file name="sidebar.phtml" hash="2113b8dba864cd94b241dc7ecd6dff0a"/><file name="subscribe.phtml" hash="a737e95240e262e91ec01a02e2ce97a2"/><file name="update.phtml" hash="1b7048c9a839b0b0994beaf5e72b755c"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Monext_Payline.xml" hash="d6ff98113ab17d2b19ee89d7a80cf7e9"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Monext_Payline.csv" hash="b2d6b503c16f3c9f589cead3f6ccf24b"/></dir><dir name="fr_FR"><file name="Monext_Payline.csv" hash="3dbaf43cd8ab9f4f10c426acdeca03d2"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="payline.css" hash="414432db8dc1d0682f4988917bd8dd6f"/></dir><dir name="images"><file name="ae.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="amex.gif" hash="bac424b0cfaa43bdba4d8d8425878159"/><file name="cb.gif" hash="4ced25b94a1720cb786cdff1debc1535"/><file name="mastercard.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="mc.gif" hash="c2b21baeafcb69c8e6bef8b3f0aa550c"/><file name="vi.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="visa.gif" hash="639ee8e26a7f7c4dfefb3bfbbcefbdd2"/><file name="payline-logo.png" hash="553b387e92d95aef92a35f332e75cac4"/><dir name="payline_moyens_paiement"><file name="1euro.png" hash="8d5e4917497ba61120090e166014886d"/><file name="3xcb.png" hash="c76c834e238d3a8e3b3b4a2c116f189c"/><file name="amex.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="amexoneclick.png" hash="a47d6bfc7eb4e06f3e3acb8a55cfd3c9"/><file name="aurore.png" hash="e2be3e130bd1212d9375a3bdb354cb78"/><file name="buyster.png" hash="8ec0f280dccd1c18c84cfbd368c6f579"/><file name="casino.png" hash="ce5b159bc98c7f71e8149e1d8b256dbd"/><file name="cb.png" hash="a5d9178bc831cbc78238dff27f79a48b"/><file name="cofinoga.png" hash="1dd7025dd22ac998aa968b38693a6a71"/><file name="cyrillus.png" hash="f762ad007f552bf409f5baa610f6746a"/><file name="default.png" hash="26c2dff177e1f8a94994352f6a7cec88"/><file name="diners.png" hash="6c907b8f0233b035ec4c27c2e9542406"/><file name="elv.png" hash="d0bd93c59ef64709b9a5cd81ff557e28"/><file name="fnac.png" hash="c0a7aa595b18fb52105d9337fda3eb1c"/><file name="ideal.png" hash="e0594aed23073daab150d8288a81103c"/><file name="internetplus.png" hash="fe1bc34531cfd6fd3dab6a6614e7ca3f"/><file name="jcb.png" hash="9801aeed2550ffccbdc3fe88b5292a60"/><file name="kangourou.png" hash="5fac97aa8f70380ec3b601ff32fdc012"/><file name="leetchi.png" hash="ecf6612b0228b889c723498f476c4309"/><file name="maestro.png" hash="19d331ae4783d590dba694cbcbb26da9"/><file name="mandarine.png" hash="745a8999468f60753c9c51a0052c527a"/><file name="mastercard.png" hash="cb7aa4a6f3870145295c4ce16a602d1e"/><file name="maxicheque.png" hash="fc3e2988c9944467fc8d4e44b4118a32"/><file name="mcvisa.png" hash="ba6349155be595d6da5ee584241c2946"/><file name="moneo.png" hash="283cf98332a5c05521229282875a158d"/><file name="neosurf.png" hash="9a747833ce3d9cbb3c26d4a11d7e4b4b"/><file name="okshopping.png" hash="8498bd45cf87124d12c4bfbf81272f14"/><file name="pass.png" hash="adb923e16cd9419960a51d0d41f26f97"/><file name="passvisa.png" hash="bd88d99714e9a3ba5000f881a0289f58"/><file name="payfair.png" hash="82f5dc87ea6f43f386b0e4887f33e5e8"/><file name="paypal.png" hash="2e9a634ffb111e1ce20b5e9017a35b29"/><file name="paysafecard.png" hash="a6776e5140ad443596587e3de12cd6a2"/><file name="printemps.png" hash="072cde23d8600c39457cf02a983b6d7f"/><file name="privilege.png" hash="883c70c0ce1c5bac23865397b0b63c5c"/><file name="skrill.png" hash="5d77ac7b63309a8691c27628aad9f60a"/><file name="sofinco.png" hash="93081c5cb7ce8ba216bbc42019cde8d3"/><file name="surcouf.png" hash="d8633f7d4b47460faac4e8657ce42f4d"/><file name="switch.png" hash="e2924bb36ad3de3d3ee61fa4dc3ffa8b"/><file name="ticketpremium.png" hash="5146987c213691e20a5461d7eed59f09"/><file name="ticketsurf.png" hash="bcd9aeb8b2784ea6a06e80cc2b2393ec"/><file name="visa.png" hash="bd8890f0147d451bf1a488d4e268332c"/><file name="wexpay.png" hash="1f3bb2ec092f283a8b27c66e2c32f22f"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
skin/frontend/default/default/images/payline_moyens_paiement/cb.png
CHANGED
Binary file
|