From 3a2f9a2fe671c68184c976b879ac3eea34d0eee2 Mon Sep 17 00:00:00 2001 From: Rodney Figaro Date: Fri, 2 Sep 2016 18:22:58 +0200 Subject: [PATCH] display google map popup info on changing delivery adress --- modules/envoimoinscher/views/js/carrier.js | 143 +- modules/paypal/api/Results.txt | 5533 -------------------- 2 files changed, 71 insertions(+), 5605 deletions(-) delete mode 100644 modules/paypal/api/Results.txt diff --git a/modules/envoimoinscher/views/js/carrier.js b/modules/envoimoinscher/views/js/carrier.js index 64a87f8c..97f22a42 100644 --- a/modules/envoimoinscher/views/js/carrier.js +++ b/modules/envoimoinscher/views/js/carrier.js @@ -65,55 +65,68 @@ function selectPoint(ref, operator, address) alert(carrier_translation.no_pickup_point_found_try_other_addr); } else { - res = '

' + carrier_translation.select_pickup_point1 + '' + carrier_translation.select_pickup_point2 + '

' + + res = '

' + carrier_translation.select_pickup_point1 + carrier_translation.select_pickup_point2+' :

' + ''+ '
'; $('#points' + ref + address).show(); $('#points' + ref + address).html(res); $('#loaderPoints' + ref + address).remove(); - if (typeof $(parcelPointId) != "undefined" && typeof $(parcelPointId) != "") { - $(parcelPointId).attr("checked", true); - $(parcelPointId).attr("checked", "checked"); - } makeMap('MONR', ref, address); - + if (typeof $(parcelPointId) != "undefined" && typeof $(parcelPointId) != "") { + $(parcelPointId).attr("checked", "checked"); + } } } }); } + /** + */ +var geocoder = new google.maps.Geocoder(); +var infowindow = new google.maps.InfoWindow(); + +infowindow.openCustomMarker = function(map, marker) +{ + if (map !== undefined && marker !== undefined) { + infowindow.setContent(marker.get('bulkContent')); + infowindow.open(map, marker); + } +}; + +infowindow.openMarkerFromPosition = function(map, markers, position) +{ + infowindow.openCustomMarker(map, markers.find(function(marker) { + mpos = marker.getPosition(); + return (mpos.lat()==position.lat() && mpos.lng()==position.lng()); + })); +}; + +var markers = []; + +/** + * Constructs Google Map. * Handles map making. If the map has already been opened, show only the
. Otherwise * generate the Google Maps. */ -function makeMap(ope, carrierdId, address) -{ - // initialize(ope, carrierdId, address); - customInitialize(ope, carrierdId, address); -} -/** - * Constructs Google Map. - */ - -function customInitialize(ope, carrierdId, addressId) +function makeMap(ope, carrierdId, addressId) { $('#counter' + carrierdId + ope).val(0); - document.getElementById('mapContainer_custom').style.display = 'inline-block'; - geocoder = new google.maps.Geocoder(); var myOptions = { zoom: 11, mapTypeId: google.maps.MapTypeId.ROADMAP }; var addressId = addressId; var carrierdId = carrierdId; - infowindow = new google.maps.InfoWindow(); map = new google.maps.Map(document.getElementById("map_canvas_custom"), myOptions); + points = $('#parcelPoints' + carrierdId + ope + addressId).val().split('|'); infos = $('#parcelInfos' + carrierdId + ope + addressId).val().split('|'); parcelNames = $('#parcelNames' + carrierdId + ope + addressId).val().split('|'); parcelIds = $('#parcelIds' + carrierdId + ope + addressId).val().split('|'); + for (var i = 0; i < points.length; i++) { (function (i) { var address = points[i]; @@ -128,69 +141,29 @@ function customInitialize(ope, carrierdId, addressId) })(i); } document.getElementById('mapContainer_custom').style.display = 'inline-block'; + } -/** - * Constructs Google Map. - */ - /* -function initialize(ope, carrierdId, addressId) -{ - $('#counter' + carrierdId + ope).val(0); - document.getElementById('mapContainer').style.display = 'block'; - // set offset on the middle of the page (or top of the page for small screens) - var offset = $(window).scrollTop() + ($(window).height() - $('#mapContainer').height())/2; - if (offset < $(window).scrollTop()) { - offset = $(window).scrollTop(); - } - $('#mapContainer').css('top', offset + 'px'); - geocoder = new google.maps.Geocoder(); - var myOptions = { - zoom: 11, - mapTypeId: google.maps.MapTypeId.ROADMAP - }; - var addressId = addressId; - var carrierdId = carrierdId; - infowindow = new google.maps.InfoWindow(); - map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); - points = $('#parcelPoints' + carrierdId + ope + addressId).val().split('|'); - infos = $('#parcelInfos' + carrierdId + ope + addressId).val().split('|'); - parcelNames = $('#parcelNames' + carrierdId + ope + addressId).val().split('|'); - parcelIds = $('#parcelIds' + carrierdId + ope + addressId).val().split('|'); - for (var i = 0; i < points.length; i++) { - (function (i) { - var address = points[i]; - infoParcel[i] = '' + parcelNames[i] + '' + '
' + carrier_translation.select_this_pickup_point + '
' + address + '
' + infos[i]; - if (geocoder) { - geocoder.geocode({'address': address}, function (results, status) { - if (status == google.maps.GeocoderStatus.OK) { - makeMarker(i, results[0].geometry.location); - } - }); - } - })(i); - } - document.getElementById('mapContainer').style.display = 'block'; -} -*/ - /** * Makes Google Maps markers. */ function makeMarker(s, location) { - map.setCenter(location); var marker = new google.maps.Marker({ map: map, position: location, title: "" + parcelNames[s] }); marker.set("bulkContent", infoParcel[s]); + google.maps.event.addListener(marker, "click", function () { - infowindow.setContent(this.get("bulkContent")); - infowindow.open(map, marker); + infowindow.openCustomMarker(map, marker); }); + markers.push(marker); + + map.setCenter(location); + } /** @@ -214,24 +187,50 @@ function hideMap() */ function selectPr(pr, carrierId, addressId) { + ope = 'MONR'; + infowindow.close(); + makeOpeChecked(carrierId, 0, 0, addressId); $.ajax({ url: 'index.php?fc=module&module=envoimoinscher&controller=ajax&option=set_point', type: 'POST', data: {'point': pr} }); - $('#point' + carrierId + pr + addressId).attr('checked', 'checked'); - $('#point' + carrierId + pr + addressId).attr('checked', true); - parcelPointId = '#point' + carrierId + pr + addressId; - getCarrierInput($('#point' + carrierId + pr + addressId)).attr('checked', 'checked'); - getCarrierInput($('#point' + carrierId + pr + addressId)).attr('checked', true); - // hideMap(); + parcelPointId = '#point' + carrierId + pr + addressId; + $(parcelPointId).attr('checked', 'checked'); + + var parcelsId = $('#parcelIds' + carrierId + ope + addressId); + var addresses = $('#parcelPoints' + carrierId + ope + addressId); + + + if (geocoder && parcelsId.length && addresses.length ) { + var parcelIds = parcelsId.val().split('|'); + + var index = parcelIds.findIndex(function(id) { return id==pr;}); + if (index>=0) { + addresses = addresses.val().split('|'); + var address = addresses[index]; + + geocoder.geocode({'address': address}, function (results, status) { + if (status == google.maps.GeocoderStatus.OK) { + var pos = results[0].geometry.location; + + map.setCenter(pos); + + infowindow.openMarkerFromPosition(map, markers, pos); + + } + }); + } + + } } /** * Gets carrier radio input */ + function getCarrierInput(ref) { return ref.parent().parent().parent().parent().find('input[name="delivery_option[' + idAddress + ']"]'); diff --git a/modules/paypal/api/Results.txt b/modules/paypal/api/Results.txt deleted file mode 100644 index 9d369cdb..00000000 --- a/modules/paypal/api/Results.txt +++ /dev/null @@ -1,5533 +0,0 @@ -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=22&L_PAYMENTREQUEST_0_NAME0=D%C3%A9griseur+bois+nettoyant+bois+-+WoodGuard+Revitalisant+5L+&L_PAYMENTREQUEST_0_DESC0=D%C3%A9griseur+bois+WoodGuard+Revitalisant+permet+de+do...&L_PAYMENTREQUEST_0_AMT0=86.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=86.4&PAYMENTREQUEST_0_AMT=86.40&ADDROVERRIDE=1&EMAIL=phimartin%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=philippe+martin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607093163&PAYMENTREQUEST_0_SHIPTOSTREET=marine+de+canelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=canari&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=20217&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2E725734PC815511D&TIMESTAMP=2016%2d07%2d01T11%3a21%3a05Z&CORRELATIONID=da84663042e09&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=22&L_PAYMENTREQUEST_0_NAME0=D%C3%A9griseur+bois+nettoyant+bois+-+WoodGuard+Revitalisant+5L+&L_PAYMENTREQUEST_0_DESC0=D%C3%A9griseur+bois+WoodGuard+Revitalisant+permet+de+do...&L_PAYMENTREQUEST_0_AMT0=86.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=86.4&PAYMENTREQUEST_0_AMT=86.40&ADDROVERRIDE=1&EMAIL=phimartin%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=philippe+martin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607093163&PAYMENTREQUEST_0_SHIPTOSTREET=marine+de+canelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=canari&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=20217&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2E725734PC815511D -Result : TOKEN=EC%2d2E725734PC815511D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d01T11%3a21%3a58Z&CORRELATIONID=cd0565bc8e783&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=phimartin%40wanadoo%2efr&PAYERID=TKXLJ65MCDVKQ&PAYERSTATUS=verified&FIRSTNAME=PHILIPPE&LASTNAME=MARTIN&COUNTRYCODE=FR&SHIPTONAME=Philippe%20MARTIN&SHIPTOSTREET=MARINE%20DE%20CANELLE&SHIPTOCITY=CANARI&SHIPTOZIP=20217&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0607093163&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=86%2e40&ITEMAMT=86%2e40&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9griseur%20bois%20nettoyant%20bois%20%2d%20WoodGuard%20Revitalisant%205L%20&L_NUMBER0=22&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=86%2e40&L_DESC0=D%c3%a9griseur%20bois%20WoodGuard%20Revitalisant%20permet%20de%20do%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=86%2e40&PAYMENTREQUEST_0_ITEMAMT=86%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Philippe%20MARTIN&PAYMENTREQUEST_0_SHIPTOSTREET=MARINE%20DE%20CANELLE&PAYMENTREQUEST_0_SHIPTOCITY=CANARI&PAYMENTREQUEST_0_SHIPTOZIP=20217&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607093163&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9griseur%20bois%20nettoyant%20bois%20%2d%20WoodGuard%20Revitalisant%205L%20&L_PAYMENTREQUEST_0_NUMBER0=22&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=86%2e40&L_PAYMENTREQUEST_0_DESC0=D%c3%a9griseur%20bois%20WoodGuard%20Revitalisant%20permet%20de%20do%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2E725734PC815511D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2E725734PC815511D&PAYERID=TKXLJ65MCDVKQ&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=22&L_PAYMENTREQUEST_0_NAME0=D%C3%A9griseur+bois+nettoyant+bois+-+WoodGuard+Revitalisant+5L+&L_PAYMENTREQUEST_0_DESC0=D%C3%A9griseur+bois+WoodGuard+Revitalisant+permet+de+do...&L_PAYMENTREQUEST_0_AMT0=86.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=86.4&PAYMENTREQUEST_0_AMT=86.40&ADDROVERRIDE=1&EMAIL=phimartin%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=philippe+martin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607093163&PAYMENTREQUEST_0_SHIPTOSTREET=marine+de+canelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=canari&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=20217 -Result : TOKEN=EC%2d2E725734PC815511D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d01T11%3a22%3a01Z&CORRELATIONID=c12fd001c8fe0&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6V449311F9081805D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d01T11%3a22%3a00Z&PAYMENTINFO_0_AMT=86%2e40&PAYMENTINFO_0_FEEAMT=3%2e19&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2E725734PC815511D&PAYERID=TKXLJ65MCDVKQ&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=22&L_PAYMENTREQUEST_0_NAME0=D%C3%A9griseur+bois+nettoyant+bois+-+WoodGuard+Revitalisant+5L+&L_PAYMENTREQUEST_0_DESC0=D%C3%A9griseur+bois+WoodGuard+Revitalisant+permet+de+do...&L_PAYMENTREQUEST_0_AMT0=86.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=86.4&PAYMENTREQUEST_0_AMT=86.40&ADDROVERRIDE=1&EMAIL=phimartin%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=philippe+martin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607093163&PAYMENTREQUEST_0_SHIPTOSTREET=marine+de+canelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=canari&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=20217 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.09&PAYMENTREQUEST_0_AMT=29.09&ADDROVERRIDE=1&EMAIL=bigeargeal%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jacqueline++Bigeargeal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143215117&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+Deparcieux&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75014&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3SV35557HS5342419&TIMESTAMP=2016%2d07%2d01T12%3a08%3a50Z&CORRELATIONID=eeeb4becf3342&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.09&PAYMENTREQUEST_0_AMT=29.09&ADDROVERRIDE=1&EMAIL=bigeargeal%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jacqueline++Bigeargeal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143215117&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+Deparcieux&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75014&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3SV35557HS5342419 -Result : TOKEN=EC%2d3SV35557HS5342419&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d01T12%3a09%3a02Z&CORRELATIONID=72a450d810a92&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=bigeargeal%40gmail%2ecom&PAYERID=84ST3TRGZVYX2&PAYERSTATUS=verified&FIRSTNAME=jacqueline&LASTNAME=bigeargeal&COUNTRYCODE=FR&SHIPTONAME=Jacqueline%20Bigeargeal&SHIPTOSTREET=10%20rue%20deparcieux&SHIPTOCITY=paris&SHIPTOZIP=75014&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0143215117&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=29%2e09&ITEMAMT=23%2e09&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Oiseaux&L_NAME1=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME2=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=224&L_NUMBER1=163&L_NUMBER2=721&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=19%2e90&L_AMT1=3%2e19&L_AMT2=0%2e00&L_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&L_DESC1=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC2=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=29%2e09&PAYMENTREQUEST_0_ITEMAMT=23%2e09&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Jacqueline%20Bigeargeal&PAYMENTREQUEST_0_SHIPTOSTREET=10%20rue%20deparcieux&PAYMENTREQUEST_0_SHIPTOCITY=paris&PAYMENTREQUEST_0_SHIPTOZIP=75014&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143215117&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Oiseaux&L_PAYMENTREQUEST_0_NAME1=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_AMT1=3%2e19&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3SV35557HS5342419 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3SV35557HS5342419&PAYERID=84ST3TRGZVYX2&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.09&PAYMENTREQUEST_0_AMT=29.09&ADDROVERRIDE=1&EMAIL=bigeargeal%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jacqueline++Bigeargeal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143215117&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+Deparcieux&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75014 -Result : TOKEN=EC%2d3SV35557HS5342419&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d01T12%3a09%3a05Z&CORRELATIONID=baf95ada3d42a&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3AJ22431UD150125G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d01T12%3a09%3a03Z&PAYMENTINFO_0_AMT=29%2e09&PAYMENTINFO_0_FEEAMT=1%2e24&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3SV35557HS5342419&PAYERID=84ST3TRGZVYX2&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.09&PAYMENTREQUEST_0_AMT=29.09&ADDROVERRIDE=1&EMAIL=bigeargeal%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jacqueline++Bigeargeal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143215117&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+Deparcieux&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75014 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=255&L_PAYMENTREQUEST_0_NAME2=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC2=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT2=8.07&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=63&L_PAYMENTREQUEST_0_NAME3=Spray+nettoyant+anti-calcaire+salle+de+bain+au+vinaigre+blanc-+740ml&L_PAYMENTREQUEST_0_DESC3=Nettoyant+anti-calcaire+sans+substances+officielle...&L_PAYMENTREQUEST_0_AMT3=3.74&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=71&L_PAYMENTREQUEST_0_NAME4=Recharge+Lessive+peaux+sensibles+30+lavages+2L&L_PAYMENTREQUEST_0_DESC4=La+lessive+Peaux+sensibles+%C3%89colabel+L%E2%80%99ARBRE+VERT+e...&L_PAYMENTREQUEST_0_AMT4=8.24&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=106&L_PAYMENTREQUEST_0_NAME5=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC5=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT5=6.25&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=357&L_PAYMENTREQUEST_0_NAME6=Masque+Argile+verte++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC6=Masque+conseill%C3%A9+pour+les+peaux+mixtes+%C3%A0+grasses.C...&L_PAYMENTREQUEST_0_AMT6=1.2&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=359&L_PAYMENTREQUEST_0_NAME7=Masque+Argile+Rose+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC7=Protecteur+et+remin%C3%A9ralisant%2C+le+Masque+%C3%A0+l%27Argile...&L_PAYMENTREQUEST_0_AMT7=1.2&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=168&L_PAYMENTREQUEST_0_NAME8=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC8=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT8=5.45&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=314&L_PAYMENTREQUEST_0_NAME9=Gommage+%C3%A0+l%27argile+blanche+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC9=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux+%3A+purifie%2C+adouci...&L_PAYMENTREQUEST_0_AMT9=1.2&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=59&L_PAYMENTREQUEST_0_NAME10=L%27Arbre+Vert+Liquide+de+rin%C3%A7age+750ml&L_PAYMENTREQUEST_0_DESC10=Liquide+de+rin%C3%A7age+lave-vaisselle+%C3%A9cologique+Elabo...&L_PAYMENTREQUEST_0_AMT10=4&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=721&L_PAYMENTREQUEST_0_NAME11=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC11=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.89&PAYMENTREQUEST_0_AMT=51.89&ADDROVERRIDE=1&EMAIL=ivicevic.sp%40aliceadsl.fr&PAYMENTREQUEST_0_SHIPTONAME=Patricia+Ivicevic&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+19+20+63+02&PAYMENTREQUEST_0_SHIPTOSTREET=7+Bis+rue+Beaumont&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d80W51156T3393821V&TIMESTAMP=2016%2d07%2d01T15%3a01%3a10Z&CORRELATIONID=9352bee5a844&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=255&L_PAYMENTREQUEST_0_NAME2=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC2=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT2=8.07&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=63&L_PAYMENTREQUEST_0_NAME3=Spray+nettoyant+anti-calcaire+salle+de+bain+au+vinaigre+blanc-+740ml&L_PAYMENTREQUEST_0_DESC3=Nettoyant+anti-calcaire+sans+substances+officielle...&L_PAYMENTREQUEST_0_AMT3=3.74&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=71&L_PAYMENTREQUEST_0_NAME4=Recharge+Lessive+peaux+sensibles+30+lavages+2L&L_PAYMENTREQUEST_0_DESC4=La+lessive+Peaux+sensibles+%C3%89colabel+L%E2%80%99ARBRE+VERT+e...&L_PAYMENTREQUEST_0_AMT4=8.24&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=106&L_PAYMENTREQUEST_0_NAME5=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC5=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT5=6.25&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=357&L_PAYMENTREQUEST_0_NAME6=Masque+Argile+verte++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC6=Masque+conseill%C3%A9+pour+les+peaux+mixtes+%C3%A0+grasses.C...&L_PAYMENTREQUEST_0_AMT6=1.2&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=359&L_PAYMENTREQUEST_0_NAME7=Masque+Argile+Rose+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC7=Protecteur+et+remin%C3%A9ralisant%2C+le+Masque+%C3%A0+l%27Argile...&L_PAYMENTREQUEST_0_AMT7=1.2&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=168&L_PAYMENTREQUEST_0_NAME8=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC8=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT8=5.45&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=314&L_PAYMENTREQUEST_0_NAME9=Gommage+%C3%A0+l%27argile+blanche+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC9=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux+%3A+purifie%2C+adouci...&L_PAYMENTREQUEST_0_AMT9=1.2&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=59&L_PAYMENTREQUEST_0_NAME10=L%27Arbre+Vert+Liquide+de+rin%C3%A7age+750ml&L_PAYMENTREQUEST_0_DESC10=Liquide+de+rin%C3%A7age+lave-vaisselle+%C3%A9cologique+Elabo...&L_PAYMENTREQUEST_0_AMT10=4&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=721&L_PAYMENTREQUEST_0_NAME11=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC11=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.89&PAYMENTREQUEST_0_AMT=51.89&ADDROVERRIDE=1&EMAIL=ivicevic.sp%40aliceadsl.fr&PAYMENTREQUEST_0_SHIPTONAME=Patricia+Ivicevic&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+19+20+63+02&PAYMENTREQUEST_0_SHIPTOSTREET=7+Bis+rue+Beaumont&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-80W51156T3393821V -Result : TOKEN=EC%2d80W51156T3393821V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d01T15%3a01%3a31Z&CORRELATIONID=b777cf8822f46&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=ivicevic%2esp%40aliceadsl%2efr&PAYERID=77P2VWYKJK87G&PAYERSTATUS=verified&FIRSTNAME=Slobodan&LASTNAME=Ivicevic&COUNTRYCODE=FR&SHIPTONAME=Patricia%20Ivicevic&SHIPTOSTREET=7%20bis%20rue%20beaumont&SHIPTOCITY=nice&SHIPTOZIP=06300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=06%2019%2020%2063%2002&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=51%2e89&ITEMAMT=51%2e89&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_NAME2=Nettoyant%20gel%20WC%20Romarin%20x3&L_NAME3=Spray%20nettoyant%20anti%2dcalcaire%20salle%20de%20bain%20au%20vinaigre%20blanc%2d%20740ml&L_NAME4=Recharge%20Lessive%20peaux%20sensibles%2030%20lavages%202L&L_NAME5=Huile%20100%20%25%20naturelle%20P%c3%a2querettes&L_NAME6=Masque%20Argile%20verte%20%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_NAME7=Masque%20Argile%20Rose%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_NAME8=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_NAME9=Gommage%20%c3%a0%20l%27argile%20blanche%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_NAME10=L%27Arbre%20Vert%20Liquide%20de%20rin%c3%a7age%20750ml&L_NAME11=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=163&L_NUMBER1=164&L_NUMBER2=255&L_NUMBER3=63&L_NUMBER4=71&L_NUMBER5=106&L_NUMBER6=357&L_NUMBER7=359&L_NUMBER8=168&L_NUMBER9=314&L_NUMBER10=59&L_NUMBER11=721&L_QTY0=2&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_QTY6=1&L_QTY7=1&L_QTY8=1&L_QTY9=1&L_QTY10=1&L_QTY11=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_TAXAMT6=0%2e00&L_TAXAMT7=0%2e00&L_TAXAMT8=0%2e00&L_TAXAMT9=0%2e00&L_TAXAMT10=0%2e00&L_TAXAMT11=0%2e00&L_AMT0=3%2e19&L_AMT1=6%2e16&L_AMT2=8%2e07&L_AMT3=3%2e74&L_AMT4=8%2e24&L_AMT5=6%2e25&L_AMT6=1%2e20&L_AMT7=1%2e20&L_AMT8=5%2e45&L_AMT9=1%2e20&L_AMT10=4%2e00&L_AMT11=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_DESC2=Le%20gel%20WC%2c%20nettoyant%20et%20d%c3%a9tartrant%20%c3%a9cologique%20cert%2e%2e%2e&L_DESC3=Nettoyant%20anti%2dcalcaire%20sans%20substances%20officielle%2e%2e%2e&L_DESC4=La%20lessive%20Peaux%20sensibles%20%c3%89colabel%20L%e2%80%99ARBRE%20VERT%20e%2e%2e%2e&L_DESC5=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20aux%20f%2e%2e%2e&L_DESC6=Masque%20conseill%c3%a9%20pour%20les%20peaux%20mixtes%20%c3%a0%20grasses%2eC%2e%2e%2e&L_DESC7=Protecteur%20et%20remin%c3%a9ralisant%2c%20le%20Masque%20%c3%a0%20l%27Argile%2e%2e%2e&L_DESC8=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&L_DESC9=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%20%3a%20purifie%2c%20adouci%2e%2e%2e&L_DESC10=Liquide%20de%20rin%c3%a7age%20lave%2dvaisselle%20%c3%a9cologique%20Elabo%2e%2e%2e&L_DESC11=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=51%2e89&PAYMENTREQUEST_0_ITEMAMT=51%2e89&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Patricia%20Ivicevic&PAYMENTREQUEST_0_SHIPTOSTREET=7%20bis%20rue%20beaumont&PAYMENTREQUEST_0_SHIPTOCITY=nice&PAYMENTREQUEST_0_SHIPTOZIP=06300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=06%2019%2020%2063%2002&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Nettoyant%20gel%20WC%20Romarin%20x3&L_PAYMENTREQUEST_0_NAME3=Spray%20nettoyant%20anti%2dcalcaire%20salle%20de%20bain%20au%20vinaigre%20blanc%2d%20740ml&L_PAYMENTREQUEST_0_NAME4=Recharge%20Lessive%20peaux%20sensibles%2030%20lavages%202L&L_PAYMENTREQUEST_0_NAME5=Huile%20100%20%25%20naturelle%20P%c3%a2querettes&L_PAYMENTREQUEST_0_NAME6=Masque%20Argile%20verte%20%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_PAYMENTREQUEST_0_NAME7=Masque%20Argile%20Rose%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_PAYMENTREQUEST_0_NAME8=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_PAYMENTREQUEST_0_NAME9=Gommage%20%c3%a0%20l%27argile%20blanche%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_PAYMENTREQUEST_0_NAME10=L%27Arbre%20Vert%20Liquide%20de%20rin%c3%a7age%20750ml&L_PAYMENTREQUEST_0_NAME11=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NUMBER2=255&L_PAYMENTREQUEST_0_NUMBER3=63&L_PAYMENTREQUEST_0_NUMBER4=71&L_PAYMENTREQUEST_0_NUMBER5=106&L_PAYMENTREQUEST_0_NUMBER6=357&L_PAYMENTREQUEST_0_NUMBER7=359&L_PAYMENTREQUEST_0_NUMBER8=168&L_PAYMENTREQUEST_0_NUMBER9=314&L_PAYMENTREQUEST_0_NUMBER10=59&L_PAYMENTREQUEST_0_NUMBER11=721&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_QTY11=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_TAXAMT6=0%2e00&L_PAYMENTREQUEST_0_TAXAMT7=0%2e00&L_PAYMENTREQUEST_0_TAXAMT8=0%2e00&L_PAYMENTREQUEST_0_TAXAMT9=0%2e00&L_PAYMENTREQUEST_0_TAXAMT10=0%2e00&L_PAYMENTREQUEST_0_TAXAMT11=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e19&L_PAYMENTREQUEST_0_AMT1=6%2e16&L_PAYMENTREQUEST_0_AMT2=8%2e07&L_PAYMENTREQUEST_0_AMT3=3%2e74&L_PAYMENTREQUEST_0_AMT4=8%2e24&L_PAYMENTREQUEST_0_AMT5=6%2e25&L_PAYMENTREQUEST_0_AMT6=1%2e20&L_PAYMENTREQUEST_0_AMT7=1%2e20&L_PAYMENTREQUEST_0_AMT8=5%2e45&L_PAYMENTREQUEST_0_AMT9=1%2e20&L_PAYMENTREQUEST_0_AMT10=4%2e00&L_PAYMENTREQUEST_0_AMT11=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20gel%20WC%2c%20nettoyant%20et%20d%c3%a9tartrant%20%c3%a9cologique%20cert%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Nettoyant%20anti%2dcalcaire%20sans%20substances%20officielle%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=La%20lessive%20Peaux%20sensibles%20%c3%89colabel%20L%e2%80%99ARBRE%20VERT%20e%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20aux%20f%2e%2e%2e&L_PAYMENTREQUEST_0_DESC6=Masque%20conseill%c3%a9%20pour%20les%20peaux%20mixtes%20%c3%a0%20grasses%2eC%2e%2e%2e&L_PAYMENTREQUEST_0_DESC7=Protecteur%20et%20remin%c3%a9ralisant%2c%20le%20Masque%20%c3%a0%20l%27Argile%2e%2e%2e&L_PAYMENTREQUEST_0_DESC8=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC9=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%20%3a%20purifie%2c%20adouci%2e%2e%2e&L_PAYMENTREQUEST_0_DESC10=Liquide%20de%20rin%c3%a7age%20lave%2dvaisselle%20%c3%a9cologique%20Elabo%2e%2e%2e&L_PAYMENTREQUEST_0_DESC11=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-80W51156T3393821V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-80W51156T3393821V&PAYERID=77P2VWYKJK87G&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=255&L_PAYMENTREQUEST_0_NAME2=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC2=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT2=8.07&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=63&L_PAYMENTREQUEST_0_NAME3=Spray+nettoyant+anti-calcaire+salle+de+bain+au+vinaigre+blanc-+740ml&L_PAYMENTREQUEST_0_DESC3=Nettoyant+anti-calcaire+sans+substances+officielle...&L_PAYMENTREQUEST_0_AMT3=3.74&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=71&L_PAYMENTREQUEST_0_NAME4=Recharge+Lessive+peaux+sensibles+30+lavages+2L&L_PAYMENTREQUEST_0_DESC4=La+lessive+Peaux+sensibles+%C3%89colabel+L%E2%80%99ARBRE+VERT+e...&L_PAYMENTREQUEST_0_AMT4=8.24&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=106&L_PAYMENTREQUEST_0_NAME5=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC5=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT5=6.25&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=357&L_PAYMENTREQUEST_0_NAME6=Masque+Argile+verte++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC6=Masque+conseill%C3%A9+pour+les+peaux+mixtes+%C3%A0+grasses.C...&L_PAYMENTREQUEST_0_AMT6=1.2&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=359&L_PAYMENTREQUEST_0_NAME7=Masque+Argile+Rose+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC7=Protecteur+et+remin%C3%A9ralisant%2C+le+Masque+%C3%A0+l%27Argile...&L_PAYMENTREQUEST_0_AMT7=1.2&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=168&L_PAYMENTREQUEST_0_NAME8=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC8=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT8=5.45&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=314&L_PAYMENTREQUEST_0_NAME9=Gommage+%C3%A0+l%27argile+blanche+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC9=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux+%3A+purifie%2C+adouci...&L_PAYMENTREQUEST_0_AMT9=1.2&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=59&L_PAYMENTREQUEST_0_NAME10=L%27Arbre+Vert+Liquide+de+rin%C3%A7age+750ml&L_PAYMENTREQUEST_0_DESC10=Liquide+de+rin%C3%A7age+lave-vaisselle+%C3%A9cologique+Elabo...&L_PAYMENTREQUEST_0_AMT10=4&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=721&L_PAYMENTREQUEST_0_NAME11=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC11=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.89&PAYMENTREQUEST_0_AMT=51.89&ADDROVERRIDE=1&EMAIL=ivicevic.sp%40aliceadsl.fr&PAYMENTREQUEST_0_SHIPTONAME=Patricia+Ivicevic&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+19+20+63+02&PAYMENTREQUEST_0_SHIPTOSTREET=7+Bis+rue+Beaumont&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06300 -Result : TOKEN=EC%2d80W51156T3393821V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d01T15%3a01%3a34Z&CORRELATIONID=185e93f553cf6&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3J422051LL206513E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d01T15%3a01%3a33Z&PAYMENTINFO_0_AMT=51%2e89&PAYMENTINFO_0_FEEAMT=2%2e01&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-80W51156T3393821V&PAYERID=77P2VWYKJK87G&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=255&L_PAYMENTREQUEST_0_NAME2=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC2=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT2=8.07&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=63&L_PAYMENTREQUEST_0_NAME3=Spray+nettoyant+anti-calcaire+salle+de+bain+au+vinaigre+blanc-+740ml&L_PAYMENTREQUEST_0_DESC3=Nettoyant+anti-calcaire+sans+substances+officielle...&L_PAYMENTREQUEST_0_AMT3=3.74&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=71&L_PAYMENTREQUEST_0_NAME4=Recharge+Lessive+peaux+sensibles+30+lavages+2L&L_PAYMENTREQUEST_0_DESC4=La+lessive+Peaux+sensibles+%C3%89colabel+L%E2%80%99ARBRE+VERT+e...&L_PAYMENTREQUEST_0_AMT4=8.24&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=106&L_PAYMENTREQUEST_0_NAME5=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC5=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT5=6.25&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=357&L_PAYMENTREQUEST_0_NAME6=Masque+Argile+verte++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC6=Masque+conseill%C3%A9+pour+les+peaux+mixtes+%C3%A0+grasses.C...&L_PAYMENTREQUEST_0_AMT6=1.2&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=359&L_PAYMENTREQUEST_0_NAME7=Masque+Argile+Rose+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC7=Protecteur+et+remin%C3%A9ralisant%2C+le+Masque+%C3%A0+l%27Argile...&L_PAYMENTREQUEST_0_AMT7=1.2&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=168&L_PAYMENTREQUEST_0_NAME8=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC8=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT8=5.45&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=314&L_PAYMENTREQUEST_0_NAME9=Gommage+%C3%A0+l%27argile+blanche+CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC9=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux+%3A+purifie%2C+adouci...&L_PAYMENTREQUEST_0_AMT9=1.2&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=59&L_PAYMENTREQUEST_0_NAME10=L%27Arbre+Vert+Liquide+de+rin%C3%A7age+750ml&L_PAYMENTREQUEST_0_DESC10=Liquide+de+rin%C3%A7age+lave-vaisselle+%C3%A9cologique+Elabo...&L_PAYMENTREQUEST_0_AMT10=4&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=721&L_PAYMENTREQUEST_0_NAME11=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC11=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.89&PAYMENTREQUEST_0_AMT=51.89&ADDROVERRIDE=1&EMAIL=ivicevic.sp%40aliceadsl.fr&PAYMENTREQUEST_0_SHIPTONAME=Patricia+Ivicevic&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+19+20+63+02&PAYMENTREQUEST_0_SHIPTOSTREET=7+Bis+rue+Beaumont&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5DR16915UA365973B&TIMESTAMP=2016%2d07%2d01T15%3a25%3a58Z&CORRELATIONID=c30e79cb85927&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5DR16915UA365973B -Result : TOKEN=EC%2d5DR16915UA365973B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d01T15%3a26%3a27Z&CORRELATIONID=586a18cd54a8&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=david%2elesueur0924%40orange%2efr&PAYERID=MVYZ75AE4ETYS&PAYERSTATUS=verified&FIRSTNAME=david&LASTNAME=lesueur&COUNTRYCODE=FR&SHIPTONAME=David%20LESUEUR&SHIPTOSTREET=1%20rue%20de%20Launois&SHIPTOCITY=MARLEMONT&SHIPTOZIP=08290&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0695748358&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=164%2e70&ITEMAMT=164%2e70&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Terre%20coloris%20Parchemin%2015Kg&L_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Zinc%2015kg&L_NUMBER0=279&L_NUMBER1=278&L_QTY0=1&L_QTY1=2&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=54%2e90&L_AMT1=54%2e90&L_DESC0=Les%20couleurs%20profondes%20de%20MAGIC%e2%80%99TERRE%20nous%20envelop%2e%2e%2e&L_DESC1=Magic%e2%80%99B%c3%a9ton%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=164%2e70&PAYMENTREQUEST_0_ITEMAMT=164%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=David%20LESUEUR&PAYMENTREQUEST_0_SHIPTOSTREET=1%20rue%20de%20Launois&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOZIP=08290&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Terre%20coloris%20Parchemin%2015Kg&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Zinc%2015kg&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_AMT1=54%2e90&L_PAYMENTREQUEST_0_DESC0=Les%20couleurs%20profondes%20de%20MAGIC%e2%80%99TERRE%20nous%20envelop%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Magic%e2%80%99B%c3%a9ton%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5DR16915UA365973B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5DR16915UA365973B&PAYERID=MVYZ75AE4ETYS&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290 -Result : TOKEN=EC%2d5DR16915UA365973B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d01T15%3a26%3a30Z&CORRELATIONID=c0a421eb1c65f&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8VK28676DE876681V&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d01T15%3a26%3a28Z&PAYMENTINFO_0_AMT=164%2e70&PAYMENTINFO_0_FEEAMT=5%2e85&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5DR16915UA365973B&PAYERID=MVYZ75AE4ETYS&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=ela_ocal%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Ela+Ocal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652013448&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+du+chemin+vert&PAYMENTREQUEST_0_SHIPTOSTREET2=1+rue+du+chemin+vert&PAYMENTREQUEST_0_SHIPTOCITY=Romainville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1HA46802FP812222G&TIMESTAMP=2016%2d07%2d02T02%3a38%3a29Z&CORRELATIONID=52753176133d4&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=ela_ocal%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Ela+Ocal&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652013448&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+du+chemin+vert&PAYMENTREQUEST_0_SHIPTOSTREET2=1+rue+du+chemin+vert&PAYMENTREQUEST_0_SHIPTOCITY=Romainville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+algues100...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=21.9&PAYMENTREQUEST_0_AMT=27.90&ADDROVERRIDE=1&EMAIL=melanie-berteau%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9lanie+BERTEAU&PAYMENTREQUEST_0_SHIPTOPHONENUM=0473937887&PAYMENTREQUEST_0_SHIPTOSTREET=129+BIS+AVENUE+DE+ROYAT&PAYMENTREQUEST_0_SHIPTOSTREET2=RESIDENCE+LE+SAINT+VICTOR&PAYMENTREQUEST_0_SHIPTOCITY=CHAMALIERES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2XE71391PK8680321&TIMESTAMP=2016%2d07%2d02T09%3a59%3a03Z&CORRELATIONID=c1c34dd54451d&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+algues100...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=21.9&PAYMENTREQUEST_0_AMT=27.90&ADDROVERRIDE=1&EMAIL=melanie-berteau%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9lanie+BERTEAU&PAYMENTREQUEST_0_SHIPTOPHONENUM=0473937887&PAYMENTREQUEST_0_SHIPTOSTREET=129+BIS+AVENUE+DE+ROYAT&PAYMENTREQUEST_0_SHIPTOSTREET2=RESIDENCE+LE+SAINT+VICTOR&PAYMENTREQUEST_0_SHIPTOCITY=CHAMALIERES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XE71391PK8680321 -Result : TOKEN=EC%2d2XE71391PK8680321&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d02T09%3a59%3a56Z&CORRELATIONID=b85dd40a6dd0c&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=melanie%2dberteau%40orange%2efr&PAYERID=XJ3MGJY86PDCL&PAYERSTATUS=verified&FIRSTNAME=M%c3%a9lanie&LASTNAME=BERTEAU&COUNTRYCODE=FR&SHIPTONAME=M%c3%a9lanie%20BERTEAU&SHIPTOSTREET=129%20BIS%20AVENUE%20DE%20ROYAT&SHIPTOSTREET2=RESIDENCE%20LE%20SAINT%20VICTOR&SHIPTOCITY=CHAMALIERES&SHIPTOZIP=63400&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0473937887&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Unconfirmed&CURRENCYCODE=EUR&AMT=27%2e90&ITEMAMT=21%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&L_NAME0=Antimousse%20Curatif%20%2d%20D%27mouss%20Guard%20Eco%205L&L_NAME1=Ballon%20de%20football&L_NAME2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_NUMBER0=360&L_NUMBER1=367&L_NUMBER2=1313&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=21%2e90&L_AMT1=0%2e00&L_AMT2=0%2e00&L_DESC0=Nettoyant%20v%c3%a9g%c3%a9tal%20pour%20mousses%2c%20lichens%2c%20algues100%2e%2e%2e&L_DESC1=%2e%2e%2e&L_DESC2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&L_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_ITEMWEIGHTVALUE2=%20%20%200%2e00000&L_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_ITEMLENGTHVALUE2=%20%20%200%2e00000&L_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_ITEMWIDTHVALUE2=%20%20%200%2e00000&L_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_ITEMHEIGHTVALUE1=%20%20%200%2e00000&L_ITEMHEIGHTVALUE2=%20%20%200%2e00000&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=27%2e90&PAYMENTREQUEST_0_ITEMAMT=21%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=M%c3%a9lanie%20BERTEAU&PAYMENTREQUEST_0_SHIPTOSTREET=129%20BIS%20AVENUE%20DE%20ROYAT&PAYMENTREQUEST_0_SHIPTOSTREET2=RESIDENCE%20LE%20SAINT%20VICTOR&PAYMENTREQUEST_0_SHIPTOCITY=CHAMALIERES&PAYMENTREQUEST_0_SHIPTOZIP=63400&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0473937887&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Unconfirmed&PAYMENTREQUEST_0_ADDRESSNORMALIZATIONSTATUS=None&L_PAYMENTREQUEST_0_NAME0=Antimousse%20Curatif%20%2d%20D%27mouss%20Guard%20Eco%205L&L_PAYMENTREQUEST_0_NAME1=Ballon%20de%20football&L_PAYMENTREQUEST_0_NAME2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=21%2e90&L_PAYMENTREQUEST_0_AMT1=0%2e00&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_DESC0=Nettoyant%20v%c3%a9g%c3%a9tal%20pour%20mousses%2c%20lichens%2c%20algues100%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE2=%20%20%200%2e00000&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XE71391PK8680321 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XE71391PK8680321&PAYERID=XJ3MGJY86PDCL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+algues100...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=21.9&PAYMENTREQUEST_0_AMT=27.90&ADDROVERRIDE=1&EMAIL=melanie-berteau%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9lanie+BERTEAU&PAYMENTREQUEST_0_SHIPTOPHONENUM=0473937887&PAYMENTREQUEST_0_SHIPTOSTREET=129+BIS+AVENUE+DE+ROYAT&PAYMENTREQUEST_0_SHIPTOSTREET2=RESIDENCE+LE+SAINT+VICTOR&PAYMENTREQUEST_0_SHIPTOCITY=CHAMALIERES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63400 -Result : TOKEN=EC%2d2XE71391PK8680321&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d02T10%3a00%3a02Z&CORRELATIONID=988fd298b8ebd&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0N454528C6283402K&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d02T10%3a00%3a00Z&PAYMENTINFO_0_AMT=27%2e90&PAYMENTINFO_0_FEEAMT=1%2e20&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XE71391PK8680321&PAYERID=XJ3MGJY86PDCL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+algues100...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=21.9&PAYMENTREQUEST_0_AMT=27.90&ADDROVERRIDE=1&EMAIL=melanie-berteau%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9lanie+BERTEAU&PAYMENTREQUEST_0_SHIPTOPHONENUM=0473937887&PAYMENTREQUEST_0_SHIPTOSTREET=129+BIS+AVENUE+DE+ROYAT&PAYMENTREQUEST_0_SHIPTOSTREET2=RESIDENCE+LE+SAINT+VICTOR&PAYMENTREQUEST_0_SHIPTOCITY=CHAMALIERES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63400 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=bonmajafre%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marie+Bonnet&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33603631242&PAYMENTREQUEST_0_SHIPTOSTREET=37+avenue+Valrose&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d17H787765T600184B&TIMESTAMP=2016%2d07%2d02T17%3a58%3a47Z&CORRELATIONID=48734a487bb0d&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=bonmajafre%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marie+Bonnet&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33603631242&PAYMENTREQUEST_0_SHIPTOSTREET=37+avenue+Valrose&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-17H787765T600184B -Result : TOKEN=EC%2d17H787765T600184B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d02T17%3a59%3a09Z&CORRELATIONID=a6ffaf291901&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=bonmajafre%40gmail%2ecom&PAYERID=N8J3E9CUMW3EU&PAYERSTATUS=verified&FIRSTNAME=MARIE&LASTNAME=BONNET&COUNTRYCODE=FR&SHIPTONAME=%20Marie%20Bonnet&SHIPTOSTREET=37%20avenue%20Valrose%20&SHIPTOCITY=Nice&SHIPTOSTATE=FR&SHIPTOZIP=06100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33603631242&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Marie%20Bonnet&PAYMENTREQUEST_0_SHIPTOSTREET=37%20avenue%20Valrose%20&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33603631242&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-17H787765T600184B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-17H787765T600184B&PAYERID=N8J3E9CUMW3EU&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=bonmajafre%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marie+Bonnet&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33603631242&PAYMENTREQUEST_0_SHIPTOSTREET=37+avenue+Valrose&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06100 -Result : TOKEN=EC%2d17H787765T600184B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d02T17%3a59%3a11Z&CORRELATIONID=bbe4da4b18f8c&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5ED75063TT787735S&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d02T17%3a59%3a10Z&PAYMENTINFO_0_AMT=18%2e20&PAYMENTINFO_0_FEEAMT=0%2e87&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-17H787765T600184B&PAYERID=N8J3E9CUMW3EU&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=bonmajafre%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marie+Bonnet&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33603631242&PAYMENTREQUEST_0_SHIPTOSTREET=37+avenue+Valrose&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.45&PAYMENTREQUEST_0_AMT=11.45&ADDROVERRIDE=1&EMAIL=Bibinou-93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sabriya++Dida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0777924135&PAYMENTREQUEST_0_SHIPTOSTREET=12+avenue+des+roitelets+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montfermeil+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93370&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9J934559569363043&TIMESTAMP=2016%2d07%2d02T20%3a45%3a19Z&CORRELATIONID=2672c06af9f4&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.45&PAYMENTREQUEST_0_AMT=11.45&ADDROVERRIDE=1&EMAIL=Bibinou-93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sabriya++Dida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0777924135&PAYMENTREQUEST_0_SHIPTOSTREET=12+avenue+des+roitelets+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montfermeil+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93370&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9J934559569363043 -Result : TOKEN=EC%2d9J934559569363043&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d02T20%3a45%3a45Z&CORRELATIONID=e3d64ead24786&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=bibinou%2d93%40hotmail%2efr&PAYERID=3ZP76BYGR8LVL&PAYERSTATUS=verified&FIRSTNAME=sabriya&LASTNAME=belarbi&COUNTRYCODE=FR&SHIPTONAME=Sabriya%20Dida&SHIPTOSTREET=12%20avenue%20des%20roitelets%20&SHIPTOCITY=Montfermeil%20&SHIPTOZIP=93370&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0777924135&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e45&ITEMAMT=5%2e45&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_NUMBER0=168&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e45&L_DESC0=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e45&PAYMENTREQUEST_0_ITEMAMT=5%2e45&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Sabriya%20Dida&PAYMENTREQUEST_0_SHIPTOSTREET=12%20avenue%20des%20roitelets%20&PAYMENTREQUEST_0_SHIPTOCITY=Montfermeil%20&PAYMENTREQUEST_0_SHIPTOZIP=93370&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0777924135&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e45&L_PAYMENTREQUEST_0_DESC0=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9J934559569363043 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9J934559569363043&PAYERID=3ZP76BYGR8LVL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.45&PAYMENTREQUEST_0_AMT=11.45&ADDROVERRIDE=1&EMAIL=Bibinou-93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sabriya++Dida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0777924135&PAYMENTREQUEST_0_SHIPTOSTREET=12+avenue+des+roitelets+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montfermeil+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93370 -Result : TOKEN=EC%2d9J934559569363043&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d02T20%3a45%3a47Z&CORRELATIONID=60a311b641552&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6TA6975328961740U&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d02T20%3a45%3a46Z&PAYMENTINFO_0_AMT=11%2e45&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9J934559569363043&PAYERID=3ZP76BYGR8LVL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.45&PAYMENTREQUEST_0_AMT=11.45&ADDROVERRIDE=1&EMAIL=Bibinou-93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sabriya++Dida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0777924135&PAYMENTREQUEST_0_SHIPTOSTREET=12+avenue+des+roitelets+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montfermeil+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93370 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=rodyparis%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Mohamed+BENGHEZALA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0683374821&PAYMENTREQUEST_0_SHIPTOSTREET=59+Ter+Avenue+Jean+LOLIVE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PANTIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5YR62278DJ8507809&TIMESTAMP=2016%2d07%2d02T21%3a10%3a07Z&CORRELATIONID=209255cd537cc&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=rodyparis%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Mohamed+BENGHEZALA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0683374821&PAYMENTREQUEST_0_SHIPTOSTREET=59+Ter+Avenue+Jean+LOLIVE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PANTIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5YR62278DJ8507809 -Result : TOKEN=EC%2d5YR62278DJ8507809&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d02T21%3a11%3a03Z&CORRELATIONID=42fe69b275068&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=rody75%40free%2efr&PAYERID=NA7Q76LUSFU8L&PAYERSTATUS=verified&FIRSTNAME=mohamed&LASTNAME=benghezala&COUNTRYCODE=FR&SHIPTONAME=mohamed%20benghezala&SHIPTOSTREET=59%20ter%20avenue%20jean%20lolive&SHIPTOCITY=pantin&SHIPTOSTATE=pantin&SHIPTOZIP=93500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0683374821&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=25%2e90&ITEMAMT=19%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NUMBER0=5&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=25%2e90&PAYMENTREQUEST_0_ITEMAMT=19%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=mohamed%20benghezala&PAYMENTREQUEST_0_SHIPTOSTREET=59%20ter%20avenue%20jean%20lolive&PAYMENTREQUEST_0_SHIPTOCITY=pantin&PAYMENTREQUEST_0_SHIPTOSTATE=pantin&PAYMENTREQUEST_0_SHIPTOZIP=93500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0683374821&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5YR62278DJ8507809 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5YR62278DJ8507809&PAYERID=NA7Q76LUSFU8L&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=rodyparis%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Mohamed+BENGHEZALA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0683374821&PAYMENTREQUEST_0_SHIPTOSTREET=59+Ter+Avenue+Jean+LOLIVE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PANTIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93500 -Result : TOKEN=EC%2d5YR62278DJ8507809&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d02T21%3a11%3a06Z&CORRELATIONID=390a0e0590433&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=27B43685LR358574E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d02T21%3a11%3a05Z&PAYMENTINFO_0_AMT=25%2e90&PAYMENTINFO_0_FEEAMT=1%2e13&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5YR62278DJ8507809&PAYERID=NA7Q76LUSFU8L&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=rodyparis%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Mohamed+BENGHEZALA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0683374821&PAYMENTREQUEST_0_SHIPTOSTREET=59+Ter+Avenue+Jean+LOLIVE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PANTIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=35&PAYMENTREQUEST_0_AMT=38.00&ADDROVERRIDE=1&EMAIL=Vaness17270%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+Verdois+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676030402&PAYMENTREQUEST_0_SHIPTOSTREET=100+chemin+des+mariots&PAYMENTREQUEST_0_SHIPTOSTREET2=Quartier+escoursolles+&PAYMENTREQUEST_0_SHIPTOCITY=Pissos&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=40410&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5AR24736U3983880B&TIMESTAMP=2016%2d07%2d03T22%3a49%3a51Z&CORRELATIONID=4567e4da23e1f&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=35&PAYMENTREQUEST_0_AMT=38.00&ADDROVERRIDE=1&EMAIL=Vaness17270%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+Verdois+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676030402&PAYMENTREQUEST_0_SHIPTOSTREET=100+chemin+des+mariots&PAYMENTREQUEST_0_SHIPTOSTREET2=Quartier+escoursolles+&PAYMENTREQUEST_0_SHIPTOCITY=Pissos&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=40410&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5AR24736U3983880B -Result : TOKEN=EC%2d5AR24736U3983880B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d03T22%3a50%3a24Z&CORRELATIONID=5e84b96983f6&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=vaness17270%40gmail%2ecom&PAYERID=EDDFWTG2BS472&PAYERSTATUS=verified&BUSINESS=vanessa&FIRSTNAME=vanessa&LASTNAME=verdois&COUNTRYCODE=FR&SHIPTONAME=Vanessa%20Verdois&SHIPTOSTREET=100%20chemin%20des%20mariots&SHIPTOSTREET2=Quartier%20escoursolles&SHIPTOCITY=Pissos&SHIPTOZIP=40410&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0676030402&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=38%2e00&ITEMAMT=35%2e00&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_NUMBER0=208&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=17%2e50&L_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=38%2e00&PAYMENTREQUEST_0_ITEMAMT=35%2e00&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Vanessa%20Verdois&PAYMENTREQUEST_0_SHIPTOSTREET=100%20chemin%20des%20mariots&PAYMENTREQUEST_0_SHIPTOSTREET2=Quartier%20escoursolles&PAYMENTREQUEST_0_SHIPTOCITY=Pissos&PAYMENTREQUEST_0_SHIPTOZIP=40410&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676030402&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e50&L_PAYMENTREQUEST_0_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5AR24736U3983880B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5AR24736U3983880B&PAYERID=EDDFWTG2BS472&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=35&PAYMENTREQUEST_0_AMT=38.00&ADDROVERRIDE=1&EMAIL=Vaness17270%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+Verdois+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676030402&PAYMENTREQUEST_0_SHIPTOSTREET=100+chemin+des+mariots&PAYMENTREQUEST_0_SHIPTOSTREET2=Quartier+escoursolles+&PAYMENTREQUEST_0_SHIPTOCITY=Pissos&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=40410 -Result : TOKEN=EC%2d5AR24736U3983880B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d03T22%3a50%3a26Z&CORRELATIONID=d1ba0017658ce&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7DJ43131RW4326720&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d03T22%3a50%3a26Z&PAYMENTINFO_0_AMT=38%2e00&PAYMENTINFO_0_FEEAMT=1%2e54&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5AR24736U3983880B&PAYERID=EDDFWTG2BS472&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=35&PAYMENTREQUEST_0_AMT=38.00&ADDROVERRIDE=1&EMAIL=Vaness17270%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+Verdois+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676030402&PAYMENTREQUEST_0_SHIPTOSTREET=100+chemin+des+mariots&PAYMENTREQUEST_0_SHIPTOSTREET2=Quartier+escoursolles+&PAYMENTREQUEST_0_SHIPTOCITY=Pissos&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=40410 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=ajaclavier%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christine+Aja+Clavier&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+32+85+61+84&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Louis+Pergaud&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=V%C3%A9nissieux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d15X6494996811902K&TIMESTAMP=2016%2d07%2d03T23%3a37%3a36Z&CORRELATIONID=a6fc7910bc3ec&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=ajaclavier%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christine+Aja+Clavier&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+32+85+61+84&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Louis+Pergaud&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=V%C3%A9nissieux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-15X6494996811902K -Result : TOKEN=EC%2d15X6494996811902K&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d03T23%3a40%3a14Z&CORRELATIONID=e8b44bfcaa6a3&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=ajaclavier%40gmail%2ecom&PAYERID=MK7ZCBSH77MR8&PAYERSTATUS=verified&FIRSTNAME=Christine&LASTNAME=CLAVIER&COUNTRYCODE=FR&SHIPTONAME=Christine%20Aja%20Clavier&SHIPTOSTREET=6%20rue%20Louis%20Pergaud&SHIPTOCITY=V%c3%a9nissieux&SHIPTOZIP=69200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=06%2032%2085%2061%2084&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Christine%20Aja%20Clavier&PAYMENTREQUEST_0_SHIPTOSTREET=6%20rue%20Louis%20Pergaud&PAYMENTREQUEST_0_SHIPTOCITY=V%c3%a9nissieux&PAYMENTREQUEST_0_SHIPTOZIP=69200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=06%2032%2085%2061%2084&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-15X6494996811902K - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-15X6494996811902K&PAYERID=MK7ZCBSH77MR8&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=ajaclavier%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christine+Aja+Clavier&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+32+85+61+84&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Louis+Pergaud&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=V%C3%A9nissieux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69200 -Result : TOKEN=EC%2d15X6494996811902K&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d03T23%3a40%3a17Z&CORRELATIONID=f2774a1eb3e7f&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=929438322W2854301&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d03T23%3a40%3a16Z&PAYMENTINFO_0_AMT=18%2e20&PAYMENTINFO_0_FEEAMT=0%2e87&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-15X6494996811902K&PAYERID=MK7ZCBSH77MR8&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=ajaclavier%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christine+Aja+Clavier&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+32+85+61+84&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Louis+Pergaud&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=V%C3%A9nissieux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=217&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+textiles+x4&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ge+%C3%A0+mites+%C3%A0+suspendre+dans+les+penderies...&L_PAYMENTREQUEST_0_AMT0=12.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=12.9&PAYMENTREQUEST_0_AMT=15.90&ADDROVERRIDE=1&EMAIL=marion.thoilliez%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+thoilliez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684543067&PAYMENTREQUEST_0_SHIPTOSTREET=39+rye+passe+demoiselles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=reims&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d83691969J7155261L&TIMESTAMP=2016%2d07%2d04T04%3a09%3a55Z&CORRELATIONID=287ece747c7d6&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=217&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+textiles+x4&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ge+%C3%A0+mites+%C3%A0+suspendre+dans+les+penderies...&L_PAYMENTREQUEST_0_AMT0=12.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=12.9&PAYMENTREQUEST_0_AMT=15.90&ADDROVERRIDE=1&EMAIL=marion.thoilliez%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+thoilliez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684543067&PAYMENTREQUEST_0_SHIPTOSTREET=39+rye+passe+demoiselles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=reims&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-83691969J7155261L -Result : TOKEN=EC%2d83691969J7155261L&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T04%3a10%3a52Z&CORRELATIONID=23ac3777d766&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=marion%2ethoilliez%40hotmail%2efr&PAYERID=Q24GZAVVQAULS&PAYERSTATUS=unverified&FIRSTNAME=marion&LASTNAME=thoilliez&COUNTRYCODE=FR&SHIPTONAME=marion%20thoilliez&SHIPTOSTREET=39%20rye%20passe%20demoiselles&SHIPTOCITY=reims&SHIPTOZIP=51100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0684543067&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=15%2e90&ITEMAMT=12%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pi%c3%a8ge%20%c3%a0%20mites%20textiles%20x4&L_NUMBER0=217&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=12%2e90&L_DESC0=Pi%c3%a8ge%20%c3%a0%20mites%20%c3%a0%20suspendre%20dans%20les%20penderies%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=15%2e90&PAYMENTREQUEST_0_ITEMAMT=12%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=marion%20thoilliez&PAYMENTREQUEST_0_SHIPTOSTREET=39%20rye%20passe%20demoiselles&PAYMENTREQUEST_0_SHIPTOCITY=reims&PAYMENTREQUEST_0_SHIPTOZIP=51100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684543067&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pi%c3%a8ge%20%c3%a0%20mites%20textiles%20x4&L_PAYMENTREQUEST_0_NUMBER0=217&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=12%2e90&L_PAYMENTREQUEST_0_DESC0=Pi%c3%a8ge%20%c3%a0%20mites%20%c3%a0%20suspendre%20dans%20les%20penderies%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-83691969J7155261L - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-83691969J7155261L&PAYERID=Q24GZAVVQAULS&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=217&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+textiles+x4&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ge+%C3%A0+mites+%C3%A0+suspendre+dans+les+penderies...&L_PAYMENTREQUEST_0_AMT0=12.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=12.9&PAYMENTREQUEST_0_AMT=15.90&ADDROVERRIDE=1&EMAIL=marion.thoilliez%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+thoilliez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684543067&PAYMENTREQUEST_0_SHIPTOSTREET=39+rye+passe+demoiselles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=reims&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51100 -Result : TOKEN=EC%2d83691969J7155261L&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T04%3a10%3a55Z&CORRELATIONID=8d074051a5a3f&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8YL4882815142611M&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T04%3a10%3a54Z&PAYMENTINFO_0_AMT=15%2e90&PAYMENTINFO_0_FEEAMT=0%2e79&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-83691969J7155261L&PAYERID=Q24GZAVVQAULS&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=217&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+textiles+x4&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ge+%C3%A0+mites+%C3%A0+suspendre+dans+les+penderies...&L_PAYMENTREQUEST_0_AMT0=12.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=12.9&PAYMENTREQUEST_0_AMT=15.90&ADDROVERRIDE=1&EMAIL=marion.thoilliez%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+thoilliez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684543067&PAYMENTREQUEST_0_SHIPTOSTREET=39+rye+passe+demoiselles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=reims&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=116.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=116.4&PAYMENTREQUEST_0_AMT=116.40&ADDROVERRIDE=1&EMAIL=nicole.narran%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Nicole+NARRAN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676556103&PAYMENTREQUEST_0_SHIPTOSTREET=64+TER+Avenue+Victor+Basch&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BEAUCHAMP&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9T0215586C058022L&TIMESTAMP=2016%2d07%2d04T07%3a41%3a41Z&CORRELATIONID=f0b20bb6f45a&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=116.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=116.4&PAYMENTREQUEST_0_AMT=116.40&ADDROVERRIDE=1&EMAIL=nicole.narran%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Nicole+NARRAN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676556103&PAYMENTREQUEST_0_SHIPTOSTREET=64+TER+Avenue+Victor+Basch&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BEAUCHAMP&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitances+de+ciment%2Cb%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Anti-laitances%C2%A0de+ciment%3A+Stop+aux+traces+blanches...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=271&L_PAYMENTREQUEST_0_NAME1=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC1=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT1=16.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=60.9&PAYMENTREQUEST_0_AMT=60.90&ADDROVERRIDE=1&EMAIL=theportos_93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Lo%C3%AFc+MANHOSO&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668940746&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+de+l%27oeuvre&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Epinay+sur+Seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7E482845CN5631915&TIMESTAMP=2016%2d07%2d04T08%3a55%3a15Z&CORRELATIONID=429fd6e7e097c&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitances+de+ciment%2Cb%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Anti-laitances%C2%A0de+ciment%3A+Stop+aux+traces+blanches...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=271&L_PAYMENTREQUEST_0_NAME1=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC1=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT1=16.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=60.9&PAYMENTREQUEST_0_AMT=60.90&ADDROVERRIDE=1&EMAIL=theportos_93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Lo%C3%AFc+MANHOSO&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668940746&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+de+l%27oeuvre&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Epinay+sur+Seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7E482845CN5631915 -Result : TOKEN=EC%2d7E482845CN5631915&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T08%3a55%3a30Z&CORRELATIONID=3ab2080134af8&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=theportos_93%40hotmail%2efr&PAYERID=RV4A5SALV57ZG&PAYERSTATUS=verified&FIRSTNAME=Lo%c3%afc&LASTNAME=MANHOSO&COUNTRYCODE=FR&SHIPTONAME=Lo%c3%afc%20MANHOSO&SHIPTOSTREET=15%20RUE%20DE%20L%27OEUVRE&SHIPTOCITY=Epinay%20sur%20Seine&SHIPTOZIP=93800&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0668940746&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=60%2e90&ITEMAMT=60%2e90&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Anti%2dlaitances%20de%20ciment%2cb%c3%a9ton%2c%20carrelage%20%2d%20D%c3%a9cap%27Laitances%20Guard%20Ecologique%205L&L_NAME1=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_NUMBER0=16&L_NUMBER1=271&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=44%2e70&L_AMT1=16%2e20&L_DESC0=Anti%2dlaitances%c2%a0de%20ciment%3a%20Stop%20aux%20traces%20blanches%2e%2e%2e&L_DESC1=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=60%2e90&PAYMENTREQUEST_0_ITEMAMT=60%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Lo%c3%afc%20MANHOSO&PAYMENTREQUEST_0_SHIPTOSTREET=15%20RUE%20DE%20L%27OEUVRE&PAYMENTREQUEST_0_SHIPTOCITY=Epinay%20sur%20Seine&PAYMENTREQUEST_0_SHIPTOZIP=93800&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668940746&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Anti%2dlaitances%20de%20ciment%2cb%c3%a9ton%2c%20carrelage%20%2d%20D%c3%a9cap%27Laitances%20Guard%20Ecologique%205L&L_PAYMENTREQUEST_0_NAME1=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NUMBER1=271&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=44%2e70&L_PAYMENTREQUEST_0_AMT1=16%2e20&L_PAYMENTREQUEST_0_DESC0=Anti%2dlaitances%c2%a0de%20ciment%3a%20Stop%20aux%20traces%20blanches%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7E482845CN5631915 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7E482845CN5631915&PAYERID=RV4A5SALV57ZG&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitances+de+ciment%2Cb%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Anti-laitances%C2%A0de+ciment%3A+Stop+aux+traces+blanches...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=271&L_PAYMENTREQUEST_0_NAME1=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC1=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT1=16.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=60.9&PAYMENTREQUEST_0_AMT=60.90&ADDROVERRIDE=1&EMAIL=theportos_93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Lo%C3%AFc+MANHOSO&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668940746&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+de+l%27oeuvre&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Epinay+sur+Seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93800 -Result : TOKEN=EC%2d7E482845CN5631915&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T08%3a55%3a34Z&CORRELATIONID=4e522d346c843&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1W314462PD8757021&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T08%3a55%3a31Z&PAYMENTINFO_0_AMT=60%2e90&PAYMENTINFO_0_FEEAMT=2%2e32&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7E482845CN5631915&PAYERID=RV4A5SALV57ZG&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitances+de+ciment%2Cb%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Anti-laitances%C2%A0de+ciment%3A+Stop+aux+traces+blanches...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=271&L_PAYMENTREQUEST_0_NAME1=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC1=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT1=16.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=60.9&PAYMENTREQUEST_0_AMT=60.90&ADDROVERRIDE=1&EMAIL=theportos_93%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Lo%C3%AFc+MANHOSO&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668940746&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+de+l%27oeuvre&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Epinay+sur+Seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93800 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.73&PAYMENTREQUEST_0_AMT=21.73&ADDROVERRIDE=1&EMAIL=cordeiro.christophe%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christophe+Cordeiro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677919353&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+gustave+caillebotte&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Argenteuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8FP03664CJ785715L&TIMESTAMP=2016%2d07%2d04T09%3a13%3a34Z&CORRELATIONID=be1a99683225&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.73&PAYMENTREQUEST_0_AMT=21.73&ADDROVERRIDE=1&EMAIL=cordeiro.christophe%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christophe+Cordeiro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677919353&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+gustave+caillebotte&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Argenteuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8FP03664CJ785715L -Result : TOKEN=EC%2d8FP03664CJ785715L&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T09%3a13%3a49Z&CORRELATIONID=c2098dbe62c28&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=cordeiro%2echristophe%40gmail%2ecom&PAYERID=F635ZLN23DZ6W&PAYERSTATUS=verified&FIRSTNAME=Christophe&LASTNAME=Cordeiro&COUNTRYCODE=FR&SHIPTONAME=CHRISTOPHE%20CORDEIRO&SHIPTOSTREET=6%20rue%20Gustave%20caillebotte&SHIPTOCITY=Argenteuil&SHIPTOZIP=95100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0677919353&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e73&ITEMAMT=15%2e73&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME3=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=163&L_NUMBER1=164&L_NUMBER2=165&L_NUMBER3=721&L_QTY0=1&L_QTY1=1&L_QTY2=2&L_QTY3=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=3%2e19&L_AMT1=6%2e16&L_AMT2=3%2e19&L_AMT3=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC3=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e73&PAYMENTREQUEST_0_ITEMAMT=15%2e73&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE%20CORDEIRO&PAYMENTREQUEST_0_SHIPTOSTREET=6%20rue%20Gustave%20caillebotte&PAYMENTREQUEST_0_SHIPTOCITY=Argenteuil&PAYMENTREQUEST_0_SHIPTOZIP=95100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677919353&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e19&L_PAYMENTREQUEST_0_AMT1=6%2e16&L_PAYMENTREQUEST_0_AMT2=3%2e19&L_PAYMENTREQUEST_0_AMT3=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8FP03664CJ785715L - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8FP03664CJ785715L&PAYERID=F635ZLN23DZ6W&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.73&PAYMENTREQUEST_0_AMT=21.73&ADDROVERRIDE=1&EMAIL=cordeiro.christophe%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christophe+Cordeiro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677919353&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+gustave+caillebotte&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Argenteuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95100 -Result : TOKEN=EC%2d8FP03664CJ785715L&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T09%3a13%3a51Z&CORRELATIONID=b525150c75ed3&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5NC568370U314905B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T09%3a13%3a51Z&PAYMENTINFO_0_AMT=21%2e73&PAYMENTINFO_0_FEEAMT=0%2e99&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8FP03664CJ785715L&PAYERID=F635ZLN23DZ6W&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.73&PAYMENTREQUEST_0_AMT=21.73&ADDROVERRIDE=1&EMAIL=cordeiro.christophe%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Christophe+Cordeiro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677919353&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+gustave+caillebotte&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Argenteuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2YV219673N1350646&TIMESTAMP=2016%2d07%2d04T09%3a16%3a11Z&CORRELATIONID=83b6322ee851&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2YV219673N1350646 -Result : TOKEN=EC%2d2YV219673N1350646&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T09%3a17%3a09Z&CORRELATIONID=a0cd013027b26&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=richard%2etalbot%40wanadoo%2efr&PAYERID=E6TDNZQEG89KC&PAYERSTATUS=verified&FIRSTNAME=Richard&LASTNAME=TALBOT&COUNTRYCODE=FR&SHIPTONAME=Florence%20Angelique%2dTalbot&SHIPTOSTREET=17%20La%20Reterie&SHIPTOCITY=Saint%20Hilaire%20du%20Harcouet&SHIPTOSTATE=50&SHIPTOZIP=50600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0233493732&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e80&ITEMAMT=58%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NUMBER0=17&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=58%2e80&L_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e80&PAYMENTREQUEST_0_ITEMAMT=58%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Florence%20Angelique%2dTalbot&PAYMENTREQUEST_0_SHIPTOSTREET=17%20La%20Reterie&PAYMENTREQUEST_0_SHIPTOCITY=Saint%20Hilaire%20du%20Harcouet&PAYMENTREQUEST_0_SHIPTOSTATE=50&PAYMENTREQUEST_0_SHIPTOZIP=50600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=58%2e80&L_PAYMENTREQUEST_0_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2YV219673N1350646 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2YV219673N1350646&PAYERID=E6TDNZQEG89KC&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600 -Result : TOKEN=EC%2d2YV219673N1350646&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T09%3a17%3a11Z&CORRELATIONID=a52868d42de75&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=63J97880HX611164U&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T09%3a17%3a10Z&PAYMENTINFO_0_AMT=58%2e80&PAYMENTINFO_0_FEEAMT=2%2e25&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2YV219673N1350646&PAYERID=E6TDNZQEG89KC&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=47&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=288&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT2=55.36&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0WA31486CM371602L&TIMESTAMP=2016%2d07%2d04T09%3a31%3a43Z&CORRELATIONID=ff822df38a983&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=47&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=288&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT2=55.36&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0WA31486CM371602L -Result : TOKEN=EC%2d0WA31486CM371602L&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T09%3a47%3a16Z&CORRELATIONID=72938c3c6e56e&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=romdff%40yahoo%2efr&PAYERID=BF9SCCAZGUCDE&PAYERSTATUS=verified&FIRSTNAME=Romain&LASTNAME=Darjinoff&COUNTRYCODE=BE&SHIPTONAME=romain%20darjinoff&SHIPTOSTREET=115%2d117%20avenue%20Nouvelle&SHIPTOCITY=Bruxelles&SHIPTOSTATE=NOTPROVIDED&SHIPTOZIP=B%2d1040&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=%2b32485403397&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=166%2e08&ITEMAMT=166%2e08&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Panama%2012kg&L_NAME2=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20Coloris%20Glycine%2012Kg&L_NUMBER0=46&L_NUMBER1=47&L_NUMBER2=288&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=55%2e36&L_AMT1=55%2e36&L_AMT2=55%2e36&L_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_DESC1=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_DESC2=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=166%2e08&PAYMENTREQUEST_0_ITEMAMT=166%2e08&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=romain%20darjinoff&PAYMENTREQUEST_0_SHIPTOSTREET=115%2d117%20avenue%20Nouvelle&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOSTATE=NOTPROVIDED&PAYMENTREQUEST_0_SHIPTOZIP=B%2d1040&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b32485403397&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Panama%2012kg&L_PAYMENTREQUEST_0_NAME2=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20Coloris%20Glycine%2012Kg&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NUMBER1=47&L_PAYMENTREQUEST_0_NUMBER2=288&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=55%2e36&L_PAYMENTREQUEST_0_AMT1=55%2e36&L_PAYMENTREQUEST_0_AMT2=55%2e36&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0WA31486CM371602L - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0WA31486CM371602L&PAYERID=BF9SCCAZGUCDE&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=47&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=288&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT2=55.36&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040 -Result : TOKEN=EC%2d0WA31486CM371602L&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T09%3a47%3a19Z&CORRELATIONID=729e7051a4ba3&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=55N69097JJ745621C&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T09%3a47%3a19Z&PAYMENTINFO_0_AMT=166%2e08&PAYMENTINFO_0_FEEAMT=5%2e90&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0WA31486CM371602L&PAYERID=BF9SCCAZGUCDE&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=47&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=288&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT2=55.36&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=367&L_PAYMENTREQUEST_0_NAME0=Ballon+de+football&L_PAYMENTREQUEST_0_DESC0=...&L_PAYMENTREQUEST_0_AMT0=0&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=17&L_PAYMENTREQUEST_0_NAME1=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC1=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT1=58.8&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0TL53762CY589745C&TIMESTAMP=2016%2d07%2d04T10%3a07%3a11Z&CORRELATIONID=ae88e13680eb4&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=367&L_PAYMENTREQUEST_0_NAME0=Ballon+de+football&L_PAYMENTREQUEST_0_DESC0=...&L_PAYMENTREQUEST_0_AMT0=0&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=17&L_PAYMENTREQUEST_0_NAME1=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC1=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT1=58.8&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0TL53762CY589745C -Result : TOKEN=EC%2d0TL53762CY589745C&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T10%3a07%3a57Z&CORRELATIONID=537dd276a4b0b&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=lebel%2ejerome%40orange%2efr&PAYERID=TUT76QR3B66PL&PAYERSTATUS=verified&FIRSTNAME=Jerome&LASTNAME=LEBEL&COUNTRYCODE=FR&SHIPTONAME=humbert%20patricia&SHIPTOSTREET=7%20hameau%20thiron&SHIPTOCITY=breval&SHIPTOZIP=78980&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0682874778&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e80&ITEMAMT=58%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Ballon%20de%20football&L_NAME1=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NAME2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_NUMBER0=367&L_NUMBER1=17&L_NUMBER2=1313&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=0%2e00&L_AMT1=58%2e80&L_AMT2=0%2e00&L_DESC0=%2e%2e%2e&L_DESC1=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&L_DESC2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e80&PAYMENTREQUEST_0_ITEMAMT=58%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=humbert%20patricia&PAYMENTREQUEST_0_SHIPTOSTREET=7%20hameau%20thiron&PAYMENTREQUEST_0_SHIPTOCITY=breval&PAYMENTREQUEST_0_SHIPTOZIP=78980&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Ballon%20de%20football&L_PAYMENTREQUEST_0_NAME1=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NAME2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_PAYMENTREQUEST_0_NUMBER0=367&L_PAYMENTREQUEST_0_NUMBER1=17&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=0%2e00&L_PAYMENTREQUEST_0_AMT1=58%2e80&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_DESC0=%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0TL53762CY589745C - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0TL53762CY589745C&PAYERID=TUT76QR3B66PL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=367&L_PAYMENTREQUEST_0_NAME0=Ballon+de+football&L_PAYMENTREQUEST_0_DESC0=...&L_PAYMENTREQUEST_0_AMT0=0&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=17&L_PAYMENTREQUEST_0_NAME1=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC1=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT1=58.8&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980 -Result : TOKEN=EC%2d0TL53762CY589745C&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T10%3a08%3a00Z&CORRELATIONID=f380f180cdd9b&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=11J51163K4213640N&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T10%3a07%3a59Z&PAYMENTINFO_0_AMT=58%2e80&PAYMENTINFO_0_FEEAMT=2%2e25&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0TL53762CY589745C&PAYERID=TUT76QR3B66PL&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=367&L_PAYMENTREQUEST_0_NAME0=Ballon+de+football&L_PAYMENTREQUEST_0_DESC0=...&L_PAYMENTREQUEST_0_AMT0=0&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=17&L_PAYMENTREQUEST_0_NAME1=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC1=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT1=58.8&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1313&L_PAYMENTREQUEST_0_NAME2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC2=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=291&L_PAYMENTREQUEST_0_NAME1=Gel+Douche+%26+Bain+KIDS+parfum+fraise&L_PAYMENTREQUEST_0_DESC1=La+fraise+pour+une+douche+fruit%C3%A9e+%21+Le+gel+douche+...&L_PAYMENTREQUEST_0_AMT1=4.25&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.15&PAYMENTREQUEST_0_AMT=50.15&ADDROVERRIDE=1&EMAIL=nathalie.joyaux%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=nathalie+joyaux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635544721&PAYMENTREQUEST_0_SHIPTOSTREET=14+rue+faidherbe&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-mand%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d852324262F935102S&TIMESTAMP=2016%2d07%2d04T20%3a04%3a52Z&CORRELATIONID=157172a6dbea9&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=291&L_PAYMENTREQUEST_0_NAME1=Gel+Douche+%26+Bain+KIDS+parfum+fraise&L_PAYMENTREQUEST_0_DESC1=La+fraise+pour+une+douche+fruit%C3%A9e+%21+Le+gel+douche+...&L_PAYMENTREQUEST_0_AMT1=4.25&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.15&PAYMENTREQUEST_0_AMT=50.15&ADDROVERRIDE=1&EMAIL=nathalie.joyaux%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=nathalie+joyaux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635544721&PAYMENTREQUEST_0_SHIPTOSTREET=14+rue+faidherbe&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-mand%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-852324262F935102S -Result : TOKEN=EC%2d852324262F935102S&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d04T20%3a07%3a26Z&CORRELATIONID=5a548219b8464&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=nathalie%2ejoyaux%40sfr%2efr&PAYERID=92VDX8YHXUA98&PAYERSTATUS=verified&FIRSTNAME=Nathalie&LASTNAME=Joyaux&COUNTRYCODE=FR&SHIPTONAME=Nathalie%20Joyaux&SHIPTOSTREET=14%20rue%20faidherbe&SHIPTOCITY=Saint%20Mand%c3%a9&SHIPTOSTATE=%c3%8ele%2dde%2dFrance&SHIPTOZIP=94160&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0635544721&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=50%2e15&ITEMAMT=50%2e15&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_NAME1=Gel%20Douche%20%26%20Bain%20KIDS%20parfum%20fraise&L_NUMBER0=4&L_NUMBER1=291&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=45%2e90&L_AMT1=4%2e25&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC1=La%20fraise%20pour%20une%20douche%20fruit%c3%a9e%20%21%20Le%20gel%20douche%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=50%2e15&PAYMENTREQUEST_0_ITEMAMT=50%2e15&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Nathalie%20Joyaux&PAYMENTREQUEST_0_SHIPTOSTREET=14%20rue%20faidherbe&PAYMENTREQUEST_0_SHIPTOCITY=Saint%20Mand%c3%a9&PAYMENTREQUEST_0_SHIPTOSTATE=%c3%8ele%2dde%2dFrance&PAYMENTREQUEST_0_SHIPTOZIP=94160&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635544721&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NAME1=Gel%20Douche%20%26%20Bain%20KIDS%20parfum%20fraise&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NUMBER1=291&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=45%2e90&L_PAYMENTREQUEST_0_AMT1=4%2e25&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=La%20fraise%20pour%20une%20douche%20fruit%c3%a9e%20%21%20Le%20gel%20douche%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-852324262F935102S - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-852324262F935102S&PAYERID=92VDX8YHXUA98&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=291&L_PAYMENTREQUEST_0_NAME1=Gel+Douche+%26+Bain+KIDS+parfum+fraise&L_PAYMENTREQUEST_0_DESC1=La+fraise+pour+une+douche+fruit%C3%A9e+%21+Le+gel+douche+...&L_PAYMENTREQUEST_0_AMT1=4.25&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.15&PAYMENTREQUEST_0_AMT=50.15&ADDROVERRIDE=1&EMAIL=nathalie.joyaux%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=nathalie+joyaux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635544721&PAYMENTREQUEST_0_SHIPTOSTREET=14+rue+faidherbe&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-mand%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94160 -Result : TOKEN=EC%2d852324262F935102S&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d04T20%3a07%3a29Z&CORRELATIONID=4ba9805be565&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2DV3670270052394A&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d04T20%3a07%3a28Z&PAYMENTINFO_0_AMT=50%2e15&PAYMENTINFO_0_FEEAMT=1%2e96&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-852324262F935102S&PAYERID=92VDX8YHXUA98&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=291&L_PAYMENTREQUEST_0_NAME1=Gel+Douche+%26+Bain+KIDS+parfum+fraise&L_PAYMENTREQUEST_0_DESC1=La+fraise+pour+une+douche+fruit%C3%A9e+%21+Le+gel+douche+...&L_PAYMENTREQUEST_0_AMT1=4.25&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.15&PAYMENTREQUEST_0_AMT=50.15&ADDROVERRIDE=1&EMAIL=nathalie.joyaux%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=nathalie+joyaux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635544721&PAYMENTREQUEST_0_SHIPTOSTREET=14+rue+faidherbe&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-mand%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94160 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=29&L_PAYMENTREQUEST_0_NAME0=Nettoyant+et+d%C3%A9capant+mat%C3%A9riaux+poreux-+Kit+sols+neufs+&L_PAYMENTREQUEST_0_DESC0=Le+kit+D%C3%A9caper+%26amp%3B+Prot%C3%A9ger+sp%C3%A9cial%C2%A0mat%C3%A9riaux+po...&L_PAYMENTREQUEST_0_AMT0=99.79&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.79&PAYMENTREQUEST_0_AMT=89.79&ADDROVERRIDE=1&EMAIL=grimpe71%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Aurelien+Toutant&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631866017&PAYMENTREQUEST_0_SHIPTOSTREET=4+rue+des+vignes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Berze+la+ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71960&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6XR085874X0286703&TIMESTAMP=2016%2d07%2d05T09%3a51%3a35Z&CORRELATIONID=af58b60d6b51b&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=29&L_PAYMENTREQUEST_0_NAME0=Nettoyant+et+d%C3%A9capant+mat%C3%A9riaux+poreux-+Kit+sols+neufs+&L_PAYMENTREQUEST_0_DESC0=Le+kit+D%C3%A9caper+%26amp%3B+Prot%C3%A9ger+sp%C3%A9cial%C2%A0mat%C3%A9riaux+po...&L_PAYMENTREQUEST_0_AMT0=99.79&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.79&PAYMENTREQUEST_0_AMT=89.79&ADDROVERRIDE=1&EMAIL=grimpe71%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Aurelien+Toutant&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631866017&PAYMENTREQUEST_0_SHIPTOSTREET=4+rue+des+vignes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Berze+la+ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71960&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6XR085874X0286703 -Result : TOKEN=EC%2d6XR085874X0286703&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d05T09%3a52%3a10Z&CORRELATIONID=9c8b025f8b6ea&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=grimpe71%40orange%2efr&PAYERID=EUY8BQYMU2EM4&PAYERSTATUS=verified&FIRSTNAME=Aurelien&LASTNAME=Toutant&COUNTRYCODE=FR&SHIPTONAME=%20Aurelien%20%20Toutant&SHIPTOSTREET=4%20rue%20des%20vignes%20&SHIPTOCITY=berze%20la%20ville&SHIPTOSTATE=FR&SHIPTOZIP=71960&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0631866017&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=89%2e79&ITEMAMT=89%2e79&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20et%20d%c3%a9capant%20mat%c3%a9riaux%20poreux%2d%20Kit%20sols%20neufs%20&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=29&L_NUMBER1=644&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=99%2e79&L_AMT1=%2d10%2e00&L_DESC0=Le%20kit%20D%c3%a9caper%20%26amp%3b%20Prot%c3%a9ger%20sp%c3%a9cial%c2%a0mat%c3%a9riaux%20po%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=89%2e79&PAYMENTREQUEST_0_ITEMAMT=89%2e79&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Aurelien%20%20Toutant&PAYMENTREQUEST_0_SHIPTOSTREET=4%20rue%20des%20vignes%20&PAYMENTREQUEST_0_SHIPTOCITY=berze%20la%20ville&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71960&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631866017&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20et%20d%c3%a9capant%20mat%c3%a9riaux%20poreux%2d%20Kit%20sols%20neufs%20&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=29&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=99%2e79&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Le%20kit%20D%c3%a9caper%20%26amp%3b%20Prot%c3%a9ger%20sp%c3%a9cial%c2%a0mat%c3%a9riaux%20po%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6XR085874X0286703 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6XR085874X0286703&PAYERID=EUY8BQYMU2EM4&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=29&L_PAYMENTREQUEST_0_NAME0=Nettoyant+et+d%C3%A9capant+mat%C3%A9riaux+poreux-+Kit+sols+neufs+&L_PAYMENTREQUEST_0_DESC0=Le+kit+D%C3%A9caper+%26amp%3B+Prot%C3%A9ger+sp%C3%A9cial%C2%A0mat%C3%A9riaux+po...&L_PAYMENTREQUEST_0_AMT0=99.79&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.79&PAYMENTREQUEST_0_AMT=89.79&ADDROVERRIDE=1&EMAIL=grimpe71%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Aurelien+Toutant&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631866017&PAYMENTREQUEST_0_SHIPTOSTREET=4+rue+des+vignes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Berze+la+ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71960 -Result : TOKEN=EC%2d6XR085874X0286703&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d05T09%3a52%3a13Z&CORRELATIONID=5dfe26da9d39c&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=55B556652A180130V&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d05T09%3a52%3a12Z&PAYMENTINFO_0_AMT=89%2e79&PAYMENTINFO_0_FEEAMT=3%2e30&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6XR085874X0286703&PAYERID=EUY8BQYMU2EM4&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=29&L_PAYMENTREQUEST_0_NAME0=Nettoyant+et+d%C3%A9capant+mat%C3%A9riaux+poreux-+Kit+sols+neufs+&L_PAYMENTREQUEST_0_DESC0=Le+kit+D%C3%A9caper+%26amp%3B+Prot%C3%A9ger+sp%C3%A9cial%C2%A0mat%C3%A9riaux+po...&L_PAYMENTREQUEST_0_AMT0=99.79&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.79&PAYMENTREQUEST_0_AMT=89.79&ADDROVERRIDE=1&EMAIL=grimpe71%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Aurelien+Toutant&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631866017&PAYMENTREQUEST_0_SHIPTOSTREET=4+rue+des+vignes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Berze+la+ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71960 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=laurence.maron%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+MARON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671620191&PAYMENTREQUEST_0_SHIPTOSTREET=490&PAYMENTREQUEST_0_SHIPTOSTREET2=route+du+bois+de+l%27Ane&PAYMENTREQUEST_0_SHIPTOCITY=CHANTEMERLE+LES+BLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=26600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2GW9005472046173Y&TIMESTAMP=2016%2d07%2d05T12%3a11%3a39Z&CORRELATIONID=58bd2378d8fcd&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=http%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=laurence.maron%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+MARON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671620191&PAYMENTREQUEST_0_SHIPTOSTREET=490&PAYMENTREQUEST_0_SHIPTOSTREET2=route+du+bois+de+l%27Ane&PAYMENTREQUEST_0_SHIPTOCITY=CHANTEMERLE+LES+BLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=26600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2GW9005472046173Y -Result : TOKEN=EC%2d2GW9005472046173Y&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d05T12%3a12%3a12Z&CORRELATIONID=f489da88397c2&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=laurence%2emaron%40orange%2efr&PAYERID=25VXQRY3N6RFC&PAYERSTATUS=verified&FIRSTNAME=Laurence&LASTNAME=MARON&COUNTRYCODE=FR&SHIPTONAME=Laurence%20%20Maron&SHIPTOSTREET=490%20route%20du%20bois%20de%20l%27Ane&SHIPTOCITY=Chantemerle%20les%20bles&SHIPTOZIP=26600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0671620191&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=43%2e90&ITEMAMT=37%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_NUMBER0=3&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=37%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=43%2e90&PAYMENTREQUEST_0_ITEMAMT=37%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Laurence%20%20Maron&PAYMENTREQUEST_0_SHIPTOSTREET=490%20route%20du%20bois%20de%20l%27Ane&PAYMENTREQUEST_0_SHIPTOCITY=Chantemerle%20les%20bles&PAYMENTREQUEST_0_SHIPTOZIP=26600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671620191&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=37%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2GW9005472046173Y - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2GW9005472046173Y&PAYERID=25VXQRY3N6RFC&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=laurence.maron%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+MARON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671620191&PAYMENTREQUEST_0_SHIPTOSTREET=490&PAYMENTREQUEST_0_SHIPTOSTREET2=route+du+bois+de+l%27Ane&PAYMENTREQUEST_0_SHIPTOCITY=CHANTEMERLE+LES+BLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=26600 -Result : TOKEN=EC%2d2GW9005472046173Y&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d05T12%3a12%3a16Z&CORRELATIONID=6dbc421e4509d&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=61B829104R018645C&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d05T12%3a12%3a13Z&PAYMENTINFO_0_AMT=43%2e90&PAYMENTINFO_0_FEEAMT=1%2e74&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2GW9005472046173Y&PAYERID=25VXQRY3N6RFC&RETURNURL=http%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=laurence.maron%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+MARON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671620191&PAYMENTREQUEST_0_SHIPTOSTREET=490&PAYMENTREQUEST_0_SHIPTOSTREET2=route+du+bois+de+l%27Ane&PAYMENTREQUEST_0_SHIPTOCITY=CHANTEMERLE+LES+BLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=26600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=231&L_PAYMENTREQUEST_0_NAME0=Collier+Puces+Insectifuge+sp%C3%A9cial+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT0=7.02&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=178&L_PAYMENTREQUEST_0_NAME1=G%C3%A9lule+v%C3%A9g%C3%A9tale+Stimulant+Minceur%2C+Caf%C3%A9+vert+%2F+Th%C3%A9+Vert+%2F+Guarana&L_PAYMENTREQUEST_0_DESC1=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT1=5.99&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=157&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=160&L_PAYMENTREQUEST_0_NAME3=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.2&PAYMENTREQUEST_0_AMT=50.20&ADDROVERRIDE=1&EMAIL=Sonia.g08%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sonia+Gobron&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688648244&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+du+docteur+lhoste&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villers+semeuse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7448472564799502N&TIMESTAMP=2016%2d07%2d05T21%3a17%3a50Z&CORRELATIONID=3fa52195ee31e&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=231&L_PAYMENTREQUEST_0_NAME0=Collier+Puces+Insectifuge+sp%C3%A9cial+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT0=7.02&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=178&L_PAYMENTREQUEST_0_NAME1=G%C3%A9lule+v%C3%A9g%C3%A9tale+Stimulant+Minceur%2C+Caf%C3%A9+vert+%2F+Th%C3%A9+Vert+%2F+Guarana&L_PAYMENTREQUEST_0_DESC1=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT1=5.99&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=157&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=160&L_PAYMENTREQUEST_0_NAME3=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.2&PAYMENTREQUEST_0_AMT=50.20&ADDROVERRIDE=1&EMAIL=Sonia.g08%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sonia+Gobron&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688648244&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+du+docteur+lhoste&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villers+semeuse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7448472564799502N -Result : TOKEN=EC%2d7448472564799502N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d05T21%3a18%3a30Z&CORRELATIONID=b76b6d2b13ea9&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=sonia%2eg08%40hotmail%2efr&PAYERID=FYFGS49UC9JPL&PAYERSTATUS=verified&FIRSTNAME=sonia&LASTNAME=gobron&COUNTRYCODE=FR&SHIPTONAME=Sonia%20Gobron&SHIPTOSTREET=10%20rue%20du%20docteur%20lhoste&SHIPTOCITY=Villers%20semeuse&SHIPTOZIP=08000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0688648244&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=50%2e20&ITEMAMT=50%2e20&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Collier%20Puces%20Insectifuge%20sp%c3%a9cial%20Chats&L_NAME1=G%c3%a9lule%20v%c3%a9g%c3%a9tale%20Stimulant%20Minceur%2c%20Caf%c3%a9%20vert%20%2f%20Th%c3%a9%20Vert%20%2f%20Guarana&L_NAME2=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME3=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=231&L_NUMBER1=178&L_NUMBER2=157&L_NUMBER3=160&L_QTY0=1&L_QTY1=2&L_QTY2=1&L_QTY3=4&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=7%2e02&L_AMT1=5%2e99&L_AMT2=7%2e40&L_AMT3=5%2e95&L_DESC0=Permet%20de%20prot%c3%a9ger%20le%20chat%2c%20des%20puces%2c%20des%20tiques%2c%2e%2e%2e&L_DESC1=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&L_DESC2=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_DESC3=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=50%2e20&PAYMENTREQUEST_0_ITEMAMT=50%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Sonia%20Gobron&PAYMENTREQUEST_0_SHIPTOSTREET=10%20rue%20du%20docteur%20lhoste&PAYMENTREQUEST_0_SHIPTOCITY=Villers%20semeuse&PAYMENTREQUEST_0_SHIPTOZIP=08000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688648244&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Collier%20Puces%20Insectifuge%20sp%c3%a9cial%20Chats&L_PAYMENTREQUEST_0_NAME1=G%c3%a9lule%20v%c3%a9g%c3%a9tale%20Stimulant%20Minceur%2c%20Caf%c3%a9%20vert%20%2f%20Th%c3%a9%20Vert%20%2f%20Guarana&L_PAYMENTREQUEST_0_NAME2=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME3=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=231&L_PAYMENTREQUEST_0_NUMBER1=178&L_PAYMENTREQUEST_0_NUMBER2=157&L_PAYMENTREQUEST_0_NUMBER3=160&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=4&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e02&L_PAYMENTREQUEST_0_AMT1=5%2e99&L_PAYMENTREQUEST_0_AMT2=7%2e40&L_PAYMENTREQUEST_0_AMT3=5%2e95&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20prot%c3%a9ger%20le%20chat%2c%20des%20puces%2c%20des%20tiques%2c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7448472564799502N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7448472564799502N&PAYERID=FYFGS49UC9JPL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=231&L_PAYMENTREQUEST_0_NAME0=Collier+Puces+Insectifuge+sp%C3%A9cial+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT0=7.02&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=178&L_PAYMENTREQUEST_0_NAME1=G%C3%A9lule+v%C3%A9g%C3%A9tale+Stimulant+Minceur%2C+Caf%C3%A9+vert+%2F+Th%C3%A9+Vert+%2F+Guarana&L_PAYMENTREQUEST_0_DESC1=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT1=5.99&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=157&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=160&L_PAYMENTREQUEST_0_NAME3=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.2&PAYMENTREQUEST_0_AMT=50.20&ADDROVERRIDE=1&EMAIL=Sonia.g08%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sonia+Gobron&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688648244&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+du+docteur+lhoste&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villers+semeuse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08000 -Result : TOKEN=EC%2d7448472564799502N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d05T21%3a18%3a32Z&CORRELATIONID=b7d0c32446974&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=21L75961CF6404208&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d05T21%3a18%3a31Z&PAYMENTINFO_0_AMT=50%2e20&PAYMENTINFO_0_FEEAMT=1%2e96&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7448472564799502N&PAYERID=FYFGS49UC9JPL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=231&L_PAYMENTREQUEST_0_NAME0=Collier+Puces+Insectifuge+sp%C3%A9cial+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT0=7.02&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=178&L_PAYMENTREQUEST_0_NAME1=G%C3%A9lule+v%C3%A9g%C3%A9tale+Stimulant+Minceur%2C+Caf%C3%A9+vert+%2F+Th%C3%A9+Vert+%2F+Guarana&L_PAYMENTREQUEST_0_DESC1=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT1=5.99&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=157&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=160&L_PAYMENTREQUEST_0_NAME3=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.2&PAYMENTREQUEST_0_AMT=50.20&ADDROVERRIDE=1&EMAIL=Sonia.g08%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Sonia+Gobron&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688648244&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+du+docteur+lhoste&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villers+semeuse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=7.99&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.99&PAYMENTREQUEST_0_AMT=10.99&ADDROVERRIDE=1&EMAIL=ro.duflot%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=ROMAIN+DUFLOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615251884&PAYMENTREQUEST_0_SHIPTOSTREET=9+RUE+DE+LISBONNE&PAYMENTREQUEST_0_SHIPTOSTREET2=3EME+ETAGE&PAYMENTREQUEST_0_SHIPTOCITY=CALAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=62100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8MN79973J9097335N&TIMESTAMP=2016%2d07%2d05T22%3a57%3a03Z&CORRELATIONID=c185e130fe8e&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=7.99&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.99&PAYMENTREQUEST_0_AMT=10.99&ADDROVERRIDE=1&EMAIL=ro.duflot%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=ROMAIN+DUFLOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615251884&PAYMENTREQUEST_0_SHIPTOSTREET=9+RUE+DE+LISBONNE&PAYMENTREQUEST_0_SHIPTOSTREET2=3EME+ETAGE&PAYMENTREQUEST_0_SHIPTOCITY=CALAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=62100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN79973J9097335N -Result : TOKEN=EC%2d8MN79973J9097335N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d05T22%3a57%3a33Z&CORRELATIONID=ddf4d68348da0&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=Ro%2eduflot%40laposte%2enet&PAYERID=5RCPSALF79NQG&PAYERSTATUS=verified&BUSINESS=DUFLOT%20ROMAIN&FIRSTNAME=romain&LASTNAME=DUFLOT&COUNTRYCODE=FR&SHIPTONAME=romain%20DUFLOT&SHIPTOSTREET=9%20RUE%20DE%20LISBONNE&SHIPTOSTREET2=3EME%20ETAGE&SHIPTOCITY=CALAIS&SHIPTOZIP=62100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0615251884&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=10%2e99&ITEMAMT=7%2e99&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Capsule%20Onagre%20bourrache%20Eclat%20de%20la%20peau%20%2d%20Maxi%20format&L_NUMBER0=189&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=7%2e99&L_DESC0=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=10%2e99&PAYMENTREQUEST_0_ITEMAMT=7%2e99&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=romain%20DUFLOT&PAYMENTREQUEST_0_SHIPTOSTREET=9%20RUE%20DE%20LISBONNE&PAYMENTREQUEST_0_SHIPTOSTREET2=3EME%20ETAGE&PAYMENTREQUEST_0_SHIPTOCITY=CALAIS&PAYMENTREQUEST_0_SHIPTOZIP=62100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615251884&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Capsule%20Onagre%20bourrache%20Eclat%20de%20la%20peau%20%2d%20Maxi%20format&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e99&L_PAYMENTREQUEST_0_DESC0=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN79973J9097335N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN79973J9097335N&PAYERID=5RCPSALF79NQG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=7.99&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.99&PAYMENTREQUEST_0_AMT=10.99&ADDROVERRIDE=1&EMAIL=ro.duflot%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=ROMAIN+DUFLOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615251884&PAYMENTREQUEST_0_SHIPTOSTREET=9+RUE+DE+LISBONNE&PAYMENTREQUEST_0_SHIPTOSTREET2=3EME+ETAGE&PAYMENTREQUEST_0_SHIPTOCITY=CALAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=62100 -Result : TOKEN=EC%2d8MN79973J9097335N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d05T22%3a57%3a35Z&CORRELATIONID=fa78def57392&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2LG28594A7428484G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d05T22%3a57%3a34Z&PAYMENTINFO_0_AMT=10%2e99&PAYMENTINFO_0_FEEAMT=0%2e62&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN79973J9097335N&PAYERID=5RCPSALF79NQG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=7.99&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.99&PAYMENTREQUEST_0_AMT=10.99&ADDROVERRIDE=1&EMAIL=ro.duflot%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=ROMAIN+DUFLOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615251884&PAYMENTREQUEST_0_SHIPTOSTREET=9+RUE+DE+LISBONNE&PAYMENTREQUEST_0_SHIPTOSTREET2=3EME+ETAGE&PAYMENTREQUEST_0_SHIPTOCITY=CALAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=62100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.8&PAYMENTREQUEST_0_AMT=17.80&ADDROVERRIDE=1&EMAIL=bernarddurand994%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=danielle+durand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0385268329&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+pressoir&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=varennes+sous+dun&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5RM26522L47171012&TIMESTAMP=2016%2d07%2d06T12%3a29%3a46Z&CORRELATIONID=6b178d481071a&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.8&PAYMENTREQUEST_0_AMT=17.80&ADDROVERRIDE=1&EMAIL=bernarddurand994%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=danielle+durand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0385268329&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+pressoir&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=varennes+sous+dun&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5RM26522L47171012 -Result : TOKEN=EC%2d5RM26522L47171012&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d06T12%3a30%3a57Z&CORRELATIONID=ac8319d792182&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=bernarddurand994%40orange%2efr&PAYERID=YQN79RVM6S8S4&PAYERSTATUS=verified&FIRSTNAME=bernard&LASTNAME=durand&COUNTRYCODE=FR&SHIPTONAME=Danielle%20DURAND&SHIPTOSTREET=3%20RUE%20DU%20PRESSOIR&SHIPTOCITY=VARENNES%20SOUS%20DUN&SHIPTOZIP=71800&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0385268329&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=17%2e80&ITEMAMT=14%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=157&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=7%2e40&L_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=17%2e80&PAYMENTREQUEST_0_ITEMAMT=14%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Danielle%20DURAND&PAYMENTREQUEST_0_SHIPTOSTREET=3%20RUE%20DU%20PRESSOIR&PAYMENTREQUEST_0_SHIPTOCITY=VARENNES%20SOUS%20DUN&PAYMENTREQUEST_0_SHIPTOZIP=71800&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0385268329&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e40&L_PAYMENTREQUEST_0_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5RM26522L47171012 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5RM26522L47171012&PAYERID=YQN79RVM6S8S4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.8&PAYMENTREQUEST_0_AMT=17.80&ADDROVERRIDE=1&EMAIL=bernarddurand994%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=danielle+durand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0385268329&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+pressoir&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=varennes+sous+dun&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71800 -Result : TOKEN=EC%2d5RM26522L47171012&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d06T12%3a31%3a00Z&CORRELATIONID=54939b03bd1c5&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8C411710NK752030B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d06T12%3a30%3a59Z&PAYMENTINFO_0_AMT=17%2e80&PAYMENTINFO_0_FEEAMT=0%2e86&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5RM26522L47171012&PAYERID=YQN79RVM6S8S4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.8&PAYMENTREQUEST_0_AMT=17.80&ADDROVERRIDE=1&EMAIL=bernarddurand994%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=danielle+durand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0385268329&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+pressoir&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=varennes+sous+dun&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71800 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=100&L_PAYMENTREQUEST_0_NAME0=Eau+florale+de+rose+bio%2C+r%C3%A9g%C3%A9n%C3%A8re+et+tonifie&L_PAYMENTREQUEST_0_DESC0=Riche+en+actifs%2C+cette+eau+florale+biologique+cons...&L_PAYMENTREQUEST_0_AMT0=7.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=93&L_PAYMENTREQUEST_0_NAME1=Contour+yeux+anti-poches+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=10.15&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lavalaurelien%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=aurelien+Laval&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622482701&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Lacharri%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75011&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d24F51834BP0120317&TIMESTAMP=2016%2d07%2d06T16%3a29%3a40Z&CORRELATIONID=a879f8d3ec1b6&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=100&L_PAYMENTREQUEST_0_NAME0=Eau+florale+de+rose+bio%2C+r%C3%A9g%C3%A9n%C3%A8re+et+tonifie&L_PAYMENTREQUEST_0_DESC0=Riche+en+actifs%2C+cette+eau+florale+biologique+cons...&L_PAYMENTREQUEST_0_AMT0=7.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=93&L_PAYMENTREQUEST_0_NAME1=Contour+yeux+anti-poches+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=10.15&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lavalaurelien%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=aurelien+Laval&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622482701&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Lacharri%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75011&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-24F51834BP0120317 -Result : TOKEN=EC%2d24F51834BP0120317&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d06T16%3a31%3a03Z&CORRELATIONID=c208783ba841f&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=lavalaurelien%40hotmail%2ecom&PAYERID=32VPUCB88NP48&PAYERSTATUS=unverified&FIRSTNAME=aurelien&LASTNAME=Laval&COUNTRYCODE=FR&SHIPTONAME=aurelien%20Laval&SHIPTOSTREET=6%20rue%20Lacharri%c3%a8re&SHIPTOCITY=Paris&SHIPTOZIP=75011&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0622482701&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=24%2e10&ITEMAMT=18%2e10&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Eau%20florale%20de%20rose%20bio%2c%20r%c3%a9g%c3%a9n%c3%a8re%20et%20tonifie&L_NAME1=Contour%20yeux%20anti%2dpoches%20Hydra%20Aloe%20vera%20bio&L_NUMBER0=100&L_NUMBER1=93&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=7%2e95&L_AMT1=10%2e15&L_DESC0=Riche%20en%20actifs%2c%20cette%20eau%20florale%20biologique%20cons%2e%2e%2e&L_DESC1=SO%27BiO%20%c3%a9tic%c2%ae%20a%20s%c3%a9lectionn%c3%a9%20le%20meilleur%20de%20l%27aloe%20v%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=24%2e10&PAYMENTREQUEST_0_ITEMAMT=18%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=aurelien%20Laval&PAYMENTREQUEST_0_SHIPTOSTREET=6%20rue%20Lacharri%c3%a8re&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOZIP=75011&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622482701&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Eau%20florale%20de%20rose%20bio%2c%20r%c3%a9g%c3%a9n%c3%a8re%20et%20tonifie&L_PAYMENTREQUEST_0_NAME1=Contour%20yeux%20anti%2dpoches%20Hydra%20Aloe%20vera%20bio&L_PAYMENTREQUEST_0_NUMBER0=100&L_PAYMENTREQUEST_0_NUMBER1=93&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e95&L_PAYMENTREQUEST_0_AMT1=10%2e15&L_PAYMENTREQUEST_0_DESC0=Riche%20en%20actifs%2c%20cette%20eau%20florale%20biologique%20cons%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=SO%27BiO%20%c3%a9tic%c2%ae%20a%20s%c3%a9lectionn%c3%a9%20le%20meilleur%20de%20l%27aloe%20v%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-24F51834BP0120317 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-24F51834BP0120317&PAYERID=32VPUCB88NP48&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=100&L_PAYMENTREQUEST_0_NAME0=Eau+florale+de+rose+bio%2C+r%C3%A9g%C3%A9n%C3%A8re+et+tonifie&L_PAYMENTREQUEST_0_DESC0=Riche+en+actifs%2C+cette+eau+florale+biologique+cons...&L_PAYMENTREQUEST_0_AMT0=7.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=93&L_PAYMENTREQUEST_0_NAME1=Contour+yeux+anti-poches+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=10.15&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lavalaurelien%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=aurelien+Laval&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622482701&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Lacharri%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75011 -Result : TOKEN=EC%2d24F51834BP0120317&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d06T16%3a31%3a06Z&CORRELATIONID=c8117f1ebde2c&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5S186850MW378363Y&PAYMENTINFO_0_RECEIPTID=4614918204564002&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d06T16%3a31%3a05Z&PAYMENTINFO_0_AMT=24%2e10&PAYMENTINFO_0_FEEAMT=1%2e07&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Ineligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=None&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-24F51834BP0120317&PAYERID=32VPUCB88NP48&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=100&L_PAYMENTREQUEST_0_NAME0=Eau+florale+de+rose+bio%2C+r%C3%A9g%C3%A9n%C3%A8re+et+tonifie&L_PAYMENTREQUEST_0_DESC0=Riche+en+actifs%2C+cette+eau+florale+biologique+cons...&L_PAYMENTREQUEST_0_AMT0=7.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=93&L_PAYMENTREQUEST_0_NAME1=Contour+yeux+anti-poches+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=10.15&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lavalaurelien%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=aurelien+Laval&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622482701&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+Lacharri%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75011 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=thierry.bourgeois084%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=thierry+bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33631173188&PAYMENTREQUEST_0_SHIPTOSTREET=51+Rue+Carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Annecy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=74000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d30K90316NN274890D&TIMESTAMP=2016%2d07%2d06T18%3a51%3a12Z&CORRELATIONID=a79ccec5825bc&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=thierry.bourgeois084%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=thierry+bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33631173188&PAYMENTREQUEST_0_SHIPTOSTREET=51+Rue+Carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Annecy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=74000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-30K90316NN274890D -Result : TOKEN=EC%2d30K90316NN274890D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d06T18%3a53%3a26Z&CORRELATIONID=b6cb59c4376a6&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=thierry%2ebourgeois084%40orange%2efr&PAYERID=RKQYK6WQRGJ84&PAYERSTATUS=unverified&FIRSTNAME=thierry&LASTNAME=bourgeois&COUNTRYCODE=FR&SHIPTONAME=thierry%20bourgeois&SHIPTOSTREET=51%20Rue%20Carnot&SHIPTOCITY=Annecy&SHIPTOZIP=74000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33631173188&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=thierry%20bourgeois&PAYMENTREQUEST_0_SHIPTOSTREET=51%20Rue%20Carnot&PAYMENTREQUEST_0_SHIPTOCITY=Annecy&PAYMENTREQUEST_0_SHIPTOZIP=74000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33631173188&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-30K90316NN274890D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-30K90316NN274890D&PAYERID=RKQYK6WQRGJ84&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=thierry.bourgeois084%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=thierry+bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33631173188&PAYMENTREQUEST_0_SHIPTOSTREET=51+Rue+Carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Annecy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=74000 -Result : TOKEN=EC%2d30K90316NN274890D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d06T18%3a53%3a29Z&CORRELATIONID=5e7bd3069d0b&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6CR67455JF903692P&PAYMENTINFO_0_RECEIPTID=5460128809184428&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d06T18%3a53%3a27Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Ineligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=None&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-30K90316NN274890D&PAYERID=RKQYK6WQRGJ84&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=thierry.bourgeois084%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=thierry+bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33631173188&PAYMENTREQUEST_0_SHIPTOSTREET=51+Rue+Carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Annecy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=74000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.4&PAYMENTREQUEST_0_AMT=10.40&ADDROVERRIDE=1&EMAIL=samantha.dalanzy%40outlook.fr&PAYMENTREQUEST_0_SHIPTONAME=samantha+DALANZY&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762363654&PAYMENTREQUEST_0_SHIPTOSTREET=5+RUE+DE+L+ORNAIN&PAYMENTREQUEST_0_SHIPTOSTREET2=5177&PAYMENTREQUEST_0_SHIPTOCITY=Laxou&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54520&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d94U24233KW663834P&TIMESTAMP=2016%2d07%2d06T21%3a35%3a52Z&CORRELATIONID=383e89bd6c38b&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.4&PAYMENTREQUEST_0_AMT=10.40&ADDROVERRIDE=1&EMAIL=samantha.dalanzy%40outlook.fr&PAYMENTREQUEST_0_SHIPTONAME=samantha+DALANZY&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762363654&PAYMENTREQUEST_0_SHIPTOSTREET=5+RUE+DE+L+ORNAIN&PAYMENTREQUEST_0_SHIPTOSTREET2=5177&PAYMENTREQUEST_0_SHIPTOCITY=Laxou&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54520&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-94U24233KW663834P -Result : TOKEN=EC%2d94U24233KW663834P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d06T21%3a36%3a25Z&CORRELATIONID=661d2455c062b&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=samantha%2edalanzy%40outlook%2efr&PAYERID=J4BJJKZ8SSBNN&PAYERSTATUS=unverified&FIRSTNAME=samantha&LASTNAME=dalanzy&COUNTRYCODE=FR&SHIPTONAME=samantha%20DALANZY&SHIPTOSTREET=5%20RUE%20DE%20L%20ORNAIN&SHIPTOSTREET2=5177&SHIPTOCITY=Laxou&SHIPTOZIP=54520&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0762363654&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=10%2e40&ITEMAMT=7%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=157&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=7%2e40&L_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=10%2e40&PAYMENTREQUEST_0_ITEMAMT=7%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=samantha%20DALANZY&PAYMENTREQUEST_0_SHIPTOSTREET=5%20RUE%20DE%20L%20ORNAIN&PAYMENTREQUEST_0_SHIPTOSTREET2=5177&PAYMENTREQUEST_0_SHIPTOCITY=Laxou&PAYMENTREQUEST_0_SHIPTOZIP=54520&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762363654&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e40&L_PAYMENTREQUEST_0_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-94U24233KW663834P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-94U24233KW663834P&PAYERID=J4BJJKZ8SSBNN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.4&PAYMENTREQUEST_0_AMT=10.40&ADDROVERRIDE=1&EMAIL=samantha.dalanzy%40outlook.fr&PAYMENTREQUEST_0_SHIPTONAME=samantha+DALANZY&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762363654&PAYMENTREQUEST_0_SHIPTOSTREET=5+RUE+DE+L+ORNAIN&PAYMENTREQUEST_0_SHIPTOSTREET2=5177&PAYMENTREQUEST_0_SHIPTOCITY=Laxou&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54520 -Result : TOKEN=EC%2d94U24233KW663834P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d06T21%3a36%3a28Z&CORRELATIONID=8a7b4e36d9680&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2YG062319B9617607&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d06T21%3a36%3a27Z&PAYMENTINFO_0_AMT=10%2e40&PAYMENTINFO_0_FEEAMT=0%2e60&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-94U24233KW663834P&PAYERID=J4BJJKZ8SSBNN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.4&PAYMENTREQUEST_0_AMT=10.40&ADDROVERRIDE=1&EMAIL=samantha.dalanzy%40outlook.fr&PAYMENTREQUEST_0_SHIPTONAME=samantha+DALANZY&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762363654&PAYMENTREQUEST_0_SHIPTOSTREET=5+RUE+DE+L+ORNAIN&PAYMENTREQUEST_0_SHIPTOSTREET2=5177&PAYMENTREQUEST_0_SHIPTOCITY=Laxou&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54520 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=p_v_tech%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7ois+VERCHERE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0603865388&PAYMENTREQUEST_0_SHIPTOSTREET=La+rivi%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42750&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6GC69513SR837354G&TIMESTAMP=2016%2d07%2d07T07%3a45%3a35Z&CORRELATIONID=21345ec47aa7&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=p_v_tech%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7ois+VERCHERE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0603865388&PAYMENTREQUEST_0_SHIPTOSTREET=La+rivi%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42750&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC69513SR837354G -Result : TOKEN=EC%2d6GC69513SR837354G&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d07T07%3a46%3a20Z&CORRELATIONID=31c44c4ccd2fc&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=p_v_tech%40yahoo%2efr&PAYERID=6LUWDTGQR9C7U&PAYERSTATUS=verified&FIRSTNAME=Fran%c3%a7ois&LASTNAME=VERCHERE&COUNTRYCODE=FR&SHIPTONAME=Fran%c3%a7ois%20VERCHERE&SHIPTOSTREET=La%20Rivi%c3%a8re&SHIPTOCITY=Mars&SHIPTOZIP=42750&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0603865388&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e80&ITEMAMT=58%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NUMBER0=17&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=58%2e80&L_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e80&PAYMENTREQUEST_0_ITEMAMT=58%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Fran%c3%a7ois%20VERCHERE&PAYMENTREQUEST_0_SHIPTOSTREET=La%20Rivi%c3%a8re&PAYMENTREQUEST_0_SHIPTOCITY=Mars&PAYMENTREQUEST_0_SHIPTOZIP=42750&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0603865388&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=58%2e80&L_PAYMENTREQUEST_0_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC69513SR837354G - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC69513SR837354G&PAYERID=6LUWDTGQR9C7U&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=p_v_tech%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7ois+VERCHERE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0603865388&PAYMENTREQUEST_0_SHIPTOSTREET=La+rivi%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42750 -Result : TOKEN=EC%2d6GC69513SR837354G&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d07T07%3a46%3a23Z&CORRELATIONID=eac58616dcf91&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9KH842700C180351E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d07T07%3a46%3a21Z&PAYMENTINFO_0_AMT=58%2e80&PAYMENTINFO_0_FEEAMT=2%2e25&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC69513SR837354G&PAYERID=6LUWDTGQR9C7U&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=p_v_tech%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7ois+VERCHERE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0603865388&PAYMENTREQUEST_0_SHIPTOSTREET=La+rivi%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42750 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=723&L_PAYMENTREQUEST_0_NAME2=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1313&L_PAYMENTREQUEST_0_NAME3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=1761&L_PAYMENTREQUEST_0_NAME4=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC4=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1844&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=vanessa.plouzennec%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+PLOUZENNEC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684423627&PAYMENTREQUEST_0_SHIPTOSTREET=76+rue+amand+louis&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERT+LE+PETIT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91710&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d55S70725C30843325&TIMESTAMP=2016%2d07%2d07T08%3a00%3a10Z&CORRELATIONID=b3f3518cb7c9f&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=723&L_PAYMENTREQUEST_0_NAME2=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1313&L_PAYMENTREQUEST_0_NAME3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=1761&L_PAYMENTREQUEST_0_NAME4=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC4=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1844&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=vanessa.plouzennec%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+PLOUZENNEC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684423627&PAYMENTREQUEST_0_SHIPTOSTREET=76+rue+amand+louis&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERT+LE+PETIT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91710&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-55S70725C30843325 -Result : TOKEN=EC%2d55S70725C30843325&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d07T08%3a00%3a49Z&CORRELATIONID=9d641e9aa8161&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=vanessa%2eplouzennec%40orange%2efr&PAYERID=SQM43PQEABE58&PAYERSTATUS=verified&FIRSTNAME=PLOUZENNEC&LASTNAME=Vanessa&COUNTRYCODE=FR&SHIPTONAME=%20Vanessa%20PLOUZENNEC&SHIPTOSTREET=76%20rue%20Amand%20LOUIS&SHIPTOCITY=VERT%20LE%20PETIT&SHIPTOSTATE=FR&SHIPTOZIP=91710&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0684423627&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=37%2e20&ITEMAMT=31%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20%c3%a9mulsions%20et%20colles%20%2d%20D%c3%a9cap%27Cires%20Guard%c2%ae%20Ecologique%202Kg&L_NAME1=Ballon%20de%20football&L_NAME2=Pack%20Enlever%20colle%20carrelage&L_NAME3=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_NAME4=Pack%20comment%20enlever%20du%20carrelage&L_NAME5=Pack%20Enlever%20la%20colle&L_NUMBER0=285&L_NUMBER1=367&L_NUMBER2=723&L_NUMBER3=1313&L_NUMBER4=1761&L_NUMBER5=1844&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=31%2e20&L_AMT1=0%2e00&L_AMT2=0%2e00&L_AMT3=0%2e00&L_AMT4=0%2e00&L_AMT5=0%2e00&L_DESC0=Elimine%20les%20cires%2c%20et%20les%20%c3%a9mulsions%20acryliques%20sur%2e%2e%2e&L_DESC1=%2e%2e%2e&L_DESC2=Pack%20Enlever%20colle%20carrelage%2e%2e%2e&L_DESC3=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&L_DESC4=Pack%20comment%20enlever%20du%20carrelage%2e%2e%2e&L_DESC5=Pack%20Enlever%20la%20colle%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=37%2e20&PAYMENTREQUEST_0_ITEMAMT=31%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Vanessa%20PLOUZENNEC&PAYMENTREQUEST_0_SHIPTOSTREET=76%20rue%20Amand%20LOUIS&PAYMENTREQUEST_0_SHIPTOCITY=VERT%20LE%20PETIT&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91710&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684423627&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20%c3%a9mulsions%20et%20colles%20%2d%20D%c3%a9cap%27Cires%20Guard%c2%ae%20Ecologique%202Kg&L_PAYMENTREQUEST_0_NAME1=Ballon%20de%20football&L_PAYMENTREQUEST_0_NAME2=Pack%20Enlever%20colle%20carrelage&L_PAYMENTREQUEST_0_NAME3=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20produit%20Guard%20Industrie%20gr%c3%a2ce%20au%20code%20EURO2016&L_PAYMENTREQUEST_0_NAME4=Pack%20comment%20enlever%20du%20carrelage&L_PAYMENTREQUEST_0_NAME5=Pack%20Enlever%20la%20colle&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NUMBER2=723&L_PAYMENTREQUEST_0_NUMBER3=1313&L_PAYMENTREQUEST_0_NUMBER4=1761&L_PAYMENTREQUEST_0_NUMBER5=1844&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=31%2e20&L_PAYMENTREQUEST_0_AMT1=0%2e00&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_AMT3=0%2e00&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_AMT5=0%2e00&L_PAYMENTREQUEST_0_DESC0=Elimine%20les%20cires%2c%20et%20les%20%c3%a9mulsions%20acryliques%20sur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Pack%20Enlever%20colle%20carrelage%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=1%20Ballon%20de%20football%20offert%20pour%20tout%20achat%20d%27un%20p%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Pack%20comment%20enlever%20du%20carrelage%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Pack%20Enlever%20la%20colle%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-55S70725C30843325 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-55S70725C30843325&PAYERID=SQM43PQEABE58&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=723&L_PAYMENTREQUEST_0_NAME2=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1313&L_PAYMENTREQUEST_0_NAME3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=1761&L_PAYMENTREQUEST_0_NAME4=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC4=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1844&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=vanessa.plouzennec%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+PLOUZENNEC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684423627&PAYMENTREQUEST_0_SHIPTOSTREET=76+rue+amand+louis&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERT+LE+PETIT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91710 -Result : TOKEN=EC%2d55S70725C30843325&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d07T08%3a00%3a54Z&CORRELATIONID=cd08848ce6cf5&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4KJ33473SU097205G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d07T08%3a00%3a51Z&PAYMENTINFO_0_AMT=37%2e20&PAYMENTINFO_0_FEEAMT=1%2e51&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-55S70725C30843325&PAYERID=SQM43PQEABE58&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=367&L_PAYMENTREQUEST_0_NAME1=Ballon+de+football&L_PAYMENTREQUEST_0_DESC1=...&L_PAYMENTREQUEST_0_AMT1=0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=723&L_PAYMENTREQUEST_0_NAME2=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1313&L_PAYMENTREQUEST_0_NAME3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+produit+Guard+Industrie+gr%C3%A2ce+au+code+EURO2016&L_PAYMENTREQUEST_0_DESC3=1+Ballon+de+football+offert+pour+tout+achat+d%27un+p...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=1761&L_PAYMENTREQUEST_0_NAME4=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC4=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1844&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=vanessa.plouzennec%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Vanessa+PLOUZENNEC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684423627&PAYMENTREQUEST_0_SHIPTOSTREET=76+rue+amand+louis&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERT+LE+PETIT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91710 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=alinelizotte%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Aline+Lizotte&PAYMENTREQUEST_0_SHIPTOPHONENUM=0243626354&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+Role&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SOLESMES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d32N48435K2520693F&TIMESTAMP=2016%2d07%2d07T15%3a07%3a20Z&CORRELATIONID=d9955390b23c3&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=alinelizotte%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Aline+Lizotte&PAYMENTREQUEST_0_SHIPTOPHONENUM=0243626354&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+Role&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SOLESMES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-32N48435K2520693F -Result : TOKEN=EC%2d32N48435K2520693F&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d07T15%3a07%3a52Z&CORRELATIONID=d22ca697c5d42&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=alinelizotte%40gmail%2ecom&PAYERID=ELBY343NHBLG4&PAYERSTATUS=verified&FIRSTNAME=Aline&LASTNAME=Lizotte&COUNTRYCODE=FR&SHIPTONAME=Aline%20Lizotte&SHIPTOSTREET=5%20rue%20du%20Role&SHIPTOCITY=SOLESMES&SHIPTOZIP=72300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0243626354&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=22%2e20&ITEMAMT=16%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_NUMBER0=271&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=16%2e20&L_DESC0=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=22%2e20&PAYMENTREQUEST_0_ITEMAMT=16%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Aline%20Lizotte&PAYMENTREQUEST_0_SHIPTOSTREET=5%20rue%20du%20Role&PAYMENTREQUEST_0_SHIPTOCITY=SOLESMES&PAYMENTREQUEST_0_SHIPTOZIP=72300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0243626354&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=16%2e20&L_PAYMENTREQUEST_0_DESC0=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-32N48435K2520693F - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-32N48435K2520693F&PAYERID=ELBY343NHBLG4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=alinelizotte%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Aline+Lizotte&PAYMENTREQUEST_0_SHIPTOPHONENUM=0243626354&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+Role&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SOLESMES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72300 -Result : TOKEN=EC%2d32N48435K2520693F&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d07T15%3a07%3a56Z&CORRELATIONID=ea2f6e98e63e4&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8C976912N07475027&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d07T15%3a07%3a54Z&PAYMENTINFO_0_AMT=22%2e20&PAYMENTINFO_0_FEEAMT=1%2e00&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-32N48435K2520693F&PAYERID=ELBY343NHBLG4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=alinelizotte%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Aline+Lizotte&PAYMENTREQUEST_0_SHIPTOPHONENUM=0243626354&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+Role&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SOLESMES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=alpei37%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Alice+PEIGNEY+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0617962379+&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+clos+&PAYMENTREQUEST_0_SHIPTOSTREET2=Appartement+308&PAYMENTREQUEST_0_SHIPTOCITY=CLERMONT-FERRAND+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6GC333063E795373S&TIMESTAMP=2016%2d07%2d07T19%3a21%3a09Z&CORRELATIONID=c2a922c69a2d6&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=alpei37%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Alice+PEIGNEY+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0617962379+&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+clos+&PAYMENTREQUEST_0_SHIPTOSTREET2=Appartement+308&PAYMENTREQUEST_0_SHIPTOCITY=CLERMONT-FERRAND+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC333063E795373S -Result : TOKEN=EC%2d6GC333063E795373S&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d07T19%3a22%3a08Z&CORRELATIONID=6193143495a8d&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=maxime%2epeigney%40neuf%2efr&PAYERID=Y2A84W8JTR6NC&PAYERSTATUS=verified&FIRSTNAME=maxime&LASTNAME=PEIGNEY&COUNTRYCODE=FR&SHIPTONAME=Alice%20PEIGNEY&SHIPTOSTREET=25%20rue%20des%20clos&SHIPTOSTREET2=Appartement%20308&SHIPTOCITY=CLERMONT%2dFERRAND&SHIPTOZIP=63100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0617962379%20&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=41%2e90&ITEMAMT=35%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=4&L_NUMBER1=644&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=45%2e90&L_AMT1=%2d10%2e00&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=41%2e90&PAYMENTREQUEST_0_ITEMAMT=35%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Alice%20PEIGNEY&PAYMENTREQUEST_0_SHIPTOSTREET=25%20rue%20des%20clos&PAYMENTREQUEST_0_SHIPTOSTREET2=Appartement%20308&PAYMENTREQUEST_0_SHIPTOCITY=CLERMONT%2dFERRAND&PAYMENTREQUEST_0_SHIPTOZIP=63100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0617962379%20&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=45%2e90&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC333063E795373S - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC333063E795373S&PAYERID=Y2A84W8JTR6NC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=alpei37%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Alice+PEIGNEY+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0617962379+&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+clos+&PAYMENTREQUEST_0_SHIPTOSTREET2=Appartement+308&PAYMENTREQUEST_0_SHIPTOCITY=CLERMONT-FERRAND+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63100 -Result : TOKEN=EC%2d6GC333063E795373S&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d07T19%3a22%3a12Z&CORRELATIONID=ec59ee77b22a5&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6BF96354HR089983L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d07T19%3a22%3a10Z&PAYMENTINFO_0_AMT=41%2e90&PAYMENTINFO_0_FEEAMT=1%2e67&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6GC333063E795373S&PAYERID=Y2A84W8JTR6NC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=alpei37%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Alice+PEIGNEY+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0617962379+&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+clos+&PAYMENTREQUEST_0_SHIPTOSTREET2=Appartement+308&PAYMENTREQUEST_0_SHIPTOCITY=CLERMONT-FERRAND+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=63100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=316&L_PAYMENTREQUEST_0_NAME1=Shampoing+enfant+D%C3%A9m%C3%AAlant+%C3%A0+la+pomme+CATTIER+200ml&L_PAYMENTREQUEST_0_DESC1=Shampoing+d%C3%A9m%C3%AAlant+au+d%C3%A9licieux+parfum+de+pomme%2C+q...&L_PAYMENTREQUEST_0_AMT1=6.6&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.55&PAYMENTREQUEST_0_AMT=30.55&ADDROVERRIDE=1&EMAIL=martine.paul83%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=martine+paul&PAYMENTREQUEST_0_SHIPTOPHONENUM=0494283536&PAYMENTREQUEST_0_SHIPTOSTREET=80+impasse+des+rossignols&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Carnoules&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83660&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d74F65888TE139161A&TIMESTAMP=2016%2d07%2d08T09%3a31%3a47Z&CORRELATIONID=eafde4ad6744b&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=316&L_PAYMENTREQUEST_0_NAME1=Shampoing+enfant+D%C3%A9m%C3%AAlant+%C3%A0+la+pomme+CATTIER+200ml&L_PAYMENTREQUEST_0_DESC1=Shampoing+d%C3%A9m%C3%AAlant+au+d%C3%A9licieux+parfum+de+pomme%2C+q...&L_PAYMENTREQUEST_0_AMT1=6.6&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.55&PAYMENTREQUEST_0_AMT=30.55&ADDROVERRIDE=1&EMAIL=martine.paul83%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=martine+paul&PAYMENTREQUEST_0_SHIPTOPHONENUM=0494283536&PAYMENTREQUEST_0_SHIPTOSTREET=80+impasse+des+rossignols&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Carnoules&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83660&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-74F65888TE139161A -Result : TOKEN=EC%2d74F65888TE139161A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d08T09%3a32%3a40Z&CORRELATIONID=b9c172067514a&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=martine%2epaul83%40wanadoo%2efr&PAYERID=AVQ5KC3ZD29PW&PAYERSTATUS=verified&FIRSTNAME=martine&LASTNAME=paul&COUNTRYCODE=FR&SHIPTONAME=martine%20paul&SHIPTOSTREET=80%20impasse%20des%20rossignols&SHIPTOCITY=carnoules&SHIPTOZIP=83660&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0494283536&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=30%2e55&ITEMAMT=24%2e55&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_NAME1=Shampoing%20enfant%20D%c3%a9m%c3%aalant%20%c3%a0%20la%20pomme%20CATTIER%20200ml&L_NUMBER0=222&L_NUMBER1=316&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=17%2e95&L_AMT1=6%2e60&L_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&L_DESC1=Shampoing%20d%c3%a9m%c3%aalant%20au%20d%c3%a9licieux%20parfum%20de%20pomme%2c%20q%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=30%2e55&PAYMENTREQUEST_0_ITEMAMT=24%2e55&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=martine%20paul&PAYMENTREQUEST_0_SHIPTOSTREET=80%20impasse%20des%20rossignols&PAYMENTREQUEST_0_SHIPTOCITY=carnoules&PAYMENTREQUEST_0_SHIPTOZIP=83660&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0494283536&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_PAYMENTREQUEST_0_NAME1=Shampoing%20enfant%20D%c3%a9m%c3%aalant%20%c3%a0%20la%20pomme%20CATTIER%20200ml&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NUMBER1=316&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e95&L_PAYMENTREQUEST_0_AMT1=6%2e60&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Shampoing%20d%c3%a9m%c3%aalant%20au%20d%c3%a9licieux%20parfum%20de%20pomme%2c%20q%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-74F65888TE139161A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-74F65888TE139161A&PAYERID=AVQ5KC3ZD29PW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=316&L_PAYMENTREQUEST_0_NAME1=Shampoing+enfant+D%C3%A9m%C3%AAlant+%C3%A0+la+pomme+CATTIER+200ml&L_PAYMENTREQUEST_0_DESC1=Shampoing+d%C3%A9m%C3%AAlant+au+d%C3%A9licieux+parfum+de+pomme%2C+q...&L_PAYMENTREQUEST_0_AMT1=6.6&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.55&PAYMENTREQUEST_0_AMT=30.55&ADDROVERRIDE=1&EMAIL=martine.paul83%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=martine+paul&PAYMENTREQUEST_0_SHIPTOPHONENUM=0494283536&PAYMENTREQUEST_0_SHIPTOSTREET=80+impasse+des+rossignols&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Carnoules&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83660 -Result : TOKEN=EC%2d74F65888TE139161A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d08T09%3a32%3a42Z&CORRELATIONID=4491a57e913c8&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4HR85566F8254481E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d08T09%3a32%3a42Z&PAYMENTINFO_0_AMT=30%2e55&PAYMENTINFO_0_FEEAMT=1%2e29&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-74F65888TE139161A&PAYERID=AVQ5KC3ZD29PW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=316&L_PAYMENTREQUEST_0_NAME1=Shampoing+enfant+D%C3%A9m%C3%AAlant+%C3%A0+la+pomme+CATTIER+200ml&L_PAYMENTREQUEST_0_DESC1=Shampoing+d%C3%A9m%C3%AAlant+au+d%C3%A9licieux+parfum+de+pomme%2C+q...&L_PAYMENTREQUEST_0_AMT1=6.6&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.55&PAYMENTREQUEST_0_AMT=30.55&ADDROVERRIDE=1&EMAIL=martine.paul83%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=martine+paul&PAYMENTREQUEST_0_SHIPTOPHONENUM=0494283536&PAYMENTREQUEST_0_SHIPTOSTREET=80+impasse+des+rossignols&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Carnoules&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83660 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=293&L_PAYMENTREQUEST_0_NAME0=Graines+de+lin+Bio&L_PAYMENTREQUEST_0_DESC0=Augmentez+votre+apport+quotidien+en+fibres+gr%C3%A2ce+a...&L_PAYMENTREQUEST_0_AMT0=1.8&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=280&L_PAYMENTREQUEST_0_NAME1=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC1=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT1=2.6&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=298&L_PAYMENTREQUEST_0_NAME2=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC2=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=clariex%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+claude+rieux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680885579&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+la+commune+de+paris&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Aubervilliers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5PD494954J111511E&TIMESTAMP=2016%2d07%2d08T10%3a00%3a54Z&CORRELATIONID=af90008dc1b91&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=293&L_PAYMENTREQUEST_0_NAME0=Graines+de+lin+Bio&L_PAYMENTREQUEST_0_DESC0=Augmentez+votre+apport+quotidien+en+fibres+gr%C3%A2ce+a...&L_PAYMENTREQUEST_0_AMT0=1.8&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=280&L_PAYMENTREQUEST_0_NAME1=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC1=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT1=2.6&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=298&L_PAYMENTREQUEST_0_NAME2=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC2=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=clariex%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+claude+rieux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680885579&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+la+commune+de+paris&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Aubervilliers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5PD494954J111511E -Result : TOKEN=EC%2d5PD494954J111511E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d08T10%3a01%3a12Z&CORRELATIONID=2ec6e82c60325&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=clariex%40free%2efr&PAYERID=4UPCM67FR9TFU&PAYERSTATUS=verified&FIRSTNAME=jean%20claude&LASTNAME=rieux&COUNTRYCODE=FR&SHIPTONAME=jean%20claude%20rieux&SHIPTOSTREET=40%20rue%20de%20la%20commune%20de%20paris&SHIPTOCITY=aubervilliers&SHIPTOSTATE=93&SHIPTOZIP=93300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0680885579&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=13%2e90&ITEMAMT=10%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Graines%20de%20lin%20Bio&L_NAME1=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_NAME2=Romarin%20bio%20%2d%20feuilles&L_NUMBER0=293&L_NUMBER1=280&L_NUMBER2=298&L_QTY0=2&L_QTY1=2&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=1%2e80&L_AMT1=2%2e60&L_AMT2=2%2e10&L_DESC0=Augmentez%20votre%20apport%20quotidien%20en%20fibres%20gr%c3%a2ce%20a%2e%2e%2e&L_DESC1=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&L_DESC2=C%27est%20%c3%a0%20sa%20sauvagerie%20et%20%c3%a0%20sa%20libert%c3%a9%20que%20le%20romar%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=13%2e90&PAYMENTREQUEST_0_ITEMAMT=10%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=jean%20claude%20rieux&PAYMENTREQUEST_0_SHIPTOSTREET=40%20rue%20de%20la%20commune%20de%20paris&PAYMENTREQUEST_0_SHIPTOCITY=aubervilliers&PAYMENTREQUEST_0_SHIPTOSTATE=93&PAYMENTREQUEST_0_SHIPTOZIP=93300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680885579&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Graines%20de%20lin%20Bio&L_PAYMENTREQUEST_0_NAME1=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_PAYMENTREQUEST_0_NAME2=Romarin%20bio%20%2d%20feuilles&L_PAYMENTREQUEST_0_NUMBER0=293&L_PAYMENTREQUEST_0_NUMBER1=280&L_PAYMENTREQUEST_0_NUMBER2=298&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=1%2e80&L_PAYMENTREQUEST_0_AMT1=2%2e60&L_PAYMENTREQUEST_0_AMT2=2%2e10&L_PAYMENTREQUEST_0_DESC0=Augmentez%20votre%20apport%20quotidien%20en%20fibres%20gr%c3%a2ce%20a%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=C%27est%20%c3%a0%20sa%20sauvagerie%20et%20%c3%a0%20sa%20libert%c3%a9%20que%20le%20romar%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5PD494954J111511E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5PD494954J111511E&PAYERID=4UPCM67FR9TFU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=293&L_PAYMENTREQUEST_0_NAME0=Graines+de+lin+Bio&L_PAYMENTREQUEST_0_DESC0=Augmentez+votre+apport+quotidien+en+fibres+gr%C3%A2ce+a...&L_PAYMENTREQUEST_0_AMT0=1.8&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=280&L_PAYMENTREQUEST_0_NAME1=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC1=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT1=2.6&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=298&L_PAYMENTREQUEST_0_NAME2=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC2=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=clariex%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+claude+rieux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680885579&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+la+commune+de+paris&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Aubervilliers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93300 -Result : TOKEN=EC%2d5PD494954J111511E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d08T10%3a01%3a16Z&CORRELATIONID=403c7065999ee&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5M767295CS4090100&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d08T10%3a01%3a14Z&PAYMENTINFO_0_AMT=13%2e90&PAYMENTINFO_0_FEEAMT=0%2e72&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5PD494954J111511E&PAYERID=4UPCM67FR9TFU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=293&L_PAYMENTREQUEST_0_NAME0=Graines+de+lin+Bio&L_PAYMENTREQUEST_0_DESC0=Augmentez+votre+apport+quotidien+en+fibres+gr%C3%A2ce+a...&L_PAYMENTREQUEST_0_AMT0=1.8&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=280&L_PAYMENTREQUEST_0_NAME1=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC1=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT1=2.6&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=298&L_PAYMENTREQUEST_0_NAME2=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC2=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=clariex%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+claude+rieux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680885579&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+la+commune+de+paris&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Aubervilliers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.2&PAYMENTREQUEST_0_AMT=36.20&ADDROVERRIDE=1&EMAIL=michel.mecabor%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Michel+Rouyer&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676597703&PAYMENTREQUEST_0_SHIPTOSTREET=Hameau+de+M%C3%A2con&PAYMENTREQUEST_0_SHIPTOSTREET2=11+voie+Romaine&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Martin+de+la+Mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3NG12529YN138345C&TIMESTAMP=2016%2d07%2d08T14%3a29%3a57Z&CORRELATIONID=c17e09a210b71&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.2&PAYMENTREQUEST_0_AMT=36.20&ADDROVERRIDE=1&EMAIL=michel.mecabor%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Michel+Rouyer&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676597703&PAYMENTREQUEST_0_SHIPTOSTREET=Hameau+de+M%C3%A2con&PAYMENTREQUEST_0_SHIPTOSTREET2=11+voie+Romaine&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Martin+de+la+Mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3NG12529YN138345C -Result : TOKEN=EC%2d3NG12529YN138345C&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d08T14%3a30%3a20Z&CORRELATIONID=e34b600781cc2&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=michel%2erouyer%40mac%2ecom&PAYERID=TWLY96JXLQX8Y&PAYERSTATUS=verified&FIRSTNAME=Michel&LASTNAME=Rouyer&COUNTRYCODE=FR&SHIPTONAME=Michel%20Rouyer&SHIPTOSTREET=Hameau%20de%20M%c3%a2con&SHIPTOSTREET2=11%20voie%20Romaine&SHIPTOCITY=saint%20Martin%20de%20la%20Mer&SHIPTOZIP=21210&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0676597703&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=36%2e20&ITEMAMT=30%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=207&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=15%2e10&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=36%2e20&PAYMENTREQUEST_0_ITEMAMT=30%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Michel%20Rouyer&PAYMENTREQUEST_0_SHIPTOSTREET=Hameau%20de%20M%c3%a2con&PAYMENTREQUEST_0_SHIPTOSTREET2=11%20voie%20Romaine&PAYMENTREQUEST_0_SHIPTOCITY=saint%20Martin%20de%20la%20Mer&PAYMENTREQUEST_0_SHIPTOZIP=21210&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676597703&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3NG12529YN138345C - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3NG12529YN138345C&PAYERID=TWLY96JXLQX8Y&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.2&PAYMENTREQUEST_0_AMT=36.20&ADDROVERRIDE=1&EMAIL=michel.mecabor%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Michel+Rouyer&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676597703&PAYMENTREQUEST_0_SHIPTOSTREET=Hameau+de+M%C3%A2con&PAYMENTREQUEST_0_SHIPTOSTREET2=11+voie+Romaine&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Martin+de+la+Mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21210 -Result : TOKEN=EC%2d3NG12529YN138345C&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d08T14%3a30%3a23Z&CORRELATIONID=493aa961ae28c&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6UD71198W26818013&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d08T14%3a30%3a22Z&PAYMENTINFO_0_AMT=36%2e20&PAYMENTINFO_0_FEEAMT=1%2e48&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3NG12529YN138345C&PAYERID=TWLY96JXLQX8Y&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.2&PAYMENTREQUEST_0_AMT=36.20&ADDROVERRIDE=1&EMAIL=michel.mecabor%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Michel+Rouyer&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676597703&PAYMENTREQUEST_0_SHIPTOSTREET=Hameau+de+M%C3%A2con&PAYMENTREQUEST_0_SHIPTOSTREET2=11+voie+Romaine&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Martin+de+la+Mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21210 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+gommes+puissantes+qui+%C3%A9liminent+les+taches+les+...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=243&L_PAYMENTREQUEST_0_NAME1=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC1=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT1=29.93&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.33&PAYMENTREQUEST_0_AMT=53.33&ADDROVERRIDE=1&EMAIL=m.charpentier5%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Monique+CHARPENTIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678420352&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27Esp%C3%A9rance&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BRUNOY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6G102558N3315312C&TIMESTAMP=2016%2d07%2d08T18%3a02%3a24Z&CORRELATIONID=22c87da91414c&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+gommes+puissantes+qui+%C3%A9liminent+les+taches+les+...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=243&L_PAYMENTREQUEST_0_NAME1=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC1=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT1=29.93&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.33&PAYMENTREQUEST_0_AMT=53.33&ADDROVERRIDE=1&EMAIL=m.charpentier5%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Monique+CHARPENTIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678420352&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27Esp%C3%A9rance&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BRUNOY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6G102558N3315312C -Result : TOKEN=EC%2d6G102558N3315312C&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d08T18%3a02%3a51Z&CORRELATIONID=8f3fcf141d168&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=m%2echarpentier5%40orange%2efr&PAYERID=88UGM4H4FJZ3Q&PAYERSTATUS=verified&FIRSTNAME=Monique&LASTNAME=CHARPENTIER&COUNTRYCODE=FR&SHIPTONAME=Monique%20CHARPENTIER&SHIPTOSTREET=12%20rue%20de%20l%27esp%c3%a9rance&SHIPTOCITY=Brunoy&SHIPTOZIP=91800&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0678420352&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=53%2e33&ITEMAMT=53%2e33&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_NAME1=Imperm%c3%a9abilisant%20anti%2dtache%20pour%20marbre%20et%20mat%c3%a9riaux%20peu%20poreux%2d%20ProtectGuard%20MG%20Eco%20750ml&L_NUMBER0=300&L_NUMBER1=243&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=23%2e40&L_AMT1=29%2e93&L_DESC0=10%20gommes%20puissantes%20qui%20%c3%a9liminent%20les%20taches%20les%20%2e%2e%2e&L_DESC1=Stop%20aux%20taches%20sur%20marbre%20et%20granit%20%21L%27imperm%c3%a9abi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=53%2e33&PAYMENTREQUEST_0_ITEMAMT=53%2e33&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Monique%20CHARPENTIER&PAYMENTREQUEST_0_SHIPTOSTREET=12%20rue%20de%20l%27esp%c3%a9rance&PAYMENTREQUEST_0_SHIPTOCITY=Brunoy&PAYMENTREQUEST_0_SHIPTOZIP=91800&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678420352&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_PAYMENTREQUEST_0_NAME1=Imperm%c3%a9abilisant%20anti%2dtache%20pour%20marbre%20et%20mat%c3%a9riaux%20peu%20poreux%2d%20ProtectGuard%20MG%20Eco%20750ml&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NUMBER1=243&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=23%2e40&L_PAYMENTREQUEST_0_AMT1=29%2e93&L_PAYMENTREQUEST_0_DESC0=10%20gommes%20puissantes%20qui%20%c3%a9liminent%20les%20taches%20les%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Stop%20aux%20taches%20sur%20marbre%20et%20granit%20%21L%27imperm%c3%a9abi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6G102558N3315312C - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6G102558N3315312C&PAYERID=88UGM4H4FJZ3Q&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+gommes+puissantes+qui+%C3%A9liminent+les+taches+les+...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=243&L_PAYMENTREQUEST_0_NAME1=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC1=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT1=29.93&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.33&PAYMENTREQUEST_0_AMT=53.33&ADDROVERRIDE=1&EMAIL=m.charpentier5%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Monique+CHARPENTIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678420352&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27Esp%C3%A9rance&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BRUNOY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91800 -Result : TOKEN=EC%2d6G102558N3315312C&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d08T18%3a02%3a55Z&CORRELATIONID=696dac1a5555a&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8RH339072X9014501&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d08T18%3a02%3a52Z&PAYMENTINFO_0_AMT=53%2e33&PAYMENTINFO_0_FEEAMT=2%2e06&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6G102558N3315312C&PAYERID=88UGM4H4FJZ3Q&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+gommes+puissantes+qui+%C3%A9liminent+les+taches+les+...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=243&L_PAYMENTREQUEST_0_NAME1=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC1=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT1=29.93&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.33&PAYMENTREQUEST_0_AMT=53.33&ADDROVERRIDE=1&EMAIL=m.charpentier5%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Monique+CHARPENTIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678420352&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27Esp%C3%A9rance&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BRUNOY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91800 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=106&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT0=6.25&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.25&PAYMENTREQUEST_0_AMT=12.25&ADDROVERRIDE=1&EMAIL=latchie67%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=andree+oury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0771694800&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+saint+antoine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=chatenois&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67730&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8GJ44333HE724241C&TIMESTAMP=2016%2d07%2d08T23%3a40%3a32Z&CORRELATIONID=d7e160bd7a7b5&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=106&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT0=6.25&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.25&PAYMENTREQUEST_0_AMT=12.25&ADDROVERRIDE=1&EMAIL=latchie67%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=andree+oury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0771694800&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+saint+antoine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=chatenois&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67730&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=106.2&PAYMENTREQUEST_0_AMT=106.20&ADDROVERRIDE=1&EMAIL=rougier.bernard%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=BERNARD+ROUGIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671104313&PAYMENTREQUEST_0_SHIPTOSTREET=125+ROUTE+DES+COLLINES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MORETTE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9NT789172J238992H&TIMESTAMP=2016%2d07%2d09T06%3a09%3a24Z&CORRELATIONID=9bcd48d876a61&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=106.2&PAYMENTREQUEST_0_AMT=106.20&ADDROVERRIDE=1&EMAIL=rougier.bernard%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=BERNARD+ROUGIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671104313&PAYMENTREQUEST_0_SHIPTOSTREET=125+ROUTE+DES+COLLINES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MORETTE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9NT789172J238992H -Result : TOKEN=EC%2d9NT789172J238992H&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d09T06%3a09%3a45Z&CORRELATIONID=6dd7fca2630cf&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=barba%2dpapa%40orange%2efr&PAYERID=AMKRLQQYVCME6&PAYERSTATUS=verified&FIRSTNAME=BERNARD&LASTNAME=ROUGIER&COUNTRYCODE=FR&SHIPTONAME=BERNARD%20ROUGIER&SHIPTOSTREET=125%20ROUTE%20DES%20COLLINES&SHIPTOCITY=MORETTE&SHIPTOZIP=38210&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0671104313&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=106%2e20&ITEMAMT=106%2e20&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_NUMBER0=14&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=53%2e10&L_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=106%2e20&PAYMENTREQUEST_0_ITEMAMT=106%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=BERNARD%20ROUGIER&PAYMENTREQUEST_0_SHIPTOSTREET=125%20ROUTE%20DES%20COLLINES&PAYMENTREQUEST_0_SHIPTOCITY=MORETTE&PAYMENTREQUEST_0_SHIPTOZIP=38210&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671104313&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=53%2e10&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9NT789172J238992H - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9NT789172J238992H&PAYERID=AMKRLQQYVCME6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=106.2&PAYMENTREQUEST_0_AMT=106.20&ADDROVERRIDE=1&EMAIL=rougier.bernard%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=BERNARD+ROUGIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671104313&PAYMENTREQUEST_0_SHIPTOSTREET=125+ROUTE+DES+COLLINES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MORETTE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38210 -Result : TOKEN=EC%2d9NT789172J238992H&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d09T06%3a09%3a48Z&CORRELATIONID=a5e9339471357&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=25V17037411471726&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d09T06%3a09%3a47Z&PAYMENTINFO_0_AMT=106%2e20&PAYMENTINFO_0_FEEAMT=3%2e86&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9NT789172J238992H&PAYERID=AMKRLQQYVCME6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=106.2&PAYMENTREQUEST_0_AMT=106.20&ADDROVERRIDE=1&EMAIL=rougier.bernard%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=BERNARD+ROUGIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0671104313&PAYMENTREQUEST_0_SHIPTOSTREET=125+ROUTE+DES+COLLINES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MORETTE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38210 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=265&L_PAYMENTREQUEST_0_NAME0=Liquide+vaisselle+concentr%C3%A9+Aloe+vera+500ml+x3&L_PAYMENTREQUEST_0_DESC0=Liquide+vaisselle+%C3%A9cologique+Aloe+Vera+certifi%C3%A9+pa...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.01&PAYMENTREQUEST_0_AMT=36.01&ADDROVERRIDE=1&EMAIL=florence.matagne%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florence+MATAGNE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610045621&PAYMENTREQUEST_0_SHIPTOSTREET=51+rue+Saint+Quentin&PAYMENTREQUEST_0_SHIPTOSTREET2=Les+Oliviers+de+la+Pivotte&PAYMENTREQUEST_0_SHIPTOCITY=TOULON&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d13T52171HM670610D&TIMESTAMP=2016%2d07%2d09T09%3a53%3a14Z&CORRELATIONID=76ccd9ebd3429&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=265&L_PAYMENTREQUEST_0_NAME0=Liquide+vaisselle+concentr%C3%A9+Aloe+vera+500ml+x3&L_PAYMENTREQUEST_0_DESC0=Liquide+vaisselle+%C3%A9cologique+Aloe+Vera+certifi%C3%A9+pa...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.01&PAYMENTREQUEST_0_AMT=36.01&ADDROVERRIDE=1&EMAIL=florence.matagne%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florence+MATAGNE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610045621&PAYMENTREQUEST_0_SHIPTOSTREET=51+rue+Saint+Quentin&PAYMENTREQUEST_0_SHIPTOSTREET2=Les+Oliviers+de+la+Pivotte&PAYMENTREQUEST_0_SHIPTOCITY=TOULON&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-13T52171HM670610D -Result : TOKEN=EC%2d13T52171HM670610D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d09T09%3a53%3a33Z&CORRELATIONID=867ed6ae2607d&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=florence%2ematagne%40gmail%2ecom&PAYERID=5ZVN6ZCJ5MME6&PAYERSTATUS=verified&FIRSTNAME=Florence&LASTNAME=MATAGNE&COUNTRYCODE=FR&SHIPTONAME=Florence%20MATAGNE&SHIPTOSTREET=51%20rue%20Saint%20Quentin&SHIPTOSTREET2=Les%20Oliviers%20de%20la%20Pivotte&SHIPTOCITY=TOULON&SHIPTOZIP=83100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0610045621&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=36%2e01&ITEMAMT=30%2e01&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Liquide%20vaisselle%20concentr%c3%a9%20Aloe%20vera%20500ml%20x3&L_NAME1=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_NAME2=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_NUMBER0=265&L_NUMBER1=249&L_NUMBER2=159&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e99&L_AMT1=12%2e82&L_AMT2=11%2e20&L_DESC0=Liquide%20vaisselle%20%c3%a9cologique%20Aloe%20Vera%20certifi%c3%a9%20pa%2e%2e%2e&L_DESC1=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_DESC2=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=36%2e01&PAYMENTREQUEST_0_ITEMAMT=30%2e01&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Florence%20MATAGNE&PAYMENTREQUEST_0_SHIPTOSTREET=51%20rue%20Saint%20Quentin&PAYMENTREQUEST_0_SHIPTOSTREET2=Les%20Oliviers%20de%20la%20Pivotte&PAYMENTREQUEST_0_SHIPTOCITY=TOULON&PAYMENTREQUEST_0_SHIPTOZIP=83100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610045621&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Liquide%20vaisselle%20concentr%c3%a9%20Aloe%20vera%20500ml%20x3&L_PAYMENTREQUEST_0_NAME1=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_PAYMENTREQUEST_0_NAME2=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=265&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e99&L_PAYMENTREQUEST_0_AMT1=12%2e82&L_PAYMENTREQUEST_0_AMT2=11%2e20&L_PAYMENTREQUEST_0_DESC0=Liquide%20vaisselle%20%c3%a9cologique%20Aloe%20Vera%20certifi%c3%a9%20pa%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-13T52171HM670610D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-13T52171HM670610D&PAYERID=5ZVN6ZCJ5MME6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=265&L_PAYMENTREQUEST_0_NAME0=Liquide+vaisselle+concentr%C3%A9+Aloe+vera+500ml+x3&L_PAYMENTREQUEST_0_DESC0=Liquide+vaisselle+%C3%A9cologique+Aloe+Vera+certifi%C3%A9+pa...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.01&PAYMENTREQUEST_0_AMT=36.01&ADDROVERRIDE=1&EMAIL=florence.matagne%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florence+MATAGNE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610045621&PAYMENTREQUEST_0_SHIPTOSTREET=51+rue+Saint+Quentin&PAYMENTREQUEST_0_SHIPTOSTREET2=Les+Oliviers+de+la+Pivotte&PAYMENTREQUEST_0_SHIPTOCITY=TOULON&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83100 -Result : TOKEN=EC%2d13T52171HM670610D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d09T09%3a53%3a35Z&CORRELATIONID=9f8daffd52a91&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6DS70378CL3709916&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d09T09%3a53%3a34Z&PAYMENTINFO_0_AMT=36%2e01&PAYMENTINFO_0_FEEAMT=1%2e47&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-13T52171HM670610D&PAYERID=5ZVN6ZCJ5MME6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=265&L_PAYMENTREQUEST_0_NAME0=Liquide+vaisselle+concentr%C3%A9+Aloe+vera+500ml+x3&L_PAYMENTREQUEST_0_DESC0=Liquide+vaisselle+%C3%A9cologique+Aloe+Vera+certifi%C3%A9+pa...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.01&PAYMENTREQUEST_0_AMT=36.01&ADDROVERRIDE=1&EMAIL=florence.matagne%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florence+MATAGNE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610045621&PAYMENTREQUEST_0_SHIPTOSTREET=51+rue+Saint+Quentin&PAYMENTREQUEST_0_SHIPTOSTREET2=Les+Oliviers+de+la+Pivotte&PAYMENTREQUEST_0_SHIPTOCITY=TOULON&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=g4ry.92%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=gary+martinet-demirdjian+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0611642897&PAYMENTREQUEST_0_SHIPTOSTREET=02+rue+Gustave+Courbet+&PAYMENTREQUEST_0_SHIPTOSTREET2=appartement+146&PAYMENTREQUEST_0_SHIPTOCITY=gennevilliers+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6S990233JL802581K&TIMESTAMP=2016%2d07%2d09T11%3a57%3a51Z&CORRELATIONID=b95bffa69ca8c&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=g4ry.92%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=gary+martinet-demirdjian+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0611642897&PAYMENTREQUEST_0_SHIPTOSTREET=02+rue+Gustave+Courbet+&PAYMENTREQUEST_0_SHIPTOSTREET2=appartement+146&PAYMENTREQUEST_0_SHIPTOCITY=gennevilliers+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6S990233JL802581K -Result : TOKEN=EC%2d6S990233JL802581K&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d09T11%3a59%3a37Z&CORRELATIONID=171b31af65d82&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=sgarrista%40hotmail%2efr&PAYERID=SHHEP84QUUKNU&PAYERSTATUS=unverified&FIRSTNAME=gary&LASTNAME=martinet&COUNTRYCODE=FR&SHIPTONAME=gary%20martinet%2ddemirdjian&SHIPTOSTREET=02%20rue%20Gustave%20Courbet&SHIPTOSTREET2=appartement%20146&SHIPTOCITY=Gennevilliers%20&SHIPTOZIP=92230&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0611642897&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=13%2e90&ITEMAMT=10%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Masque%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_NAME1=Gommage%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_NUMBER0=113&L_NUMBER1=112&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=5%2e45&L_AMT1=5%2e45&L_DESC0=Ce%20masque%20purifiant%20riche%20en%20argile%20verte%20montmori%2e%2e%2e&L_DESC1=Ce%20gommage%20purifiant%20riche%20en%20argile%20verte%20montmor%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=13%2e90&PAYMENTREQUEST_0_ITEMAMT=10%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=gary%20martinet%2ddemirdjian&PAYMENTREQUEST_0_SHIPTOSTREET=02%20rue%20Gustave%20Courbet&PAYMENTREQUEST_0_SHIPTOSTREET2=appartement%20146&PAYMENTREQUEST_0_SHIPTOCITY=Gennevilliers%20&PAYMENTREQUEST_0_SHIPTOZIP=92230&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0611642897&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Masque%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_PAYMENTREQUEST_0_NAME1=Gommage%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e45&L_PAYMENTREQUEST_0_AMT1=5%2e45&L_PAYMENTREQUEST_0_DESC0=Ce%20masque%20purifiant%20riche%20en%20argile%20verte%20montmori%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20gommage%20purifiant%20riche%20en%20argile%20verte%20montmor%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6S990233JL802581K - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6S990233JL802581K&PAYERID=SHHEP84QUUKNU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=g4ry.92%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=gary+martinet-demirdjian+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0611642897&PAYMENTREQUEST_0_SHIPTOSTREET=02+rue+Gustave+Courbet+&PAYMENTREQUEST_0_SHIPTOSTREET2=appartement+146&PAYMENTREQUEST_0_SHIPTOCITY=gennevilliers+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92230 -Result : TOKEN=EC%2d6S990233JL802581K&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d09T11%3a59%3a40Z&CORRELATIONID=2423df89addd&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=05D27135EF898614H&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d09T11%3a59%3a39Z&PAYMENTINFO_0_AMT=13%2e90&PAYMENTINFO_0_FEEAMT=0%2e72&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6S990233JL802581K&PAYERID=SHHEP84QUUKNU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=g4ry.92%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=gary+martinet-demirdjian+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0611642897&PAYMENTREQUEST_0_SHIPTOSTREET=02+rue+Gustave+Courbet+&PAYMENTREQUEST_0_SHIPTOSTREET2=appartement+146&PAYMENTREQUEST_0_SHIPTOCITY=gennevilliers+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92230 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=275&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+coloris+Bois+Flott%C3%A9+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=Delphineengrand%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Delphine+Engrand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0629829254&PAYMENTREQUEST_0_SHIPTOSTREET=6+la+placette&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Andre+les+alpes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04170&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2XV80133AF043645D&TIMESTAMP=2016%2d07%2d09T13%3a48%3a37Z&CORRELATIONID=541c74a56426&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=275&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+coloris+Bois+Flott%C3%A9+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=Delphineengrand%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Delphine+Engrand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0629829254&PAYMENTREQUEST_0_SHIPTOSTREET=6+la+placette&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Andre+les+alpes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04170&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XV80133AF043645D -Result : TOKEN=EC%2d2XV80133AF043645D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d09T13%3a49%3a07Z&CORRELATIONID=f14226a78b793&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=delphineengrand%40hotmail%2ecom&PAYERID=J5SGSTDD2Y9JA&PAYERSTATUS=verified&FIRSTNAME=Delphine&LASTNAME=Engrand&COUNTRYCODE=FR&SHIPTONAME=Delphine%20Engrand&SHIPTOSTREET=6%20la%20placette&SHIPTOCITY=Saint%20Andre%20les%20alpes&SHIPTOZIP=04170&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0629829254&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=164%2e70&ITEMAMT=164%2e70&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20coloris%20Bois%20Flott%c3%a9%2012Kg&L_NUMBER0=275&L_QTY0=3&L_TAXAMT0=0%2e00&L_AMT0=54%2e90&L_DESC0=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=164%2e70&PAYMENTREQUEST_0_ITEMAMT=164%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Delphine%20Engrand&PAYMENTREQUEST_0_SHIPTOSTREET=6%20la%20placette&PAYMENTREQUEST_0_SHIPTOCITY=Saint%20Andre%20les%20alpes&PAYMENTREQUEST_0_SHIPTOZIP=04170&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0629829254&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20coloris%20Bois%20Flott%c3%a9%2012Kg&L_PAYMENTREQUEST_0_NUMBER0=275&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_DESC0=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XV80133AF043645D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XV80133AF043645D&PAYERID=J5SGSTDD2Y9JA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=275&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+coloris+Bois+Flott%C3%A9+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=Delphineengrand%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Delphine+Engrand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0629829254&PAYMENTREQUEST_0_SHIPTOSTREET=6+la+placette&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Andre+les+alpes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04170 -Result : TOKEN=EC%2d2XV80133AF043645D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d09T13%3a49%3a10Z&CORRELATIONID=d8440d9ab8f59&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9W811703SG5520404&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d09T13%3a49%3a09Z&PAYMENTINFO_0_AMT=164%2e70&PAYMENTINFO_0_FEEAMT=5%2e85&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XV80133AF043645D&PAYERID=J5SGSTDD2Y9JA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=275&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+coloris+Bois+Flott%C3%A9+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=164.7&PAYMENTREQUEST_0_AMT=164.70&ADDROVERRIDE=1&EMAIL=Delphineengrand%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Delphine+Engrand&PAYMENTREQUEST_0_SHIPTOPHONENUM=0629829254&PAYMENTREQUEST_0_SHIPTOSTREET=6+la+placette&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Andre+les+alpes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04170 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d91X393194S809263D&TIMESTAMP=2016%2d07%2d10T02%3a46%3a50Z&CORRELATIONID=ad09ae78ec9b2&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D -Result : TOKEN=EC%2d91X393194S809263D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d10T02%3a47%3a08Z&CORRELATIONID=852aea32d4166&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=assaniah%40hotmail%2ecom&PAYERID=M8KBGZYJZZLW6&PAYERSTATUS=verified&FIRSTNAME=Anne&LASTNAME=PANFILOFF&COUNTRYCODE=FR&SHIPTONAME=Anne%20Panfiloff&SHIPTOSTREET=111%20rue%20de%20Lap%c3%a9rouse&SHIPTOCITY=Ambres&SHIPTOSTATE=XX&SHIPTOZIP=81500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0626822189&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e19&ITEMAMT=20%2e19&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME3=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_NAME5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine&L_NUMBER0=163&L_NUMBER1=169&L_NUMBER2=165&L_NUMBER3=167&L_NUMBER4=721&L_NUMBER5=1764&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=3%2e19&L_AMT1=5%2e45&L_AMT2=3%2e19&L_AMT3=8%2e36&L_AMT4=0%2e00&L_AMT5=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC3=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&L_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_DESC5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e19&PAYMENTREQUEST_0_ITEMAMT=20%2e19&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Anne%20Panfiloff&PAYMENTREQUEST_0_SHIPTOSTREET=111%20rue%20de%20Lap%c3%a9rouse&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOSTATE=XX&PAYMENTREQUEST_0_SHIPTOZIP=81500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NAME5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e19&L_PAYMENTREQUEST_0_AMT1=5%2e45&L_PAYMENTREQUEST_0_AMT2=3%2e19&L_PAYMENTREQUEST_0_AMT3=8%2e36&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_AMT5=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D&PAYERID=M8KBGZYJZZLW6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500 -Result : TOKEN=EC%2d91X393194S809263D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d10T02%3a47%3a10Z&CORRELATIONID=c2fd8115ecd16&ACK=Failure&VERSION=106&BUILD=23255924&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D&PAYERID=M8KBGZYJZZLW6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D -Result : TOKEN=EC%2d91X393194S809263D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionFailed&TIMESTAMP=2016%2d07%2d10T02%3a49%3a50Z&CORRELATIONID=24bc46f454d87&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=assaniah%40hotmail%2ecom&PAYERID=M8KBGZYJZZLW6&PAYERSTATUS=verified&FIRSTNAME=Anne&LASTNAME=PANFILOFF&COUNTRYCODE=FR&SHIPTONAME=Anne%20Panfiloff&SHIPTOSTREET=111%20rue%20de%20Lap%c3%a9rouse&SHIPTOCITY=Ambres&SHIPTOSTATE=XX&SHIPTOZIP=81500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0626822189&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e19&ITEMAMT=20%2e19&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME3=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_NAME5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine&L_NUMBER0=163&L_NUMBER1=169&L_NUMBER2=165&L_NUMBER3=167&L_NUMBER4=721&L_NUMBER5=1764&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=3%2e19&L_AMT1=5%2e45&L_AMT2=3%2e19&L_AMT3=8%2e36&L_AMT4=0%2e00&L_AMT5=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC3=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&L_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_DESC5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e19&PAYMENTREQUEST_0_ITEMAMT=20%2e19&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Anne%20Panfiloff&PAYMENTREQUEST_0_SHIPTOSTREET=111%20rue%20de%20Lap%c3%a9rouse&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOSTATE=XX&PAYMENTREQUEST_0_SHIPTOZIP=81500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NAME5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e19&L_PAYMENTREQUEST_0_AMT1=5%2e45&L_PAYMENTREQUEST_0_AMT2=3%2e19&L_PAYMENTREQUEST_0_AMT3=8%2e36&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_AMT5=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Pack%20Enlever%20les%20rayures%20sur%20la%20porcelaine%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D&PAYERID=M8KBGZYJZZLW6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500 -Result : TOKEN=EC%2d91X393194S809263D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d10T02%3a49%3a53Z&CORRELATIONID=7e10fc68a339&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5K181555SM899804B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d10T02%3a49%3a51Z&PAYMENTINFO_0_AMT=26%2e19&PAYMENTINFO_0_FEEAMT=1%2e14&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-91X393194S809263D&PAYERID=M8KBGZYJZZLW6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.19&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.19&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=167&L_PAYMENTREQUEST_0_NAME3=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT3=8.36&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=1764&L_PAYMENTREQUEST_0_NAME5=Pack+Enlever+les+rayures+sur+la+porcelaine&L_PAYMENTREQUEST_0_DESC5=Pack+Enlever+les+rayures+sur+la+porcelaine...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=20.19&PAYMENTREQUEST_0_AMT=26.19&ADDROVERRIDE=1&EMAIL=assaniah%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Anne+PANFILOFF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626822189&PAYMENTREQUEST_0_SHIPTOSTREET=111+rue+de+Lap%C3%A9rouse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ambres&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=81500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=audrey.ponseele%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=audrey+ponseele&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782503187&PAYMENTREQUEST_0_SHIPTOSTREET=21+rue+de+plougastel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sin+le+noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4VN468772E1771400&TIMESTAMP=2016%2d07%2d10T08%3a19%3a34Z&CORRELATIONID=f8568a1b31981&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=audrey.ponseele%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=audrey+ponseele&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782503187&PAYMENTREQUEST_0_SHIPTOSTREET=21+rue+de+plougastel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sin+le+noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.43&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=8.43&PAYMENTREQUEST_0_AMT=11.46&ADDROVERRIDE=1&EMAIL=jacquet.m55183%40teledisnet.be&PAYMENTREQUEST_0_SHIPTONAME=Magali+Govers-Gillet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484185083&PAYMENTREQUEST_0_SHIPTOSTREET=rue+Neuve+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ch%C3%A9n%C3%A9e&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=4032&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6J8528570X438132B&TIMESTAMP=2016%2d07%2d10T08%3a20%3a13Z&CORRELATIONID=70ead085eb325&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.43&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=8.43&PAYMENTREQUEST_0_AMT=11.46&ADDROVERRIDE=1&EMAIL=jacquet.m55183%40teledisnet.be&PAYMENTREQUEST_0_SHIPTONAME=Magali+Govers-Gillet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484185083&PAYMENTREQUEST_0_SHIPTOSTREET=rue+Neuve+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ch%C3%A9n%C3%A9e&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=4032&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6J8528570X438132B -Result : TOKEN=EC%2d6J8528570X438132B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d10T08%3a21%3a59Z&CORRELATIONID=7b1dbc9380c00&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=coolmag60%40live%2ebe&PAYERID=EK7HV9TA8YFYQ&PAYERSTATUS=verified&FIRSTNAME=Michel&LASTNAME=JACQUET&COUNTRYCODE=BE&SHIPTONAME=Magali%20Govers%2dGillet&SHIPTOSTREET=rue%20Neuve%206&SHIPTOCITY=Ch%c3%a9n%c3%a9e&SHIPTOZIP=4032&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0484185083&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e46&ITEMAMT=8%2e43&SHIPPINGAMT=3%2e03&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e43&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e46&PAYMENTREQUEST_0_ITEMAMT=8%2e43&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e03&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Magali%20Govers%2dGillet&PAYMENTREQUEST_0_SHIPTOSTREET=rue%20Neuve%206&PAYMENTREQUEST_0_SHIPTOCITY=Ch%c3%a9n%c3%a9e&PAYMENTREQUEST_0_SHIPTOZIP=4032&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484185083&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e43&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6J8528570X438132B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6J8528570X438132B&PAYERID=EK7HV9TA8YFYQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.43&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=8.43&PAYMENTREQUEST_0_AMT=11.46&ADDROVERRIDE=1&EMAIL=jacquet.m55183%40teledisnet.be&PAYMENTREQUEST_0_SHIPTONAME=Magali+Govers-Gillet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484185083&PAYMENTREQUEST_0_SHIPTOSTREET=rue+Neuve+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ch%C3%A9n%C3%A9e&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=4032 -Result : TOKEN=EC%2d6J8528570X438132B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d10T08%3a22%3a02Z&CORRELATIONID=144831e6c88b0&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0T073797PK722615D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d10T08%3a22%3a01Z&PAYMENTINFO_0_AMT=11%2e46&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6J8528570X438132B&PAYERID=EK7HV9TA8YFYQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.43&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=8.43&PAYMENTREQUEST_0_AMT=11.46&ADDROVERRIDE=1&EMAIL=jacquet.m55183%40teledisnet.be&PAYMENTREQUEST_0_SHIPTONAME=Magali+Govers-Gillet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484185083&PAYMENTREQUEST_0_SHIPTOSTREET=rue+Neuve+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Ch%C3%A9n%C3%A9e&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=4032 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=20.07&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.07&PAYMENTREQUEST_0_AMT=26.12&ADDROVERRIDE=1&EMAIL=isildacil%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=George+Yanez+Aranda&PAYMENTREQUEST_0_SHIPTOPHONENUM=0479853241&PAYMENTREQUEST_0_SHIPTOSTREET=chauss%C3%A9e+d%27alsemberg+1037&PAYMENTREQUEST_0_SHIPTOSTREET2=Orp%C3%A9a&PAYMENTREQUEST_0_SHIPTOCITY=Uccle&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d78J60219N24782135&TIMESTAMP=2016%2d07%2d10T19%3a47%3a52Z&CORRELATIONID=7ee022fb2eb01&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=20.07&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.07&PAYMENTREQUEST_0_AMT=26.12&ADDROVERRIDE=1&EMAIL=isildacil%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=George+Yanez+Aranda&PAYMENTREQUEST_0_SHIPTOPHONENUM=0479853241&PAYMENTREQUEST_0_SHIPTOSTREET=chauss%C3%A9e+d%27alsemberg+1037&PAYMENTREQUEST_0_SHIPTOSTREET2=Orp%C3%A9a&PAYMENTREQUEST_0_SHIPTOCITY=Uccle&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-78J60219N24782135 -Result : TOKEN=EC%2d78J60219N24782135&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d10T19%3a49%3a36Z&CORRELATIONID=5c4db46989b9c&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=lelilulo%40hotmail%2ecom&PAYERID=LHV2JX2TR4Y24&PAYERSTATUS=verified&FIRSTNAME=George&LASTNAME=Yanez&COUNTRYCODE=BE&SHIPTONAME=George%20Yanez%20Aranda&SHIPTOSTREET=chauss%c3%a9e%20d%27alsemberg%201037&SHIPTOSTREET2=Orp%c3%a9a&SHIPTOCITY=Uccle&SHIPTOZIP=1180&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0479853241&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e12&ITEMAMT=20%2e07&SHIPPINGAMT=6%2e05&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NUMBER0=5&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=20%2e07&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e12&PAYMENTREQUEST_0_ITEMAMT=20%2e07&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e05&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=George%20Yanez%20Aranda&PAYMENTREQUEST_0_SHIPTOSTREET=chauss%c3%a9e%20d%27alsemberg%201037&PAYMENTREQUEST_0_SHIPTOSTREET2=Orp%c3%a9a&PAYMENTREQUEST_0_SHIPTOCITY=Uccle&PAYMENTREQUEST_0_SHIPTOZIP=1180&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0479853241&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=20%2e07&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-78J60219N24782135 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-78J60219N24782135&PAYERID=LHV2JX2TR4Y24&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=20.07&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.07&PAYMENTREQUEST_0_AMT=26.12&ADDROVERRIDE=1&EMAIL=isildacil%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=George+Yanez+Aranda&PAYMENTREQUEST_0_SHIPTOPHONENUM=0479853241&PAYMENTREQUEST_0_SHIPTOSTREET=chauss%C3%A9e+d%27alsemberg+1037&PAYMENTREQUEST_0_SHIPTOSTREET2=Orp%C3%A9a&PAYMENTREQUEST_0_SHIPTOCITY=Uccle&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180 -Result : TOKEN=EC%2d78J60219N24782135&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d10T19%3a49%3a40Z&CORRELATIONID=89aaed7e9a177&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7RT99244UT226151X&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d10T19%3a49%3a39Z&PAYMENTINFO_0_AMT=26%2e12&PAYMENTINFO_0_FEEAMT=1%2e14&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-78J60219N24782135&PAYERID=LHV2JX2TR4Y24&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=20.07&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.07&PAYMENTREQUEST_0_AMT=26.12&ADDROVERRIDE=1&EMAIL=isildacil%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=George+Yanez+Aranda&PAYMENTREQUEST_0_SHIPTOPHONENUM=0479853241&PAYMENTREQUEST_0_SHIPTOSTREET=chauss%C3%A9e+d%27alsemberg+1037&PAYMENTREQUEST_0_SHIPTOSTREET2=Orp%C3%A9a&PAYMENTREQUEST_0_SHIPTOCITY=Uccle&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=oliviernemo%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Olivier++frances&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672991940&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+paul+noguier&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=beziers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7U7289670V727882D&TIMESTAMP=2016%2d07%2d11T00%3a17%3a34Z&CORRELATIONID=df8088075748b&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=oliviernemo%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Olivier++frances&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672991940&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+paul+noguier&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=beziers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7U7289670V727882D -Result : TOKEN=EC%2d7U7289670V727882D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T00%3a18%3a18Z&CORRELATIONID=63640f3be137&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=oliviernemo%40gmail%2ecom&PAYERID=LS9E44QHN5YRY&PAYERSTATUS=verified&FIRSTNAME=olivier&LASTNAME=frances&COUNTRYCODE=FR&SHIPTONAME=Olivier%20Frances&SHIPTOSTREET=3%20RUE%20PAUL%20NOGUIER&SHIPTOCITY=BEZIERS&SHIPTOZIP=34500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0672991940&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e80&ITEMAMT=58%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NUMBER0=17&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=58%2e80&L_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e80&PAYMENTREQUEST_0_ITEMAMT=58%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Olivier%20Frances&PAYMENTREQUEST_0_SHIPTOSTREET=3%20RUE%20PAUL%20NOGUIER&PAYMENTREQUEST_0_SHIPTOCITY=BEZIERS&PAYMENTREQUEST_0_SHIPTOZIP=34500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672991940&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=58%2e80&L_PAYMENTREQUEST_0_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7U7289670V727882D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7U7289670V727882D&PAYERID=LS9E44QHN5YRY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=oliviernemo%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Olivier++frances&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672991940&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+paul+noguier&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=beziers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34500 -Result : TOKEN=EC%2d7U7289670V727882D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T00%3a18%3a22Z&CORRELATIONID=5f5d98db2461a&ACK=Failure&VERSION=106&BUILD=23255924&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7U7289670V727882D&PAYERID=LS9E44QHN5YRY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=oliviernemo%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Olivier++frances&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672991940&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+paul+noguier&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=beziers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.15&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=730&L_PAYMENTREQUEST_0_NAME2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=10.25&PAYMENTREQUEST_0_AMT=16.25&ADDROVERRIDE=1&EMAIL=alain.debreux%40paris.fr&PAYMENTREQUEST_0_SHIPTONAME=Alain+Debreux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633081860&PAYMENTREQUEST_0_SHIPTOSTREET=29+boulevard+gabriel+peri&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Malaloff&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8MH148353W8653130&TIMESTAMP=2016%2d07%2d11T05%3a28%3a16Z&CORRELATIONID=f204b53317c9&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.15&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=730&L_PAYMENTREQUEST_0_NAME2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=10.25&PAYMENTREQUEST_0_AMT=16.25&ADDROVERRIDE=1&EMAIL=alain.debreux%40paris.fr&PAYMENTREQUEST_0_SHIPTONAME=Alain+Debreux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633081860&PAYMENTREQUEST_0_SHIPTOSTREET=29+boulevard+gabriel+peri&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Malaloff&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MH148353W8653130 -Result : TOKEN=EC%2d8MH148353W8653130&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T05%3a28%3a27Z&CORRELATIONID=e9f4e9969a6b1&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=macuserduxv%40orange%2efr&PAYERID=R8MRPWWV8AQ2Q&PAYERSTATUS=verified&BUSINESS=op&FIRSTNAME=alain&LASTNAME=debreux&COUNTRYCODE=FR&SHIPTONAME=alain%20debreux&SHIPTOSTREET=29%20boulevard%20gabriel%20peri&SHIPTOCITY=Malaloff&SHIPTOZIP=92240&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0633081860&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=16%2e25&ITEMAMT=10%2e25&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_NAME2=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_NUMBER0=160&L_NUMBER1=166&L_NUMBER2=730&L_QTY0=1&L_QTY1=2&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e95&L_AMT1=2%2e15&L_AMT2=0%2e00&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_DESC2=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=16%2e25&PAYMENTREQUEST_0_ITEMAMT=10%2e25&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=alain%20debreux&PAYMENTREQUEST_0_SHIPTOSTREET=29%20boulevard%20gabriel%20peri&PAYMENTREQUEST_0_SHIPTOCITY=Malaloff&PAYMENTREQUEST_0_SHIPTOZIP=92240&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633081860&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NUMBER2=730&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=2%2e15&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MH148353W8653130 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MH148353W8653130&PAYERID=R8MRPWWV8AQ2Q&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.15&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=730&L_PAYMENTREQUEST_0_NAME2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=10.25&PAYMENTREQUEST_0_AMT=16.25&ADDROVERRIDE=1&EMAIL=alain.debreux%40paris.fr&PAYMENTREQUEST_0_SHIPTONAME=Alain+Debreux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633081860&PAYMENTREQUEST_0_SHIPTOSTREET=29+boulevard+gabriel+peri&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Malaloff&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92240 -Result : TOKEN=EC%2d8MH148353W8653130&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T05%3a28%3a30Z&CORRELATIONID=d8b20ab9bb591&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=53G38885Y82207445&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T05%3a28%3a29Z&PAYMENTINFO_0_AMT=16%2e25&PAYMENTINFO_0_FEEAMT=0%2e80&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MH148353W8653130&PAYERID=R8MRPWWV8AQ2Q&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.15&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=730&L_PAYMENTREQUEST_0_NAME2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC2=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=10.25&PAYMENTREQUEST_0_AMT=16.25&ADDROVERRIDE=1&EMAIL=alain.debreux%40paris.fr&PAYMENTREQUEST_0_SHIPTONAME=Alain+Debreux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633081860&PAYMENTREQUEST_0_SHIPTOSTREET=29+boulevard+gabriel+peri&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Malaloff&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92240 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=l.vilsalmon%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=LAURENCE+VILSALMON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0609591130&PAYMENTREQUEST_0_SHIPTOSTREET=3+ALLEE+DES+1001+NUITS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=EMERAINVILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77184&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7MV92244476011356&TIMESTAMP=2016%2d07%2d11T07%3a39%3a41Z&CORRELATIONID=a7d95c4914efa&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=l.vilsalmon%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=LAURENCE+VILSALMON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0609591130&PAYMENTREQUEST_0_SHIPTOSTREET=3+ALLEE+DES+1001+NUITS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=EMERAINVILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77184&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MV92244476011356 -Result : TOKEN=EC%2d7MV92244476011356&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T07%3a40%3a48Z&CORRELATIONID=2b40e2fc4eb92&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=l%2evilsalmon%40gmail%2ecom&PAYERID=8MA6PAMM5QZZ4&PAYERSTATUS=unverified&FIRSTNAME=LAURENCE&LASTNAME=VILSALMON&COUNTRYCODE=FR&SHIPTONAME=LAURENCE%20VILSALMON&SHIPTOSTREET=3%20ALLEE%20DES%201001%20NUITS&SHIPTOCITY=EMERAINVILLE&SHIPTOSTATE=77&SHIPTOZIP=77184&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0609591130&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=LAURENCE%20VILSALMON&PAYMENTREQUEST_0_SHIPTOSTREET=3%20ALLEE%20DES%201001%20NUITS&PAYMENTREQUEST_0_SHIPTOCITY=EMERAINVILLE&PAYMENTREQUEST_0_SHIPTOSTATE=77&PAYMENTREQUEST_0_SHIPTOZIP=77184&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0609591130&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MV92244476011356 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MV92244476011356&PAYERID=8MA6PAMM5QZZ4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=l.vilsalmon%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=LAURENCE+VILSALMON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0609591130&PAYMENTREQUEST_0_SHIPTOSTREET=3+ALLEE+DES+1001+NUITS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=EMERAINVILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77184 -Result : TOKEN=EC%2d7MV92244476011356&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T07%3a40%3a51Z&CORRELATIONID=d70fe22566265&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=14R83528XT708500A&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T07%3a40%3a49Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MV92244476011356&PAYERID=8MA6PAMM5QZZ4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=l.vilsalmon%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=LAURENCE+VILSALMON&PAYMENTREQUEST_0_SHIPTOPHONENUM=0609591130&PAYMENTREQUEST_0_SHIPTOSTREET=3+ALLEE+DES+1001+NUITS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=EMERAINVILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77184 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=47&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=288&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC1=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7DG34734WR740753M&TIMESTAMP=2016%2d07%2d11T08%3a38%3a57Z&CORRELATIONID=5dadcbc2cd166&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=47&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=288&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC1=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7DG34734WR740753M -Result : TOKEN=EC%2d7DG34734WR740753M&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T08%3a39%3a15Z&CORRELATIONID=cb3f757c4a048&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=romdff%40yahoo%2efr&PAYERID=BF9SCCAZGUCDE&PAYERSTATUS=verified&FIRSTNAME=Romain&LASTNAME=Darjinoff&COUNTRYCODE=BE&SHIPTONAME=romain%20darjinoff&SHIPTOSTREET=115%2d117%20avenue%20Nouvelle&SHIPTOCITY=Bruxelles&SHIPTOSTATE=NOTPROVIDED&SHIPTOZIP=B%2d1040&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=%2b32485403397&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=166%2e08&ITEMAMT=166%2e08&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Panama%2012kg&L_NAME1=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20Coloris%20Glycine%2012Kg&L_NUMBER0=47&L_NUMBER1=288&L_QTY0=2&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=55%2e36&L_AMT1=55%2e36&L_DESC0=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_DESC1=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=166%2e08&PAYMENTREQUEST_0_ITEMAMT=166%2e08&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=romain%20darjinoff&PAYMENTREQUEST_0_SHIPTOSTREET=115%2d117%20avenue%20Nouvelle&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOSTATE=NOTPROVIDED&PAYMENTREQUEST_0_SHIPTOZIP=B%2d1040&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b32485403397&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Panama%2012kg&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%20interieur%20Magic%27Soie%20Coloris%20Glycine%2012Kg&L_PAYMENTREQUEST_0_NUMBER0=47&L_PAYMENTREQUEST_0_NUMBER1=288&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=55%2e36&L_PAYMENTREQUEST_0_AMT1=55%2e36&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Magic%27Soie%2c%20le%20style%20design%20po%c3%a9tique%20%3a%20raffin%c3%a9%2c%20l%c3%a9%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7DG34734WR740753M - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7DG34734WR740753M&PAYERID=BF9SCCAZGUCDE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=47&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=288&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC1=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040 -Result : TOKEN=EC%2d7DG34734WR740753M&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T08%3a39%3a18Z&CORRELATIONID=f6094dea778a5&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4LE4018135792832N&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T08%3a39%3a17Z&PAYMENTINFO_0_AMT=166%2e08&PAYMENTINFO_0_FEEAMT=5%2e90&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7DG34734WR740753M&PAYERID=BF9SCCAZGUCDE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=47&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Panama+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=55.36&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=288&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+interieur+Magic%27Soie+Coloris+Glycine+12Kg&L_PAYMENTREQUEST_0_DESC1=Magic%27Soie%2C+le+style+design+po%C3%A9tique+%3A+raffin%C3%A9%2C+l%C3%A9...&L_PAYMENTREQUEST_0_AMT1=55.36&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.08&PAYMENTREQUEST_0_AMT=166.08&ADDROVERRIDE=1&EMAIL=romdff%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=romain+darjinoff&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B32485403397&PAYMENTREQUEST_0_SHIPTOSTREET=115-117+avenue+nouvelle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1040 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7UV34721FN1627913&TIMESTAMP=2016%2d07%2d11T09%3a48%3a55Z&CORRELATIONID=1f137a2dcb561&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3UM665348L835793R&TIMESTAMP=2016%2d07%2d11T09%3a50%3a00Z&CORRELATIONID=778accf5b25fd&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UM665348L835793R -Result : TOKEN=EC%2d3UM665348L835793R&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T09%3a50%3a28Z&CORRELATIONID=831fb8888a706&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=delphil09%40yahoo%2efr&PAYERID=5R2YM2F6ZMP26&PAYERSTATUS=verified&BUSINESS=Maison&FIRSTNAME=philippe&LASTNAME=delage&COUNTRYCODE=FR&SHIPTONAME=robert%20delage&SHIPTOSTREET=5%20rue%20des%20fleurs&SHIPTOCITY=bezons&SHIPTOZIP=95870&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0130762587&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=37%2e20&ITEMAMT=31%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20%c3%a9mulsions%20et%20colles%20%2d%20D%c3%a9cap%27Cires%20Guard%c2%ae%20Ecologique%202Kg&L_NAME1=Pack%20Enlever%20colle%20carrelage&L_NAME2=Pack%20comment%20enlever%20du%20carrelage&L_NAME3=Pack%20Enlever%20la%20colle&L_NUMBER0=285&L_NUMBER1=723&L_NUMBER2=1761&L_NUMBER3=1844&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=31%2e20&L_AMT1=0%2e00&L_AMT2=0%2e00&L_AMT3=0%2e00&L_DESC0=Elimine%20les%20cires%2c%20et%20les%20%c3%a9mulsions%20acryliques%20sur%2e%2e%2e&L_DESC1=Pack%20Enlever%20colle%20carrelage%2e%2e%2e&L_DESC2=Pack%20comment%20enlever%20du%20carrelage%2e%2e%2e&L_DESC3=Pack%20Enlever%20la%20colle%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=37%2e20&PAYMENTREQUEST_0_ITEMAMT=31%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=robert%20delage&PAYMENTREQUEST_0_SHIPTOSTREET=5%20rue%20des%20fleurs&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOZIP=95870&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20%c3%a9mulsions%20et%20colles%20%2d%20D%c3%a9cap%27Cires%20Guard%c2%ae%20Ecologique%202Kg&L_PAYMENTREQUEST_0_NAME1=Pack%20Enlever%20colle%20carrelage&L_PAYMENTREQUEST_0_NAME2=Pack%20comment%20enlever%20du%20carrelage&L_PAYMENTREQUEST_0_NAME3=Pack%20Enlever%20la%20colle&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=31%2e20&L_PAYMENTREQUEST_0_AMT1=0%2e00&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_AMT3=0%2e00&L_PAYMENTREQUEST_0_DESC0=Elimine%20les%20cires%2c%20et%20les%20%c3%a9mulsions%20acryliques%20sur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Pack%20Enlever%20colle%20carrelage%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Pack%20comment%20enlever%20du%20carrelage%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Pack%20Enlever%20la%20colle%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UM665348L835793R - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UM665348L835793R&PAYERID=5R2YM2F6ZMP26&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870 -Result : TOKEN=EC%2d3UM665348L835793R&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T09%3a50%3a31Z&CORRELATIONID=8c0abfd894de7&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=04903420CV316774G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T09%3a50%3a30Z&PAYMENTINFO_0_AMT=37%2e20&PAYMENTINFO_0_FEEAMT=1%2e51&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UM665348L835793R&PAYERID=5R2YM2F6ZMP26&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=285&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+%C3%A9mulsions+et+colles+-+D%C3%A9cap%27Cires+Guard%C2%AE+Ecologique+2Kg&L_PAYMENTREQUEST_0_DESC0=Elimine+les+cires%2C+et+les+%C3%A9mulsions+acryliques+sur...&L_PAYMENTREQUEST_0_AMT0=31.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=723&L_PAYMENTREQUEST_0_NAME1=Pack+Enlever+colle+carrelage&L_PAYMENTREQUEST_0_DESC1=Pack+Enlever+colle+carrelage...&L_PAYMENTREQUEST_0_AMT1=-0&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=1761&L_PAYMENTREQUEST_0_NAME2=Pack+comment+enlever+du+carrelage&L_PAYMENTREQUEST_0_DESC2=Pack+comment+enlever+du+carrelage...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=1844&L_PAYMENTREQUEST_0_NAME3=Pack+Enlever+la+colle&L_PAYMENTREQUEST_0_DESC3=Pack+Enlever+la+colle...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=31.2&PAYMENTREQUEST_0_AMT=37.20&ADDROVERRIDE=1&EMAIL=delphil09%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=robert+delage&PAYMENTREQUEST_0_SHIPTOPHONENUM=0130762587&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+fleurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bezons&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=95870 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=ledeur.colette%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=colette+ledeur&PAYMENTREQUEST_0_SHIPTOPHONENUM=0967004753&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+de+l%27%C3%A9glise&PAYMENTREQUEST_0_SHIPTOSTREET2=cidex+6+bis&PAYMENTREQUEST_0_SHIPTOCITY=genevreuille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=70240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8MN73163RD974152P&TIMESTAMP=2016%2d07%2d11T10%3a03%3a59Z&CORRELATIONID=21e9ef2cbe1dd&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=ledeur.colette%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=colette+ledeur&PAYMENTREQUEST_0_SHIPTOPHONENUM=0967004753&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+de+l%27%C3%A9glise&PAYMENTREQUEST_0_SHIPTOSTREET2=cidex+6+bis&PAYMENTREQUEST_0_SHIPTOCITY=genevreuille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=70240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN73163RD974152P -Result : TOKEN=EC%2d8MN73163RD974152P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T10%3a06%3a36Z&CORRELATIONID=c74fb17a6f42b&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=ledeur%2ecolette%40orange%2efr&PAYERID=28Y6K69PXZS42&PAYERSTATUS=unverified&FIRSTNAME=colette&LASTNAME=ledeur&COUNTRYCODE=FR&SHIPTONAME=colette%20ledeur&SHIPTOSTREET=3%20rue%20de%20l%27%c3%a9glise&SHIPTOSTREET2=cidex%206%20bis&SHIPTOCITY=genevreuille&SHIPTOZIP=70240&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0967004753&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=20%2e50&ITEMAMT=17%2e50&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_NUMBER0=208&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=17%2e50&L_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e50&PAYMENTREQUEST_0_ITEMAMT=17%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=colette%20ledeur&PAYMENTREQUEST_0_SHIPTOSTREET=3%20rue%20de%20l%27%c3%a9glise&PAYMENTREQUEST_0_SHIPTOSTREET2=cidex%206%20bis&PAYMENTREQUEST_0_SHIPTOCITY=genevreuille&PAYMENTREQUEST_0_SHIPTOZIP=70240&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0967004753&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e50&L_PAYMENTREQUEST_0_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN73163RD974152P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN73163RD974152P&PAYERID=28Y6K69PXZS42&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=ledeur.colette%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=colette+ledeur&PAYMENTREQUEST_0_SHIPTOPHONENUM=0967004753&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+de+l%27%C3%A9glise&PAYMENTREQUEST_0_SHIPTOSTREET2=cidex+6+bis&PAYMENTREQUEST_0_SHIPTOCITY=genevreuille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=70240 -Result : TOKEN=EC%2d8MN73163RD974152P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T10%3a06%3a39Z&CORRELATIONID=de4b7dfc859c5&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8R0289086X560920J&PAYMENTINFO_0_RECEIPTID=2431061952027735&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T10%3a06%3a37Z&PAYMENTINFO_0_AMT=20%2e50&PAYMENTINFO_0_FEEAMT=0%2e95&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Ineligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=None&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8MN73163RD974152P&PAYERID=28Y6K69PXZS42&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=ledeur.colette%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=colette+ledeur&PAYMENTREQUEST_0_SHIPTOPHONENUM=0967004753&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+de+l%27%C3%A9glise&PAYMENTREQUEST_0_SHIPTOSTREET2=cidex+6+bis&PAYMENTREQUEST_0_SHIPTOCITY=genevreuille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=70240 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=2.93&PAYMENTREQUEST_0_ITEMAMT=5.8&PAYMENTREQUEST_0_AMT=8.73&ADDROVERRIDE=1&EMAIL=tamier%40ggg.com&PAYMENTREQUEST_0_SHIPTONAME=sssjsjsjsj+sjsjsjjsss&PAYMENTREQUEST_0_SHIPTOPHONENUM=3334747747447&PAYMENTREQUEST_0_SHIPTOSTREET=sshjdlhdlhbd&PAYMENTREQUEST_0_SHIPTOSTREET2=bjisbbldk&PAYMENTREQUEST_0_SHIPTOCITY=sjjddndn&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=LU&PAYMENTREQUEST_0_SHIPTOZIP=3333&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8H634870AC232741E&TIMESTAMP=2016%2d07%2d11T10%3a55%3a32Z&CORRELATIONID=8a744d1de7fc2&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=2.93&PAYMENTREQUEST_0_ITEMAMT=5.8&PAYMENTREQUEST_0_AMT=8.73&ADDROVERRIDE=1&EMAIL=tamier%40ggg.com&PAYMENTREQUEST_0_SHIPTONAME=sssjsjsjsj+sjsjsjjsss&PAYMENTREQUEST_0_SHIPTOPHONENUM=3334747747447&PAYMENTREQUEST_0_SHIPTOSTREET=sshjdlhdlhbd&PAYMENTREQUEST_0_SHIPTOSTREET2=bjisbbldk&PAYMENTREQUEST_0_SHIPTOCITY=sjjddndn&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=LU&PAYMENTREQUEST_0_SHIPTOZIP=3333&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=13&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+nettoyant+pour+sols%2C+dalles%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+2L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=25.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.2&PAYMENTREQUEST_0_AMT=31.20&ADDROVERRIDE=1&EMAIL=Mel47320%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Melanie+Nouzeilles+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0614957856&PAYMENTREQUEST_0_SHIPTOSTREET=Au+sage&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Lafitte+sur+lot&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=47320&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7WW355075G644001W&TIMESTAMP=2016%2d07%2d11T11%3a08%3a03Z&CORRELATIONID=984d157dd1a42&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=13&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+nettoyant+pour+sols%2C+dalles%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+2L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=25.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.2&PAYMENTREQUEST_0_AMT=31.20&ADDROVERRIDE=1&EMAIL=Mel47320%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Melanie+Nouzeilles+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0614957856&PAYMENTREQUEST_0_SHIPTOSTREET=Au+sage&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Lafitte+sur+lot&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=47320&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WW355075G644001W -Result : TOKEN=EC%2d7WW355075G644001W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T11%3a08%3a32Z&CORRELATIONID=850983b8cd301&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=Mel47320%40gmail%2ecom&PAYERID=QXQEAMPYWR28C&PAYERSTATUS=verified&FIRSTNAME=M%c3%a9lanie&LASTNAME=Nouzeilles&COUNTRYCODE=FR&SHIPTONAME=Melanie%20Nouzeilles&SHIPTOSTREET=Au%20sage&SHIPTOCITY=Lafitte%20sur%20lot&SHIPTOZIP=47320&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0614957856&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=31%2e20&ITEMAMT=25%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20nettoyant%20pour%20sols%2c%20dalles%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%202L&L_NUMBER0=13&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=25%2e20&L_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=31%2e20&PAYMENTREQUEST_0_ITEMAMT=25%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Melanie%20Nouzeilles&PAYMENTREQUEST_0_SHIPTOSTREET=Au%20sage&PAYMENTREQUEST_0_SHIPTOCITY=Lafitte%20sur%20lot&PAYMENTREQUEST_0_SHIPTOZIP=47320&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0614957856&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20nettoyant%20pour%20sols%2c%20dalles%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%202L&L_PAYMENTREQUEST_0_NUMBER0=13&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=25%2e20&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WW355075G644001W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WW355075G644001W&PAYERID=QXQEAMPYWR28C&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=13&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+nettoyant+pour+sols%2C+dalles%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+2L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=25.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.2&PAYMENTREQUEST_0_AMT=31.20&ADDROVERRIDE=1&EMAIL=Mel47320%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Melanie+Nouzeilles+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0614957856&PAYMENTREQUEST_0_SHIPTOSTREET=Au+sage&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Lafitte+sur+lot&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=47320 -Result : TOKEN=EC%2d7WW355075G644001W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T11%3a08%3a35Z&CORRELATIONID=6075d4a643bf0&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6MJ532454S856783E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T11%3a08%3a33Z&PAYMENTINFO_0_AMT=31%2e20&PAYMENTINFO_0_FEEAMT=1%2e31&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WW355075G644001W&PAYERID=QXQEAMPYWR28C&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=13&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+nettoyant+pour+sols%2C+dalles%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+2L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=25.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.2&PAYMENTREQUEST_0_AMT=31.20&ADDROVERRIDE=1&EMAIL=Mel47320%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Melanie+Nouzeilles+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0614957856&PAYMENTREQUEST_0_SHIPTOSTREET=Au+sage&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Lafitte+sur+lot&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=47320 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=6&L_PAYMENTREQUEST_0_NAME0=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC0=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT0=19.08&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.32&PAYMENTREQUEST_0_AMT=66.32&ADDROVERRIDE=1&EMAIL=chaucrin%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=SIMON+LEPREVOST&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651171405&PAYMENTREQUEST_0_SHIPTOSTREET=202+Rue+du+G%C3%A9n%C3%A9ral+Renault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=TOURS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=37000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d56S71950PU643691K&TIMESTAMP=2016%2d07%2d11T15%3a50%3a42Z&CORRELATIONID=ba0e8fb8244c6&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=6&L_PAYMENTREQUEST_0_NAME0=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC0=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT0=19.08&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.32&PAYMENTREQUEST_0_AMT=66.32&ADDROVERRIDE=1&EMAIL=chaucrin%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=SIMON+LEPREVOST&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651171405&PAYMENTREQUEST_0_SHIPTOSTREET=202+Rue+du+G%C3%A9n%C3%A9ral+Renault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=TOURS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=37000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-56S71950PU643691K -Result : TOKEN=EC%2d56S71950PU643691K&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T15%3a52%3a52Z&CORRELATIONID=87a048cce1888&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=chaucrin%40sfr%2efr&PAYERID=7BWY6QUXE6YBS&PAYERSTATUS=verified&FIRSTNAME=yves&LASTNAME=Leprevost&COUNTRYCODE=FR&SHIPTONAME=SIMON%20LEPREVOST&SHIPTOSTREET=202%20Rue%20du%20G%c3%a9n%c3%a9ral%20Renault&SHIPTOCITY=TOURS&SHIPTOZIP=37000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0651171405&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=66%2e32&ITEMAMT=66%2e32&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=6&L_NUMBER1=644&L_QTY0=4&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=19%2e08&L_AMT1=%2d10%2e00&L_DESC0=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=66%2e32&PAYMENTREQUEST_0_ITEMAMT=66%2e32&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=SIMON%20LEPREVOST&PAYMENTREQUEST_0_SHIPTOSTREET=202%20Rue%20du%20G%c3%a9n%c3%a9ral%20Renault&PAYMENTREQUEST_0_SHIPTOCITY=TOURS&PAYMENTREQUEST_0_SHIPTOZIP=37000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651171405&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=6&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e08&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-56S71950PU643691K - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-56S71950PU643691K&PAYERID=7BWY6QUXE6YBS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=6&L_PAYMENTREQUEST_0_NAME0=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC0=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT0=19.08&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.32&PAYMENTREQUEST_0_AMT=66.32&ADDROVERRIDE=1&EMAIL=chaucrin%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=SIMON+LEPREVOST&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651171405&PAYMENTREQUEST_0_SHIPTOSTREET=202+Rue+du+G%C3%A9n%C3%A9ral+Renault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=TOURS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=37000 -Result : TOKEN=EC%2d56S71950PU643691K&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T15%3a52%3a55Z&CORRELATIONID=a6e5cc8eb39d&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7CJ58306XL588293J&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T15%3a52%3a54Z&PAYMENTINFO_0_AMT=66%2e32&PAYMENTINFO_0_FEEAMT=2%2e50&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-56S71950PU643691K&PAYERID=7BWY6QUXE6YBS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=6&L_PAYMENTREQUEST_0_NAME0=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC0=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT0=19.08&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.32&PAYMENTREQUEST_0_AMT=66.32&ADDROVERRIDE=1&EMAIL=chaucrin%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=SIMON+LEPREVOST&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651171405&PAYMENTREQUEST_0_SHIPTOSTREET=202+Rue+du+G%C3%A9n%C3%A9ral+Renault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=TOURS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=37000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=249&L_PAYMENTREQUEST_0_NAME2=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC2=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT2=12.82&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.67&PAYMENTREQUEST_0_AMT=36.67&ADDROVERRIDE=1&EMAIL=latelulle%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=c+GUICHARD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0142541244&PAYMENTREQUEST_0_SHIPTOSTREET=38+rue+lepic%2C+bat+rue%2C+1er+%C3%A9tage+droite&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PARIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d82M021166G624564D&TIMESTAMP=2016%2d07%2d11T20%3a36%3a30Z&CORRELATIONID=21675a50eee44&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=249&L_PAYMENTREQUEST_0_NAME2=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC2=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT2=12.82&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.67&PAYMENTREQUEST_0_AMT=36.67&ADDROVERRIDE=1&EMAIL=latelulle%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=c+GUICHARD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0142541244&PAYMENTREQUEST_0_SHIPTOSTREET=38+rue+lepic%2C+bat+rue%2C+1er+%C3%A9tage+droite&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PARIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82M021166G624564D -Result : TOKEN=EC%2d82M021166G624564D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T20%3a37%3a12Z&CORRELATIONID=65cf8f39cf2de&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=latelulle%40free%2efr&PAYERID=FWAXKEH8V8SH2&PAYERSTATUS=verified&FIRSTNAME=christine&LASTNAME=GUICHARD&COUNTRYCODE=FR&SHIPTONAME=c%20GUICHARD&SHIPTOSTREET=38%20rue%20lepic%2c%20bat%20rue%2c%201er%20%c3%a9tage%20droite&SHIPTOCITY=PARIS&SHIPTOZIP=75018&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0142541244&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=36%2e67&ITEMAMT=30%2e67&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_NAME3=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_NUMBER1=152&L_NUMBER2=249&L_NUMBER3=155&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_AMT2=12%2e82&L_AMT3=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_DESC2=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_DESC3=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=36%2e67&PAYMENTREQUEST_0_ITEMAMT=30%2e67&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=c%20GUICHARD&PAYMENTREQUEST_0_SHIPTOSTREET=38%20rue%20lepic%2c%20bat%20rue%2c%201er%20%c3%a9tage%20droite&PAYMENTREQUEST_0_SHIPTOCITY=PARIS&PAYMENTREQUEST_0_SHIPTOZIP=75018&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0142541244&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_PAYMENTREQUEST_0_NAME3=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NUMBER2=249&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=12%2e82&L_PAYMENTREQUEST_0_AMT3=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82M021166G624564D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82M021166G624564D&PAYERID=FWAXKEH8V8SH2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=249&L_PAYMENTREQUEST_0_NAME2=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC2=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT2=12.82&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.67&PAYMENTREQUEST_0_AMT=36.67&ADDROVERRIDE=1&EMAIL=latelulle%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=c+GUICHARD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0142541244&PAYMENTREQUEST_0_SHIPTOSTREET=38+rue+lepic%2C+bat+rue%2C+1er+%C3%A9tage+droite&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PARIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018 -Result : TOKEN=EC%2d82M021166G624564D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T20%3a37%3a15Z&CORRELATIONID=8d951474fce3&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9L360899V65042130&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T20%3a37%3a14Z&PAYMENTINFO_0_AMT=36%2e67&PAYMENTINFO_0_FEEAMT=1%2e50&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82M021166G624564D&PAYERID=FWAXKEH8V8SH2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=249&L_PAYMENTREQUEST_0_NAME2=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC2=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT2=12.82&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.67&PAYMENTREQUEST_0_AMT=36.67&ADDROVERRIDE=1&EMAIL=latelulle%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=c+GUICHARD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0142541244&PAYMENTREQUEST_0_SHIPTOSTREET=38+rue+lepic%2C+bat+rue%2C+1er+%C3%A9tage+droite&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=PARIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=44.9&PAYMENTREQUEST_0_AMT=50.90&ADDROVERRIDE=1&EMAIL=bbkey-annelise%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Anne-lise+Donnadieu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680914743&PAYMENTREQUEST_0_SHIPTOSTREET=3+all%C3%A9e+Henri+sellier+bat.I&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Puteaux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d87N3312747727205E&TIMESTAMP=2016%2d07%2d11T23%3a46%3a16Z&CORRELATIONID=2dc50cca42632&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=44.9&PAYMENTREQUEST_0_AMT=50.90&ADDROVERRIDE=1&EMAIL=bbkey-annelise%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Anne-lise+Donnadieu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680914743&PAYMENTREQUEST_0_SHIPTOSTREET=3+all%C3%A9e+Henri+sellier+bat.I&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Puteaux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-87N3312747727205E -Result : TOKEN=EC%2d87N3312747727205E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d11T23%3a46%3a43Z&CORRELATIONID=5fe4315bd58a5&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=bbkey%2dannelise%40hotmail%2efr&PAYERID=S6WVESRWYALSC&PAYERSTATUS=verified&FIRSTNAME=anne%2dlise&LASTNAME=donnadieu&COUNTRYCODE=FR&SHIPTONAME=Anne%2dlise%20Donnadieu&SHIPTOSTREET=3%20all%c3%a9e%20Henri%20sellier%20bat%2ei&SHIPTOCITY=Puteaux&SHIPTOZIP=92800&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0680914743&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=50%2e90&ITEMAMT=44%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=46&L_NUMBER1=644&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=54%2e90&L_AMT1=%2d10%2e00&L_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=50%2e90&PAYMENTREQUEST_0_ITEMAMT=44%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Anne%2dlise%20Donnadieu&PAYMENTREQUEST_0_SHIPTOSTREET=3%20all%c3%a9e%20Henri%20sellier%20bat%2ei&PAYMENTREQUEST_0_SHIPTOCITY=Puteaux&PAYMENTREQUEST_0_SHIPTOZIP=92800&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680914743&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-87N3312747727205E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-87N3312747727205E&PAYERID=S6WVESRWYALSC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=44.9&PAYMENTREQUEST_0_AMT=50.90&ADDROVERRIDE=1&EMAIL=bbkey-annelise%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Anne-lise+Donnadieu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680914743&PAYMENTREQUEST_0_SHIPTOSTREET=3+all%C3%A9e+Henri+sellier+bat.I&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Puteaux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92800 -Result : TOKEN=EC%2d87N3312747727205E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d11T23%3a46%3a45Z&CORRELATIONID=5d30907e2e89&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=22T951233P911663Y&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d11T23%3a46%3a44Z&PAYMENTINFO_0_AMT=50%2e90&PAYMENTINFO_0_FEEAMT=1%2e98&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-87N3312747727205E&PAYERID=S6WVESRWYALSC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=44.9&PAYMENTREQUEST_0_AMT=50.90&ADDROVERRIDE=1&EMAIL=bbkey-annelise%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Anne-lise+Donnadieu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680914743&PAYMENTREQUEST_0_SHIPTOSTREET=3+all%C3%A9e+Henri+sellier+bat.I&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Puteaux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92800 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=155&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.19&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=247&L_PAYMENTREQUEST_0_NAME4=R%C3%A9pulsif+Chats+%C2%AB%C2%A0int%C3%A9rieur%2Fext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC4=Produit+permettant+de+prot%C3%A9ger+l%27int%C3%A9rieur+et+l%27ex...&L_PAYMENTREQUEST_0_AMT4=19.9&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56.95&PAYMENTREQUEST_0_AMT=56.95&ADDROVERRIDE=1&EMAIL=patgaurat%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Patrizia+Gaurat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0618485074&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+l%27orme+bris%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=Pringy&PAYMENTREQUEST_0_SHIPTOCITY=St+FARGEAU+PTHIERRY+cedex+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77986&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8H544102UL4887428&TIMESTAMP=2016%2d07%2d12T04%3a45%3a55Z&CORRELATIONID=2f470c759cc94&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=155&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.19&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=247&L_PAYMENTREQUEST_0_NAME4=R%C3%A9pulsif+Chats+%C2%AB%C2%A0int%C3%A9rieur%2Fext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC4=Produit+permettant+de+prot%C3%A9ger+l%27int%C3%A9rieur+et+l%27ex...&L_PAYMENTREQUEST_0_AMT4=19.9&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56.95&PAYMENTREQUEST_0_AMT=56.95&ADDROVERRIDE=1&EMAIL=patgaurat%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Patrizia+Gaurat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0618485074&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+l%27orme+bris%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=Pringy&PAYMENTREQUEST_0_SHIPTOCITY=St+FARGEAU+PTHIERRY+cedex+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77986&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8H544102UL4887428 -Result : TOKEN=EC%2d8H544102UL4887428&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d12T04%3a46%3a41Z&CORRELATIONID=e83fdf8c99c1a&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=patgaurat%40gmail%2ecom&PAYERID=SWQAKQY7Y82KN&PAYERSTATUS=verified&FIRSTNAME=Patrizia&LASTNAME=Gaurat&COUNTRYCODE=FR&SHIPTONAME=Patrizia%20Gaurat&SHIPTOSTREET=11%20rue%20de%20l%27Orme%20Bris%c3%a9&SHIPTOSTREET2=PRINGY&SHIPTOCITY=St%20FARGEAU%20PTHIERRY%20cedex&SHIPTOZIP=77986&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0618485074&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=56%2e95&ITEMAMT=56%2e95&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_NAME2=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME3=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME4=R%c3%a9pulsif%20Chats%20%c2%ab%c2%a0int%c3%a9rieur%2fext%c3%a9rieur%c2%a0%c2%bb&L_NUMBER0=160&L_NUMBER1=249&L_NUMBER2=155&L_NUMBER3=165&L_NUMBER4=247&L_QTY0=2&L_QTY1=1&L_QTY2=1&L_QTY3=2&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=5%2e95&L_AMT1=12%2e82&L_AMT2=5%2e95&L_AMT3=3%2e19&L_AMT4=19%2e90&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_DESC2=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_DESC3=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC4=Produit%20permettant%20de%20prot%c3%a9ger%20l%27int%c3%a9rieur%20et%20l%27ex%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=56%2e95&PAYMENTREQUEST_0_ITEMAMT=56%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Patrizia%20Gaurat&PAYMENTREQUEST_0_SHIPTOSTREET=11%20rue%20de%20l%27Orme%20Bris%c3%a9&PAYMENTREQUEST_0_SHIPTOSTREET2=PRINGY&PAYMENTREQUEST_0_SHIPTOCITY=St%20FARGEAU%20PTHIERRY%20cedex&PAYMENTREQUEST_0_SHIPTOZIP=77986&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0618485074&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_PAYMENTREQUEST_0_NAME2=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME3=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME4=R%c3%a9pulsif%20Chats%20%c2%ab%c2%a0int%c3%a9rieur%2fext%c3%a9rieur%c2%a0%c2%bb&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NUMBER2=155&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NUMBER4=247&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=12%2e82&L_PAYMENTREQUEST_0_AMT2=5%2e95&L_PAYMENTREQUEST_0_AMT3=3%2e19&L_PAYMENTREQUEST_0_AMT4=19%2e90&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Produit%20permettant%20de%20prot%c3%a9ger%20l%27int%c3%a9rieur%20et%20l%27ex%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8H544102UL4887428 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8H544102UL4887428&PAYERID=SWQAKQY7Y82KN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=155&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.19&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=247&L_PAYMENTREQUEST_0_NAME4=R%C3%A9pulsif+Chats+%C2%AB%C2%A0int%C3%A9rieur%2Fext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC4=Produit+permettant+de+prot%C3%A9ger+l%27int%C3%A9rieur+et+l%27ex...&L_PAYMENTREQUEST_0_AMT4=19.9&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56.95&PAYMENTREQUEST_0_AMT=56.95&ADDROVERRIDE=1&EMAIL=patgaurat%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Patrizia+Gaurat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0618485074&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+l%27orme+bris%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=Pringy&PAYMENTREQUEST_0_SHIPTOCITY=St+FARGEAU+PTHIERRY+cedex+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77986 -Result : TOKEN=EC%2d8H544102UL4887428&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d12T04%3a46%3a44Z&CORRELATIONID=452de206b1670&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2AR69737FR611871L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d12T04%3a46%3a43Z&PAYMENTINFO_0_AMT=56%2e95&PAYMENTINFO_0_FEEAMT=2%2e19&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8H544102UL4887428&PAYERID=SWQAKQY7Y82KN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=249&L_PAYMENTREQUEST_0_NAME1=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC1=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT1=12.82&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=155&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.19&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=247&L_PAYMENTREQUEST_0_NAME4=R%C3%A9pulsif+Chats+%C2%AB%C2%A0int%C3%A9rieur%2Fext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC4=Produit+permettant+de+prot%C3%A9ger+l%27int%C3%A9rieur+et+l%27ex...&L_PAYMENTREQUEST_0_AMT4=19.9&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56.95&PAYMENTREQUEST_0_AMT=56.95&ADDROVERRIDE=1&EMAIL=patgaurat%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Patrizia+Gaurat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0618485074&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+l%27orme+bris%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=Pringy&PAYMENTREQUEST_0_SHIPTOCITY=St+FARGEAU+PTHIERRY+cedex+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77986 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=85&L_PAYMENTREQUEST_0_NAME1=Huile+pure%2C+Pr%C3%A9cieux+Argan&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic+a+s%C3%A9lectionn%C3%A9+une+huile+d%27argan+biolog...&L_PAYMENTREQUEST_0_AMT1=12.95&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25.7&PAYMENTREQUEST_0_AMT=28.70&ADDROVERRIDE=1&EMAIL=beatrice.legac%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Beatrice+LEGAC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0236450208&PAYMENTREQUEST_0_SHIPTOSTREET=14+All%C3%A9e+de+la+Pl%C3%A9iade+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Couture-sur-Loir&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=41800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1BT27508NA4981440&TIMESTAMP=2016%2d07%2d12T13%3a11%3a49Z&CORRELATIONID=75eebffb48779&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=85&L_PAYMENTREQUEST_0_NAME1=Huile+pure%2C+Pr%C3%A9cieux+Argan&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic+a+s%C3%A9lectionn%C3%A9+une+huile+d%27argan+biolog...&L_PAYMENTREQUEST_0_AMT1=12.95&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25.7&PAYMENTREQUEST_0_AMT=28.70&ADDROVERRIDE=1&EMAIL=beatrice.legac%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Beatrice+LEGAC&PAYMENTREQUEST_0_SHIPTOPHONENUM=0236450208&PAYMENTREQUEST_0_SHIPTOSTREET=14+All%C3%A9e+de+la+Pl%C3%A9iade+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Couture-sur-Loir&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=41800&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=207&L_PAYMENTREQUEST_0_NAME1=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC1=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT1=15.1&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.1&PAYMENTREQUEST_0_AMT=50.10&ADDROVERRIDE=1&EMAIL=jerome.guilbert%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=J%C3%A9r%C3%B4me++guilbert+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0666978914&PAYMENTREQUEST_0_SHIPTOSTREET=les+messalieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+Jean+de+la+porte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=73250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d34Y56568MJ152251H&TIMESTAMP=2016%2d07%2d12T16%3a23%3a57Z&CORRELATIONID=8f4950dad86be&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=207&L_PAYMENTREQUEST_0_NAME1=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC1=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT1=15.1&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.1&PAYMENTREQUEST_0_AMT=50.10&ADDROVERRIDE=1&EMAIL=jerome.guilbert%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=J%C3%A9r%C3%B4me++guilbert+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0666978914&PAYMENTREQUEST_0_SHIPTOSTREET=les+messalieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+Jean+de+la+porte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=73250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34Y56568MJ152251H -Result : TOKEN=EC%2d34Y56568MJ152251H&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d12T16%3a25%3a36Z&CORRELATIONID=7b1c9c96744f9&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=jerome%2eguilbert%40club%2dinternet%2efr&PAYERID=F47DULE38P38L&PAYERSTATUS=verified&FIRSTNAME=jerome&LASTNAME=guilbert&COUNTRYCODE=FR&SHIPTONAME=J%c3%a9r%c3%b4me%20%20guilbert&SHIPTOSTREET=les%20messalieres&SHIPTOCITY=st%20Jean%20de%20la%20porte&SHIPTOZIP=73250&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0666978914&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Unconfirmed&CURRENCYCODE=EUR&AMT=50%2e10&ITEMAMT=50%2e10&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&L_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_NAME1=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=208&L_NUMBER1=207&L_QTY0=2&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=17%2e50&L_AMT1=15%2e10&L_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&L_DESC1=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_ITEMHEIGHTVALUE1=%20%20%200%2e00000&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=50%2e10&PAYMENTREQUEST_0_ITEMAMT=50%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=J%c3%a9r%c3%b4me%20%20guilbert&PAYMENTREQUEST_0_SHIPTOSTREET=les%20messalieres&PAYMENTREQUEST_0_SHIPTOCITY=st%20Jean%20de%20la%20porte&PAYMENTREQUEST_0_SHIPTOZIP=73250&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0666978914&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Unconfirmed&PAYMENTREQUEST_0_ADDRESSNORMALIZATIONSTATUS=None&L_PAYMENTREQUEST_0_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_PAYMENTREQUEST_0_NAME1=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NUMBER1=207&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e50&L_PAYMENTREQUEST_0_AMT1=15%2e10&L_PAYMENTREQUEST_0_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE1=%20%20%200%2e00000&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34Y56568MJ152251H - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34Y56568MJ152251H&PAYERID=F47DULE38P38L&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=207&L_PAYMENTREQUEST_0_NAME1=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC1=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT1=15.1&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.1&PAYMENTREQUEST_0_AMT=50.10&ADDROVERRIDE=1&EMAIL=jerome.guilbert%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=J%C3%A9r%C3%B4me++guilbert+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0666978914&PAYMENTREQUEST_0_SHIPTOSTREET=les+messalieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+Jean+de+la+porte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=73250 -Result : TOKEN=EC%2d34Y56568MJ152251H&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d12T16%3a25%3a41Z&CORRELATIONID=dad1d9838d885&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8K376058UK007504L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d12T16%3a25%3a39Z&PAYMENTINFO_0_AMT=50%2e10&PAYMENTINFO_0_FEEAMT=1%2e95&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34Y56568MJ152251H&PAYERID=F47DULE38P38L&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=207&L_PAYMENTREQUEST_0_NAME1=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC1=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT1=15.1&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.1&PAYMENTREQUEST_0_AMT=50.10&ADDROVERRIDE=1&EMAIL=jerome.guilbert%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=J%C3%A9r%C3%B4me++guilbert+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0666978914&PAYMENTREQUEST_0_SHIPTOSTREET=les+messalieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+Jean+de+la+porte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=73250 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=306&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC0=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT0=7.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.5&PAYMENTREQUEST_0_AMT=10.50&ADDROVERRIDE=1&EMAIL=genevieve.leclere%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=genevieve+leclere&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685770385&PAYMENTREQUEST_0_SHIPTOSTREET=124+square+elsa+triolet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sin-le-noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9CE25074HR2048156&TIMESTAMP=2016%2d07%2d12T17%3a00%3a42Z&CORRELATIONID=c50a7057518a&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=306&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC0=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT0=7.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.5&PAYMENTREQUEST_0_AMT=10.50&ADDROVERRIDE=1&EMAIL=genevieve.leclere%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=genevieve+leclere&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685770385&PAYMENTREQUEST_0_SHIPTOSTREET=124+square+elsa+triolet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sin-le-noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE25074HR2048156 -Result : TOKEN=EC%2d9CE25074HR2048156&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d12T17%3a01%3a11Z&CORRELATIONID=6b514a2a3502d&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=genevieve%2eleclere%40sfr%2efr&PAYERID=BUX9UT9LKA3GG&PAYERSTATUS=verified&FIRSTNAME=genevi%c3%a8ve&LASTNAME=leclere&COUNTRYCODE=FR&SHIPTONAME=%20GENEVIEVE%20LECLERE&SHIPTOSTREET=124%20square%20elsa%20triolet&SHIPTOCITY=sin%20le%20noble&SHIPTOSTATE=FR&SHIPTOZIP=59450&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0685770385&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=10%2e50&ITEMAMT=7%2e50&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cr%c3%a8me%20mains%20anti%2dt%c3%a2ches%20%2d%20anti%20%c3%a2ge%20CATTIER%2075ml&L_NUMBER0=306&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=7%2e50&L_DESC0=Cr%c3%a8me%20mains%20att%c3%a9nuant%20les%20t%c3%a2ches%20et%20les%20signes%20de%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=10%2e50&PAYMENTREQUEST_0_ITEMAMT=7%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20GENEVIEVE%20LECLERE&PAYMENTREQUEST_0_SHIPTOSTREET=124%20square%20elsa%20triolet&PAYMENTREQUEST_0_SHIPTOCITY=sin%20le%20noble&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685770385&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cr%c3%a8me%20mains%20anti%2dt%c3%a2ches%20%2d%20anti%20%c3%a2ge%20CATTIER%2075ml&L_PAYMENTREQUEST_0_NUMBER0=306&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e50&L_PAYMENTREQUEST_0_DESC0=Cr%c3%a8me%20mains%20att%c3%a9nuant%20les%20t%c3%a2ches%20et%20les%20signes%20de%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE25074HR2048156 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE25074HR2048156&PAYERID=BUX9UT9LKA3GG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=306&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC0=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT0=7.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.5&PAYMENTREQUEST_0_AMT=10.50&ADDROVERRIDE=1&EMAIL=genevieve.leclere%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=genevieve+leclere&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685770385&PAYMENTREQUEST_0_SHIPTOSTREET=124+square+elsa+triolet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sin-le-noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450 -Result : TOKEN=EC%2d9CE25074HR2048156&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d12T17%3a01%3a14Z&CORRELATIONID=8350cb093f678&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=10693673W7568360J&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d12T17%3a01%3a12Z&PAYMENTINFO_0_AMT=10%2e50&PAYMENTINFO_0_FEEAMT=0%2e61&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE25074HR2048156&PAYERID=BUX9UT9LKA3GG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=306&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC0=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT0=7.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.5&PAYMENTREQUEST_0_AMT=10.50&ADDROVERRIDE=1&EMAIL=genevieve.leclere%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=genevieve+leclere&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685770385&PAYMENTREQUEST_0_SHIPTOSTREET=124+square+elsa+triolet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sin-le-noble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59450 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.8&PAYMENTREQUEST_0_AMT=12.80&ADDROVERRIDE=1&EMAIL=sublimina2010%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=simone+dot%C3%A9ro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633440628&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+stade&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+andr%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=66690&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0KM345144H2855543&TIMESTAMP=2016%2d07%2d13T06%3a24%3a16Z&CORRELATIONID=69d18850b907e&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.8&PAYMENTREQUEST_0_AMT=12.80&ADDROVERRIDE=1&EMAIL=sublimina2010%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=simone+dot%C3%A9ro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633440628&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+stade&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+andr%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=66690&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0KM345144H2855543 -Result : TOKEN=EC%2d0KM345144H2855543&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d13T06%3a25%3a33Z&CORRELATIONID=2d66ee9d7f886&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=simone%2edotero%40laposte%2enet&PAYERID=XXCVSPTU2JK4G&PAYERSTATUS=verified&FIRSTNAME=jean%20claude&LASTNAME=dotero&COUNTRYCODE=FR&SHIPTONAME=%20simone%20dot%c3%a9ro&SHIPTOSTREET=3%20rue%20du%20stade&SHIPTOCITY=saint%20andr%c3%a9&SHIPTOSTATE=FR&SHIPTOZIP=66690&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0633440628&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=12%2e80&ITEMAMT=9%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Contour%20yeux%20tenseur%20imm%c3%a9diat%20Bourrache%2c%20Lift%20Anti%2d%c3%a2ge&L_NUMBER0=110&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=9%2e80&L_DESC0=D%c3%a8s%20l%27application%20de%20ce%20soin%2c%20enrichi%20en%20huile%20de%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=12%2e80&PAYMENTREQUEST_0_ITEMAMT=9%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20simone%20dot%c3%a9ro&PAYMENTREQUEST_0_SHIPTOSTREET=3%20rue%20du%20stade&PAYMENTREQUEST_0_SHIPTOCITY=saint%20andr%c3%a9&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=66690&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633440628&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Contour%20yeux%20tenseur%20imm%c3%a9diat%20Bourrache%2c%20Lift%20Anti%2d%c3%a2ge&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=9%2e80&L_PAYMENTREQUEST_0_DESC0=D%c3%a8s%20l%27application%20de%20ce%20soin%2c%20enrichi%20en%20huile%20de%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0KM345144H2855543 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0KM345144H2855543&PAYERID=XXCVSPTU2JK4G&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.8&PAYMENTREQUEST_0_AMT=12.80&ADDROVERRIDE=1&EMAIL=sublimina2010%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=simone+dot%C3%A9ro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633440628&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+stade&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+andr%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=66690 -Result : TOKEN=EC%2d0KM345144H2855543&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d13T06%3a25%3a36Z&CORRELATIONID=2dce2d80b8bb0&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=45P1188652718693E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d13T06%3a25%3a35Z&PAYMENTINFO_0_AMT=12%2e80&PAYMENTINFO_0_FEEAMT=0%2e69&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0KM345144H2855543&PAYERID=XXCVSPTU2JK4G&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=110&L_PAYMENTREQUEST_0_NAME0=Contour+yeux+tenseur+imm%C3%A9diat+Bourrache%2C+Lift+Anti-%C3%A2ge&L_PAYMENTREQUEST_0_DESC0=D%C3%A8s+l%27application+de+ce+soin%2C+enrichi+en+huile+de+...&L_PAYMENTREQUEST_0_AMT0=9.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.8&PAYMENTREQUEST_0_AMT=12.80&ADDROVERRIDE=1&EMAIL=sublimina2010%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=simone+dot%C3%A9ro&PAYMENTREQUEST_0_SHIPTOPHONENUM=0633440628&PAYMENTREQUEST_0_SHIPTOSTREET=3+rue+du+stade&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+andr%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=66690 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=248&L_PAYMENTREQUEST_0_NAME1=R%C3%A9pulsif+Souris%2C+Mulots+%26+Petits+Rongeurs+%28bouchon+doseur%29&L_PAYMENTREQUEST_0_DESC1=Permet+de+prot%C3%A9ger+la+maison+%28garage%2C+grenier%E2%80%A6%29+de...&L_PAYMENTREQUEST_0_AMT1=23.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=2171&L_PAYMENTREQUEST_0_NAME2=SPM-PJLU&L_PAYMENTREQUEST_0_DESC2=SPM-PJLU...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d82U924731U7290143&TIMESTAMP=2016%2d07%2d13T08%3a30%3a45Z&CORRELATIONID=d7b2b972325be&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=248&L_PAYMENTREQUEST_0_NAME1=R%C3%A9pulsif+Souris%2C+Mulots+%26+Petits+Rongeurs+%28bouchon+doseur%29&L_PAYMENTREQUEST_0_DESC1=Permet+de+prot%C3%A9ger+la+maison+%28garage%2C+grenier%E2%80%A6%29+de...&L_PAYMENTREQUEST_0_AMT1=23.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=2171&L_PAYMENTREQUEST_0_NAME2=SPM-PJLU&L_PAYMENTREQUEST_0_DESC2=SPM-PJLU...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82U924731U7290143 -Result : TOKEN=EC%2d82U924731U7290143&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d13T08%3a31%3a20Z&CORRELATIONID=105f5e72c1b83&ACK=Success&VERSION=106&BUILD=23255924&EMAIL=richard%2etalbot%40wanadoo%2efr&PAYERID=E6TDNZQEG89KC&PAYERSTATUS=verified&FIRSTNAME=Richard&LASTNAME=TALBOT&COUNTRYCODE=FR&SHIPTONAME=Florence%20Angelique%2dTalbot&SHIPTOSTREET=17%20La%20Reterie&SHIPTOCITY=Saint%20Hilaire%20du%20Harcouet&SHIPTOSTATE=50&SHIPTOZIP=50600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0233493732&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=66%2e60&ITEMAMT=66%2e60&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_NAME1=R%c3%a9pulsif%20Souris%2c%20Mulots%20%26%20Petits%20Rongeurs%20%28bouchon%20doseur%29&L_NAME2=SPM%2dPJLU&L_NUMBER0=14&L_NUMBER1=248&L_NUMBER2=2171&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=53%2e10&L_AMT1=23%2e50&L_AMT2=%2d10%2e00&L_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&L_DESC1=Permet%20de%20prot%c3%a9ger%20la%20maison%20%28garage%2c%20grenier%e2%80%a6%29%20de%2e%2e%2e&L_DESC2=SPM%2dPJLU%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=66%2e60&PAYMENTREQUEST_0_ITEMAMT=66%2e60&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Florence%20Angelique%2dTalbot&PAYMENTREQUEST_0_SHIPTOSTREET=17%20La%20Reterie&PAYMENTREQUEST_0_SHIPTOCITY=Saint%20Hilaire%20du%20Harcouet&PAYMENTREQUEST_0_SHIPTOSTATE=50&PAYMENTREQUEST_0_SHIPTOZIP=50600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_PAYMENTREQUEST_0_NAME1=R%c3%a9pulsif%20Souris%2c%20Mulots%20%26%20Petits%20Rongeurs%20%28bouchon%20doseur%29&L_PAYMENTREQUEST_0_NAME2=SPM%2dPJLU&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NUMBER1=248&L_PAYMENTREQUEST_0_NUMBER2=2171&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=53%2e10&L_PAYMENTREQUEST_0_AMT1=23%2e50&L_PAYMENTREQUEST_0_AMT2=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Permet%20de%20prot%c3%a9ger%20la%20maison%20%28garage%2c%20grenier%e2%80%a6%29%20de%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=SPM%2dPJLU%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82U924731U7290143 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82U924731U7290143&PAYERID=E6TDNZQEG89KC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=248&L_PAYMENTREQUEST_0_NAME1=R%C3%A9pulsif+Souris%2C+Mulots+%26+Petits+Rongeurs+%28bouchon+doseur%29&L_PAYMENTREQUEST_0_DESC1=Permet+de+prot%C3%A9ger+la+maison+%28garage%2C+grenier%E2%80%A6%29+de...&L_PAYMENTREQUEST_0_AMT1=23.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=2171&L_PAYMENTREQUEST_0_NAME2=SPM-PJLU&L_PAYMENTREQUEST_0_DESC2=SPM-PJLU...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600 -Result : TOKEN=EC%2d82U924731U7290143&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d13T08%3a31%3a22Z&CORRELATIONID=f7f7982514ad1&ACK=Success&VERSION=106&BUILD=23255924&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9K131343TM606451R&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d13T08%3a31%3a21Z&PAYMENTINFO_0_AMT=66%2e60&PAYMENTINFO_0_FEEAMT=2%2e51&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-82U924731U7290143&PAYERID=E6TDNZQEG89KC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=248&L_PAYMENTREQUEST_0_NAME1=R%C3%A9pulsif+Souris%2C+Mulots+%26+Petits+Rongeurs+%28bouchon+doseur%29&L_PAYMENTREQUEST_0_DESC1=Permet+de+prot%C3%A9ger+la+maison+%28garage%2C+grenier%E2%80%A6%29+de...&L_PAYMENTREQUEST_0_AMT1=23.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=2171&L_PAYMENTREQUEST_0_NAME2=SPM-PJLU&L_PAYMENTREQUEST_0_DESC2=SPM-PJLU...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=f.angelique.talbot%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=florence+angelique-talbot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0233493732&PAYMENTREQUEST_0_SHIPTOSTREET=17+la+reterie&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+hilaire+du+harcouet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=6&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=12&PAYMENTREQUEST_0_AMT=15.03&ADDROVERRIDE=1&EMAIL=Kouala25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rabia+el+Gharbi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484901490&PAYMENTREQUEST_0_SHIPTOSTREET=Avenue+des+Biches%2C3&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5RG24848WB586353F&TIMESTAMP=2016%2d07%2d13T10%3a47%3a04Z&CORRELATIONID=de62eb665536e&ACK=Success&VERSION=106&BUILD=23255924 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=6&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=12&PAYMENTREQUEST_0_AMT=15.03&ADDROVERRIDE=1&EMAIL=Kouala25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rabia+el+Gharbi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0484901490&PAYMENTREQUEST_0_SHIPTOSTREET=Avenue+des+Biches%2C3&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=alain.neu%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+neu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622580880&PAYMENTREQUEST_0_SHIPTOSTREET=49+rte+monument+Magnard&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Auxy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d20B33047CX562083P&TIMESTAMP=2016%2d07%2d13T12%3a51%3a48Z&CORRELATIONID=6c0df5d5d719d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=alain.neu%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+neu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622580880&PAYMENTREQUEST_0_SHIPTOSTREET=49+rte+monument+Magnard&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Auxy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-20B33047CX562083P -Result : TOKEN=EC%2d20B33047CX562083P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d13T12%3a52%3a19Z&CORRELATIONID=3223897e3924e&ACK=Success&VERSION=106&BUILD=000000&EMAIL=alain%2eneu%40wanadoo%2efr&PAYERID=GZ4CLXAP5W4TL&PAYERSTATUS=verified&FIRSTNAME=alain&LASTNAME=neu&COUNTRYCODE=FR&SHIPTONAME=Alain%20NEU&SHIPTOSTREET=49%20rte%20monument%20Magnard&SHIPTOCITY=Auxy&SHIPTOZIP=71400&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0622580880&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e50&ITEMAMT=5%2e50&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_NUMBER0=169&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e50&L_DESC0=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e50&PAYMENTREQUEST_0_ITEMAMT=5%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Alain%20NEU&PAYMENTREQUEST_0_SHIPTOSTREET=49%20rte%20monument%20Magnard&PAYMENTREQUEST_0_SHIPTOCITY=Auxy&PAYMENTREQUEST_0_SHIPTOZIP=71400&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622580880&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e50&L_PAYMENTREQUEST_0_DESC0=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-20B33047CX562083P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-20B33047CX562083P&PAYERID=GZ4CLXAP5W4TL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=alain.neu%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+neu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622580880&PAYMENTREQUEST_0_SHIPTOSTREET=49+rte+monument+Magnard&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Auxy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71400 -Result : TOKEN=EC%2d20B33047CX562083P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d13T12%3a52%3a23Z&CORRELATIONID=76988bdd9e935&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=17N87563C0762231D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d13T12%3a52%3a21Z&PAYMENTINFO_0_AMT=11%2e50&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-20B33047CX562083P&PAYERID=GZ4CLXAP5W4TL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=alain.neu%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+neu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0622580880&PAYMENTREQUEST_0_SHIPTOSTREET=49+rte+monument+Magnard&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Auxy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=71400 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=313&L_PAYMENTREQUEST_0_NAME0=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC0=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT0=5.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.2&PAYMENTREQUEST_0_AMT=8.20&ADDROVERRIDE=1&EMAIL=roch.mordiconi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=ROCH+MORDICONI&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681926216&PAYMENTREQUEST_0_SHIPTOSTREET=N%C2%B0+1163+R.D.820&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST+PIERRE+LAFEUILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=46090&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3AN861485F637693E&TIMESTAMP=2016%2d07%2d13T14%3a55%3a34Z&CORRELATIONID=cba9d6b546d94&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=313&L_PAYMENTREQUEST_0_NAME0=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC0=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT0=5.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.2&PAYMENTREQUEST_0_AMT=8.20&ADDROVERRIDE=1&EMAIL=roch.mordiconi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=ROCH+MORDICONI&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681926216&PAYMENTREQUEST_0_SHIPTOSTREET=N%C2%B0+1163+R.D.820&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST+PIERRE+LAFEUILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=46090&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3AN861485F637693E -Result : TOKEN=EC%2d3AN861485F637693E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d13T14%3a56%3a01Z&CORRELATIONID=50cb0931da38f&ACK=Success&VERSION=106&BUILD=000000&EMAIL=roch%2emordiconi%40orange%2efr&PAYERID=H3E2AWTQHRBWL&PAYERSTATUS=verified&FIRSTNAME=roch&LASTNAME=mordiconi&COUNTRYCODE=FR&SHIPTONAME=ROCH%20MORDICONI&SHIPTOSTREET=N%c2%b0%201163%20R%2eD%2e820&SHIPTOCITY=ST%20PIERRE%20LAFEUILLE&SHIPTOZIP=46090&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0681926216&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=8%2e20&ITEMAMT=5%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gommage%20Argile%20Blanche%20CATTIER%20100ml&L_NUMBER0=313&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e20&L_DESC0=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%2c%20le%20Gommage%20Argil%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=8%2e20&PAYMENTREQUEST_0_ITEMAMT=5%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=ROCH%20MORDICONI&PAYMENTREQUEST_0_SHIPTOSTREET=N%c2%b0%201163%20R%2eD%2e820&PAYMENTREQUEST_0_SHIPTOCITY=ST%20PIERRE%20LAFEUILLE&PAYMENTREQUEST_0_SHIPTOZIP=46090&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681926216&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gommage%20Argile%20Blanche%20CATTIER%20100ml&L_PAYMENTREQUEST_0_NUMBER0=313&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e20&L_PAYMENTREQUEST_0_DESC0=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%2c%20le%20Gommage%20Argil%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3AN861485F637693E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3AN861485F637693E&PAYERID=H3E2AWTQHRBWL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=313&L_PAYMENTREQUEST_0_NAME0=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC0=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT0=5.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.2&PAYMENTREQUEST_0_AMT=8.20&ADDROVERRIDE=1&EMAIL=roch.mordiconi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=ROCH+MORDICONI&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681926216&PAYMENTREQUEST_0_SHIPTOSTREET=N%C2%B0+1163+R.D.820&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST+PIERRE+LAFEUILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=46090 -Result : TOKEN=EC%2d3AN861485F637693E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d13T14%3a56%3a03Z&CORRELATIONID=86d7f6f7ffad&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1BF24791HB438441F&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d13T14%3a56%3a02Z&PAYMENTINFO_0_AMT=8%2e20&PAYMENTINFO_0_FEEAMT=0%2e53&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3AN861485F637693E&PAYERID=H3E2AWTQHRBWL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=313&L_PAYMENTREQUEST_0_NAME0=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC0=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT0=5.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.2&PAYMENTREQUEST_0_AMT=8.20&ADDROVERRIDE=1&EMAIL=roch.mordiconi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=ROCH+MORDICONI&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681926216&PAYMENTREQUEST_0_SHIPTOSTREET=N%C2%B0+1163+R.D.820&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST+PIERRE+LAFEUILLE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=46090 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.6&PAYMENTREQUEST_0_AMT=12.60&ADDROVERRIDE=1&EMAIL=lulibarreto%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Luiza+Melo&PAYMENTREQUEST_0_SHIPTOPHONENUM=0689731936&PAYMENTREQUEST_0_SHIPTOSTREET=129+rue+Caulaincourt&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4X9474728J557905B&TIMESTAMP=2016%2d07%2d13T22%3a10%3a06Z&CORRELATIONID=ebf5fde3ba7f5&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.6&PAYMENTREQUEST_0_AMT=12.60&ADDROVERRIDE=1&EMAIL=lulibarreto%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Luiza+Melo&PAYMENTREQUEST_0_SHIPTOPHONENUM=0689731936&PAYMENTREQUEST_0_SHIPTOSTREET=129+rue+Caulaincourt&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4X9474728J557905B -Result : TOKEN=EC%2d4X9474728J557905B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d13T22%3a10%3a46Z&CORRELATIONID=96e02f882fbb7&ACK=Success&VERSION=106&BUILD=000000&EMAIL=lulibarreto%40hotmail%2ecom&PAYERID=5UHBYTG7QYCWW&PAYERSTATUS=verified&FIRSTNAME=Luiza&LASTNAME=Barreto&COUNTRYCODE=FR&SHIPTONAME=Luiza%20MELO&SHIPTOSTREET=129%20rue%20caulaincourt&SHIPTOCITY=paris&SHIPTOZIP=75018&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0689731936&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=12%2e60&ITEMAMT=6%2e60&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NUMBER0=165&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=3%2e30&L_DESC0=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=12%2e60&PAYMENTREQUEST_0_ITEMAMT=6%2e60&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Luiza%20MELO&PAYMENTREQUEST_0_SHIPTOSTREET=129%20rue%20caulaincourt&PAYMENTREQUEST_0_SHIPTOCITY=paris&PAYMENTREQUEST_0_SHIPTOZIP=75018&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0689731936&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e30&L_PAYMENTREQUEST_0_DESC0=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4X9474728J557905B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4X9474728J557905B&PAYERID=5UHBYTG7QYCWW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.6&PAYMENTREQUEST_0_AMT=12.60&ADDROVERRIDE=1&EMAIL=lulibarreto%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Luiza+Melo&PAYMENTREQUEST_0_SHIPTOPHONENUM=0689731936&PAYMENTREQUEST_0_SHIPTOSTREET=129+rue+Caulaincourt&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018 -Result : TOKEN=EC%2d4X9474728J557905B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d13T22%3a10%3a49Z&CORRELATIONID=286f8ecb4bb02&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7FG50748L41571350&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d13T22%3a10%3a47Z&PAYMENTINFO_0_AMT=12%2e60&PAYMENTINFO_0_FEEAMT=0%2e68&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4X9474728J557905B&PAYERID=5UHBYTG7QYCWW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=6.6&PAYMENTREQUEST_0_AMT=12.60&ADDROVERRIDE=1&EMAIL=lulibarreto%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Luiza+Melo&PAYMENTREQUEST_0_SHIPTOPHONENUM=0689731936&PAYMENTREQUEST_0_SHIPTOSTREET=129+rue+Caulaincourt&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=75018 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.4&PAYMENTREQUEST_0_AMT=13.40&ADDROVERRIDE=1&EMAIL=autheman.dessin%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+autheman&PAYMENTREQUEST_0_SHIPTOPHONENUM=0490962426&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+barreme&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=arles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d49T84417R3140070A&TIMESTAMP=2016%2d07%2d14T07%3a35%3a41Z&CORRELATIONID=ca8073315aa7d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.4&PAYMENTREQUEST_0_AMT=13.40&ADDROVERRIDE=1&EMAIL=autheman.dessin%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+autheman&PAYMENTREQUEST_0_SHIPTOPHONENUM=0490962426&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+barreme&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=arles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49T84417R3140070A -Result : TOKEN=EC%2d49T84417R3140070A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d14T07%3a36%3a17Z&CORRELATIONID=c83cba81b7d14&ACK=Success&VERSION=106&BUILD=000000&EMAIL=autheman%2edessin%40orange%2efr&PAYERID=FABWGNCL5M9V2&PAYERSTATUS=verified&FIRSTNAME=jean%2dpierre&LASTNAME=autheman&COUNTRYCODE=FR&SHIPTONAME=JEAN%20PIERRE%20AUTHEMAN&SHIPTOSTREET=6%20RUE%20BARREME&SHIPTOCITY=ARLES&SHIPTOZIP=13200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0490962426&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=13%2e40&ITEMAMT=10%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_NUMBER0=280&L_QTY0=4&L_TAXAMT0=0%2e00&L_AMT0=2%2e60&L_DESC0=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=13%2e40&PAYMENTREQUEST_0_ITEMAMT=10%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=JEAN%20PIERRE%20AUTHEMAN&PAYMENTREQUEST_0_SHIPTOSTREET=6%20RUE%20BARREME&PAYMENTREQUEST_0_SHIPTOCITY=ARLES&PAYMENTREQUEST_0_SHIPTOZIP=13200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0490962426&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=2%2e60&L_PAYMENTREQUEST_0_DESC0=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49T84417R3140070A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49T84417R3140070A&PAYERID=FABWGNCL5M9V2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.4&PAYMENTREQUEST_0_AMT=13.40&ADDROVERRIDE=1&EMAIL=autheman.dessin%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+autheman&PAYMENTREQUEST_0_SHIPTOPHONENUM=0490962426&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+barreme&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=arles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13200 -Result : TOKEN=EC%2d49T84417R3140070A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d14T07%3a36%3a20Z&CORRELATIONID=31721cc0f0f23&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=13J18409KN979323Y&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d14T07%3a36%3a18Z&PAYMENTINFO_0_AMT=13%2e40&PAYMENTINFO_0_FEEAMT=0%2e71&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49T84417R3140070A&PAYERID=FABWGNCL5M9V2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.4&PAYMENTREQUEST_0_AMT=13.40&ADDROVERRIDE=1&EMAIL=autheman.dessin%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+autheman&PAYMENTREQUEST_0_SHIPTOPHONENUM=0490962426&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+barreme&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=arles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=Adri1troha%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Adrien+TROHA&PAYMENTREQUEST_0_SHIPTOPHONENUM=07-68-47-67-32&PAYMENTREQUEST_0_SHIPTOSTREET=14+A+venue+de+Robache+%28D%C3%A9poser+Adriline%29&PAYMENTREQUEST_0_SHIPTOSTREET2=1+Avenue+Andr%C3%A9+colin+%28sonner+Adriline%29&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Di%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4RE64700CU9480522&TIMESTAMP=2016%2d07%2d14T13%3a32%3a52Z&CORRELATIONID=cd95a16ce4dbd&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=Adri1troha%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Adrien+TROHA&PAYMENTREQUEST_0_SHIPTOPHONENUM=07-68-47-67-32&PAYMENTREQUEST_0_SHIPTOSTREET=14+A+venue+de+Robache+%28D%C3%A9poser+Adriline%29&PAYMENTREQUEST_0_SHIPTOSTREET2=1+Avenue+Andr%C3%A9+colin+%28sonner+Adriline%29&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Di%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4RE64700CU9480522 -Result : TOKEN=EC%2d4RE64700CU9480522&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d14T13%3a37%3a04Z&CORRELATIONID=dca400a0830a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=adri1troha%40yahoo%2efr&PAYERID=8BH6SP9K6PJZQ&PAYERSTATUS=verified&FIRSTNAME=Troha&LASTNAME=Adrien&COUNTRYCODE=FR&SHIPTONAME=Adrien%20TROHA&SHIPTOSTREET=14%20A%20venue%20de%20Robache%20%28D%c3%a9poser%20Adriline%29&SHIPTOSTREET2=1%20Avenue%20Andr%c3%a9%20colin%20%28sonner%20Adriline%29&SHIPTOCITY=Saint%20Di%c3%a9&SHIPTOZIP=88100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=07%2d68%2d47%2d67%2d32&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Unconfirmed&CURRENCYCODE=EUR&AMT=20%2e85&ITEMAMT=17%2e85&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_QTY0=3&L_TAXAMT0=0%2e00&L_AMT0=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_ITEMHEIGHTVALUE0=%20%20%200%2e00000&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e85&PAYMENTREQUEST_0_ITEMAMT=17%2e85&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Adrien%20TROHA&PAYMENTREQUEST_0_SHIPTOSTREET=14%20A%20venue%20de%20Robache%20%28D%c3%a9poser%20Adriline%29&PAYMENTREQUEST_0_SHIPTOSTREET2=1%20Avenue%20Andr%c3%a9%20colin%20%28sonner%20Adriline%29&PAYMENTREQUEST_0_SHIPTOCITY=Saint%20Di%c3%a9&PAYMENTREQUEST_0_SHIPTOZIP=88100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=07%2d68%2d47%2d67%2d32&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Unconfirmed&PAYMENTREQUEST_0_ADDRESSNORMALIZATIONSTATUS=None&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE0=%20%20%200%2e00000&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4RE64700CU9480522 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4RE64700CU9480522&PAYERID=8BH6SP9K6PJZQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=Adri1troha%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Adrien+TROHA&PAYMENTREQUEST_0_SHIPTOPHONENUM=07-68-47-67-32&PAYMENTREQUEST_0_SHIPTOSTREET=14+A+venue+de+Robache+%28D%C3%A9poser+Adriline%29&PAYMENTREQUEST_0_SHIPTOSTREET2=1+Avenue+Andr%C3%A9+colin+%28sonner+Adriline%29&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Di%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88100 -Result : TOKEN=EC%2d4RE64700CU9480522&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d14T13%3a37%3a08Z&CORRELATIONID=b08ec3084c265&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3EW33305N3941011U&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d14T13%3a37%3a07Z&PAYMENTINFO_0_AMT=20%2e85&PAYMENTINFO_0_FEEAMT=0%2e96&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4RE64700CU9480522&PAYERID=8BH6SP9K6PJZQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=Adri1troha%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Adrien+TROHA&PAYMENTREQUEST_0_SHIPTOPHONENUM=07-68-47-67-32&PAYMENTREQUEST_0_SHIPTOSTREET=14+A+venue+de+Robache+%28D%C3%A9poser+Adriline%29&PAYMENTREQUEST_0_SHIPTOSTREET2=1+Avenue+Andr%C3%A9+colin+%28sonner+Adriline%29&PAYMENTREQUEST_0_SHIPTOCITY=Saint+Di%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d99W88717LB842013E&TIMESTAMP=2016%2d07%2d14T19%3a51%3a15Z&CORRELATIONID=720dbbfbb4d7&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99W88717LB842013E -Result : TOKEN=EC%2d99W88717LB842013E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d14T19%3a51%3a56Z&CORRELATIONID=3a881e96d08d&ACK=Success&VERSION=106&BUILD=000000&EMAIL=david%2elesueur0924%40orange%2efr&PAYERID=MVYZ75AE4ETYS&PAYERSTATUS=verified&FIRSTNAME=david&LASTNAME=lesueur&COUNTRYCODE=FR&SHIPTONAME=David%20LESUEUR&SHIPTOSTREET=1%20rue%20de%20Launois&SHIPTOCITY=MARLEMONT&SHIPTOZIP=08290&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0695748358&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=109%2e80&ITEMAMT=109%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Terre%20coloris%20Parchemin%2015Kg&L_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Zinc%2015kg&L_NUMBER0=279&L_NUMBER1=278&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=54%2e90&L_AMT1=54%2e90&L_DESC0=Les%20couleurs%20profondes%20de%20MAGIC%e2%80%99TERRE%20nous%20envelop%2e%2e%2e&L_DESC1=Magic%e2%80%99B%c3%a9ton%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=109%2e80&PAYMENTREQUEST_0_ITEMAMT=109%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=David%20LESUEUR&PAYMENTREQUEST_0_SHIPTOSTREET=1%20rue%20de%20Launois&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOZIP=08290&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Terre%20coloris%20Parchemin%2015Kg&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Zinc%2015kg&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_AMT1=54%2e90&L_PAYMENTREQUEST_0_DESC0=Les%20couleurs%20profondes%20de%20MAGIC%e2%80%99TERRE%20nous%20envelop%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Magic%e2%80%99B%c3%a9ton%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99W88717LB842013E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99W88717LB842013E&PAYERID=MVYZ75AE4ETYS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290 -Result : TOKEN=EC%2d99W88717LB842013E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d14T19%3a51%3a59Z&CORRELATIONID=b8121b2fa7961&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=37D37975ER681392C&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d14T19%3a51%3a58Z&PAYMENTINFO_0_AMT=109%2e80&PAYMENTINFO_0_FEEAMT=3%2e98&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99W88717LB842013E&PAYERID=MVYZ75AE4ETYS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=279&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Terre+coloris+Parchemin+15Kg&L_PAYMENTREQUEST_0_DESC0=Les+couleurs+profondes+de+MAGIC%E2%80%99TERRE+nous+envelop...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=278&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Zinc+15kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99B%C3%A9ton%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=david.lesueur0924%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=DAVID+LESUEUR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0695748358&PAYMENTREQUEST_0_SHIPTOSTREET=1+rue+de+launois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MARLEMONT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08290 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.95&PAYMENTREQUEST_0_AMT=8.95&ADDROVERRIDE=1&EMAIL=julie.angel%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Julie+Escoto+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681260510&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Dom+Plancher&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Dijon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3XX212538E4089546&TIMESTAMP=2016%2d07%2d14T22%3a04%3a13Z&CORRELATIONID=5cf45c3d3de1c&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.95&PAYMENTREQUEST_0_AMT=8.95&ADDROVERRIDE=1&EMAIL=julie.angel%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Julie+Escoto+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681260510&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Dom+Plancher&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Dijon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3XX212538E4089546 -Result : TOKEN=EC%2d3XX212538E4089546&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d14T22%3a04%3a43Z&CORRELATIONID=6a9314d570d8&ACK=Success&VERSION=106&BUILD=000000&EMAIL=julie%2eangel%40free%2efr&PAYERID=BBDU72JJWABAA&PAYERSTATUS=verified&FIRSTNAME=Julie&LASTNAME=Escoto&COUNTRYCODE=FR&SHIPTONAME=Julie%20ESCOTO&SHIPTOSTREET=13%20rue%20DOM%20PLANCHER&SHIPTOCITY=Dijon&SHIPTOSTATE=BOURGOGNE&SHIPTOZIP=21000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0681260510&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=8%2e95&ITEMAMT=5%2e95&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=8%2e95&PAYMENTREQUEST_0_ITEMAMT=5%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Julie%20ESCOTO&PAYMENTREQUEST_0_SHIPTOSTREET=13%20rue%20DOM%20PLANCHER&PAYMENTREQUEST_0_SHIPTOCITY=Dijon&PAYMENTREQUEST_0_SHIPTOSTATE=BOURGOGNE&PAYMENTREQUEST_0_SHIPTOZIP=21000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681260510&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3XX212538E4089546 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3XX212538E4089546&PAYERID=BBDU72JJWABAA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.95&PAYMENTREQUEST_0_AMT=8.95&ADDROVERRIDE=1&EMAIL=julie.angel%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Julie+Escoto+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681260510&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Dom+Plancher&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Dijon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21000 -Result : TOKEN=EC%2d3XX212538E4089546&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d14T22%3a04%3a45Z&CORRELATIONID=31b11bab3a91a&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2U603268MA7355201&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d14T22%3a04%3a44Z&PAYMENTINFO_0_AMT=8%2e95&PAYMENTINFO_0_FEEAMT=0%2e55&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3XX212538E4089546&PAYERID=BBDU72JJWABAA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5.95&PAYMENTREQUEST_0_AMT=8.95&ADDROVERRIDE=1&EMAIL=julie.angel%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Julie+Escoto+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0681260510&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Dom+Plancher&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Dijon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=56&L_PAYMENTREQUEST_0_NAME1=Liquide+vaisselle+maison+%C3%A9cologique-+Romarin+750ml+&L_PAYMENTREQUEST_0_DESC1=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Romarin%C2%A0certif...&L_PAYMENTREQUEST_0_AMT1=2.02&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.82&PAYMENTREQUEST_0_AMT=51.82&ADDROVERRIDE=1&EMAIL=dlca%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+GONTHIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684952383&PAYMENTREQUEST_0_SHIPTOSTREET=6+IMPASSE+DES+MESANGES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MEAUX&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2PY74492RC776281F&TIMESTAMP=2016%2d07%2d15T10%3a22%3a06Z&CORRELATIONID=49c661a22f3d7&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=56&L_PAYMENTREQUEST_0_NAME1=Liquide+vaisselle+maison+%C3%A9cologique-+Romarin+750ml+&L_PAYMENTREQUEST_0_DESC1=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Romarin%C2%A0certif...&L_PAYMENTREQUEST_0_AMT1=2.02&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.82&PAYMENTREQUEST_0_AMT=51.82&ADDROVERRIDE=1&EMAIL=dlca%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+GONTHIER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684952383&PAYMENTREQUEST_0_SHIPTOSTREET=6+IMPASSE+DES+MESANGES&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MEAUX&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=laflo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Weill+Flora&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667495812&PAYMENTREQUEST_0_SHIPTOSTREET=18+rue+du+bassin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sussargues&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d99648752JV901440J&TIMESTAMP=2016%2d07%2d15T12%3a50%3a09Z&CORRELATIONID=2fb976b5ac78e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=laflo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Weill+Flora&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667495812&PAYMENTREQUEST_0_SHIPTOSTREET=18+rue+du+bassin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sussargues&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99648752JV901440J -Result : TOKEN=EC%2d99648752JV901440J&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d15T12%3a50%3a44Z&CORRELATIONID=c42985caa12d4&ACK=Success&VERSION=106&BUILD=000000&EMAIL=laflo%40hotmail%2efr&PAYERID=CGFYPEBHENRCU&PAYERSTATUS=verified&FIRSTNAME=Flora&LASTNAME=weill&COUNTRYCODE=FR&SHIPTONAME=Weill%20Flora&SHIPTOSTREET=18%20rue%20du%20bassin&SHIPTOCITY=Sussargues&SHIPTOZIP=34160&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0667495812&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=25%2e90&ITEMAMT=19%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NUMBER0=5&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=25%2e90&PAYMENTREQUEST_0_ITEMAMT=19%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Weill%20Flora&PAYMENTREQUEST_0_SHIPTOSTREET=18%20rue%20du%20bassin&PAYMENTREQUEST_0_SHIPTOCITY=Sussargues&PAYMENTREQUEST_0_SHIPTOZIP=34160&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667495812&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99648752JV901440J - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99648752JV901440J&PAYERID=CGFYPEBHENRCU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=laflo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Weill+Flora&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667495812&PAYMENTREQUEST_0_SHIPTOSTREET=18+rue+du+bassin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sussargues&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34160 -Result : TOKEN=EC%2d99648752JV901440J&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d15T12%3a50%3a47Z&CORRELATIONID=2ef5a5cab95e5&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=72458290PA7185424&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d15T12%3a50%3a46Z&PAYMENTINFO_0_AMT=25%2e90&PAYMENTINFO_0_FEEAMT=1%2e13&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-99648752JV901440J&PAYERID=CGFYPEBHENRCU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=laflo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Weill+Flora&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667495812&PAYMENTREQUEST_0_SHIPTOSTREET=18+rue+du+bassin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Sussargues&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34160 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=valerieackermann25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=valerie+ulrich+ackermann&PAYMENTREQUEST_0_SHIPTOPHONENUM=0386651249&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+division+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=log+11+2+eme+%C3%A9tg&PAYMENTREQUEST_0_SHIPTOCITY=villeneuve+la+guyard&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=89340&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8316496775868462A&TIMESTAMP=2016%2d07%2d15T15%3a17%3a27Z&CORRELATIONID=f874d4df142df&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=valerieackermann25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=valerie+ulrich+ackermann&PAYMENTREQUEST_0_SHIPTOPHONENUM=0386651249&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+division+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=log+11+2+eme+%C3%A9tg&PAYMENTREQUEST_0_SHIPTOCITY=villeneuve+la+guyard&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=89340&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8316496775868462A -Result : TOKEN=EC%2d8316496775868462A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d15T15%3a22%3a41Z&CORRELATIONID=54eddd3ed9ba4&ACK=Success&VERSION=106&BUILD=000000&EMAIL=valerieackermann25%40gmail%2ecom&PAYERID=5U4Q95F4N7VXS&PAYERSTATUS=unverified&FIRSTNAME=raymond&LASTNAME=LESUR&COUNTRYCODE=FR&SHIPTONAME=valerie%20ulrich%20ackermann&SHIPTOSTREET=11%20rue%20division%20leclerc&SHIPTOSTREET2=log%2011%202%20eme%20%c3%a9tg&SHIPTOCITY=villeneuve%20la%20guyard&SHIPTOZIP=89340&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0386651249&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=22%2e20&ITEMAMT=16%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_NUMBER0=271&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=16%2e20&L_DESC0=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=22%2e20&PAYMENTREQUEST_0_ITEMAMT=16%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=valerie%20ulrich%20ackermann&PAYMENTREQUEST_0_SHIPTOSTREET=11%20rue%20division%20leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=log%2011%202%20eme%20%c3%a9tg&PAYMENTREQUEST_0_SHIPTOCITY=villeneuve%20la%20guyard&PAYMENTREQUEST_0_SHIPTOZIP=89340&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0386651249&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20sp%c3%a9cial%20PVC%20%2d%20R%c3%a9nov%27Guard%20750ml&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=16%2e20&L_PAYMENTREQUEST_0_DESC0=Nettoyant%20polyvalent%20%2d%20Ravive%20et%20assainit%20le%20PVCS%27%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8316496775868462A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8316496775868462A&PAYERID=5U4Q95F4N7VXS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=valerieackermann25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=valerie+ulrich+ackermann&PAYMENTREQUEST_0_SHIPTOPHONENUM=0386651249&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+division+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=log+11+2+eme+%C3%A9tg&PAYMENTREQUEST_0_SHIPTOCITY=villeneuve+la+guyard&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=89340 -Result : TOKEN=EC%2d8316496775868462A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d15T15%3a22%3a45Z&CORRELATIONID=74da4143b4e35&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6CY044792T061983H&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d15T15%3a22%3a43Z&PAYMENTINFO_0_AMT=22%2e20&PAYMENTINFO_0_FEEAMT=1%2e00&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8316496775868462A&PAYERID=5U4Q95F4N7VXS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=271&L_PAYMENTREQUEST_0_NAME0=Nettoyant+sp%C3%A9cial+PVC+-+R%C3%A9nov%27Guard+750ml&L_PAYMENTREQUEST_0_DESC0=Nettoyant+polyvalent+-+Ravive+et+assainit+le+PVCS%27...&L_PAYMENTREQUEST_0_AMT0=16.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=16.2&PAYMENTREQUEST_0_AMT=22.20&ADDROVERRIDE=1&EMAIL=valerieackermann25%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=valerie+ulrich+ackermann&PAYMENTREQUEST_0_SHIPTOPHONENUM=0386651249&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+division+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=log+11+2+eme+%C3%A9tg&PAYMENTREQUEST_0_SHIPTOCITY=villeneuve+la+guyard&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=89340 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=103&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT0=5.6&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=135&L_PAYMENTREQUEST_0_NAME1=Mascara+volume%2C+effet+volume+instantan%C3%A9+-+01+Noir+chic&L_PAYMENTREQUEST_0_DESC1=Optez+pour+un+volume+irr%C3%A9sistible+%21Gr%C3%A2ce+%C3%A0+sa+nouv...&L_PAYMENTREQUEST_0_AMT1=9.72&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=137&L_PAYMENTREQUEST_0_NAME2=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC2=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT2=5.04&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=20.36&PAYMENTREQUEST_0_AMT=23.36&ADDROVERRIDE=1&EMAIL=M.barrandon%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Marlene++Barrandon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610237791&PAYMENTREQUEST_0_SHIPTOSTREET=659+route+de+nimes+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vauvert+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=30600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2EE78773K8882630V&TIMESTAMP=2016%2d07%2d15T16%3a20%3a02Z&CORRELATIONID=27e1f46694e3b&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=103&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT0=5.6&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=135&L_PAYMENTREQUEST_0_NAME1=Mascara+volume%2C+effet+volume+instantan%C3%A9+-+01+Noir+chic&L_PAYMENTREQUEST_0_DESC1=Optez+pour+un+volume+irr%C3%A9sistible+%21Gr%C3%A2ce+%C3%A0+sa+nouv...&L_PAYMENTREQUEST_0_AMT1=9.72&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=137&L_PAYMENTREQUEST_0_NAME2=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC2=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT2=5.04&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=20.36&PAYMENTREQUEST_0_AMT=23.36&ADDROVERRIDE=1&EMAIL=M.barrandon%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Marlene++Barrandon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610237791&PAYMENTREQUEST_0_SHIPTOSTREET=659+route+de+nimes+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vauvert+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=30600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2EE78773K8882630V -Result : TOKEN=EC%2d2EE78773K8882630V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d15T16%3a20%3a31Z&CORRELATIONID=54d8f2aa49fa6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=m%2ebarrandon%40orange%2efr&PAYERID=672QAMADPAK22&PAYERSTATUS=verified&FIRSTNAME=marl%c3%a8ne&LASTNAME=barrandon%2droca&COUNTRYCODE=FR&SHIPTONAME=Marlene%20Barrandon&SHIPTOSTREET=659%20route%20de%20NIMES&SHIPTOCITY=vauvert&SHIPTOZIP=30600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0610237791&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=23%2e36&ITEMAMT=20%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Huile%20100%20%25%20naturelle%20Ricin&L_NAME1=Mascara%20volume%2c%20effet%20volume%20instantan%c3%a9%20%2d%2001%20Noir%20chic&L_NAME2=Crayon%20yeux%20tenue%20intense%20%2d%2001%20Noir%20intense&L_NUMBER0=103&L_NUMBER1=135&L_NUMBER2=137&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e60&L_AMT1=9%2e72&L_AMT2=5%2e04&L_DESC0=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20de%20ri%2e%2e%2e&L_DESC1=Optez%20pour%20un%20volume%20irr%c3%a9sistible%20%21Gr%c3%a2ce%20%c3%a0%20sa%20nouv%2e%2e%2e&L_DESC2=%c2%a0Le%20crayon%20contour%20de%20yeux%20noir%20intense%20SO%27BiO%20%c3%a9ti%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=23%2e36&PAYMENTREQUEST_0_ITEMAMT=20%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Marlene%20Barrandon&PAYMENTREQUEST_0_SHIPTOSTREET=659%20route%20de%20NIMES&PAYMENTREQUEST_0_SHIPTOCITY=vauvert&PAYMENTREQUEST_0_SHIPTOZIP=30600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610237791&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Huile%20100%20%25%20naturelle%20Ricin&L_PAYMENTREQUEST_0_NAME1=Mascara%20volume%2c%20effet%20volume%20instantan%c3%a9%20%2d%2001%20Noir%20chic&L_PAYMENTREQUEST_0_NAME2=Crayon%20yeux%20tenue%20intense%20%2d%2001%20Noir%20intense&L_PAYMENTREQUEST_0_NUMBER0=103&L_PAYMENTREQUEST_0_NUMBER1=135&L_PAYMENTREQUEST_0_NUMBER2=137&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e60&L_PAYMENTREQUEST_0_AMT1=9%2e72&L_PAYMENTREQUEST_0_AMT2=5%2e04&L_PAYMENTREQUEST_0_DESC0=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20de%20ri%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Optez%20pour%20un%20volume%20irr%c3%a9sistible%20%21Gr%c3%a2ce%20%c3%a0%20sa%20nouv%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=%c2%a0Le%20crayon%20contour%20de%20yeux%20noir%20intense%20SO%27BiO%20%c3%a9ti%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2EE78773K8882630V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2EE78773K8882630V&PAYERID=672QAMADPAK22&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=103&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT0=5.6&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=135&L_PAYMENTREQUEST_0_NAME1=Mascara+volume%2C+effet+volume+instantan%C3%A9+-+01+Noir+chic&L_PAYMENTREQUEST_0_DESC1=Optez+pour+un+volume+irr%C3%A9sistible+%21Gr%C3%A2ce+%C3%A0+sa+nouv...&L_PAYMENTREQUEST_0_AMT1=9.72&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=137&L_PAYMENTREQUEST_0_NAME2=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC2=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT2=5.04&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=20.36&PAYMENTREQUEST_0_AMT=23.36&ADDROVERRIDE=1&EMAIL=M.barrandon%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Marlene++Barrandon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610237791&PAYMENTREQUEST_0_SHIPTOSTREET=659+route+de+nimes+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vauvert+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=30600 -Result : TOKEN=EC%2d2EE78773K8882630V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d15T16%3a20%3a34Z&CORRELATIONID=97ce72e48ed74&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=82G68693G55845222&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d15T16%3a20%3a33Z&PAYMENTINFO_0_AMT=23%2e36&PAYMENTINFO_0_FEEAMT=1%2e04&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2EE78773K8882630V&PAYERID=672QAMADPAK22&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=103&L_PAYMENTREQUEST_0_NAME0=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC0=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT0=5.6&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=135&L_PAYMENTREQUEST_0_NAME1=Mascara+volume%2C+effet+volume+instantan%C3%A9+-+01+Noir+chic&L_PAYMENTREQUEST_0_DESC1=Optez+pour+un+volume+irr%C3%A9sistible+%21Gr%C3%A2ce+%C3%A0+sa+nouv...&L_PAYMENTREQUEST_0_AMT1=9.72&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=137&L_PAYMENTREQUEST_0_NAME2=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC2=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT2=5.04&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=20.36&PAYMENTREQUEST_0_AMT=23.36&ADDROVERRIDE=1&EMAIL=M.barrandon%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Marlene++Barrandon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0610237791&PAYMENTREQUEST_0_SHIPTOSTREET=659+route+de+nimes+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vauvert+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=30600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6AX04603SL237791G&TIMESTAMP=2016%2d07%2d15T20%3a09%3a31Z&CORRELATIONID=7c9864208ab14&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d089325178H547443B&TIMESTAMP=2016%2d07%2d15T20%3a14%3a13Z&CORRELATIONID=1c8604f6580cd&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-089325178H547443B -Result : TOKEN=EC%2d089325178H547443B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d15T20%3a15%3a14Z&CORRELATIONID=1309961631b85&ACK=Success&VERSION=106&BUILD=000000&EMAIL=spateoueille%40club%2dinternet%2efr&PAYERID=CSMPDT8WK49BY&PAYERSTATUS=verified&FIRSTNAME=LAURENT&LASTNAME=PATEOUEILLE&COUNTRYCODE=FR&SHIPTONAME=%20Laurent%20pateoueille&SHIPTOSTREET=12%20rue%20des%20M%c3%a9t%c3%a9ores&SHIPTOCITY=LE%20HAILLAN&SHIPTOSTATE=FR&SHIPTOZIP=33185&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0665189406&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e40&ITEMAMT=23%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_NUMBER0=300&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=23%2e40&L_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e40&PAYMENTREQUEST_0_ITEMAMT=23%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Laurent%20pateoueille&PAYMENTREQUEST_0_SHIPTOSTREET=12%20rue%20des%20M%c3%a9t%c3%a9ores&PAYMENTREQUEST_0_SHIPTOCITY=LE%20HAILLAN&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=23%2e40&L_PAYMENTREQUEST_0_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-089325178H547443B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-089325178H547443B&PAYERID=CSMPDT8WK49BY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185 -Result : TOKEN=EC%2d089325178H547443B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d15T20%3a15%3a18Z&CORRELATIONID=7239576c72126&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=16P29914A0998402L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d15T20%3a15%3a15Z&PAYMENTINFO_0_AMT=26%2e40&PAYMENTINFO_0_FEEAMT=1%2e15&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-089325178H547443B&PAYERID=CSMPDT8WK49BY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=Laurent.pateoueille.pilocap%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+Pateoueille&PAYMENTREQUEST_0_SHIPTOPHONENUM=0665189406&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+des+m%C3%A9t%C3%A9ores&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Le+haillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33185 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=josh201004%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Davidha+FERCHAUD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651138031&PAYMENTREQUEST_0_SHIPTOSTREET=212+rue+de+Lorraine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Cholet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=49300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7G952805XG6677029&TIMESTAMP=2016%2d07%2d15T21%3a23%3a28Z&CORRELATIONID=65ac077b8fd4a&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=josh201004%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Davidha+FERCHAUD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651138031&PAYMENTREQUEST_0_SHIPTOSTREET=212+rue+de+Lorraine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Cholet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=49300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7G952805XG6677029 -Result : TOKEN=EC%2d7G952805XG6677029&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d15T21%3a24%3a32Z&CORRELATIONID=1bad438ccc786&ACK=Success&VERSION=106&BUILD=000000&EMAIL=josh201004%40gmail%2ecom&PAYERID=RSJHJX73F6JP2&PAYERSTATUS=verified&FIRSTNAME=Davidha&LASTNAME=FERCHAUD&COUNTRYCODE=FR&SHIPTONAME=%20Davidha%20Ferchaud&SHIPTOSTREET=212%20rue%20de%20Lorraine%20&SHIPTOCITY=Cholet&SHIPTOSTATE=FR&SHIPTOZIP=49300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0651138031&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=13%2e90&ITEMAMT=10%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Masque%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_NUMBER0=113&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=5%2e45&L_DESC0=Ce%20masque%20purifiant%20riche%20en%20argile%20verte%20montmori%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=13%2e90&PAYMENTREQUEST_0_ITEMAMT=10%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Davidha%20Ferchaud&PAYMENTREQUEST_0_SHIPTOSTREET=212%20rue%20de%20Lorraine%20&PAYMENTREQUEST_0_SHIPTOCITY=Cholet&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=49300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651138031&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Masque%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e45&L_PAYMENTREQUEST_0_DESC0=Ce%20masque%20purifiant%20riche%20en%20argile%20verte%20montmori%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7G952805XG6677029 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7G952805XG6677029&PAYERID=RSJHJX73F6JP2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=josh201004%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Davidha+FERCHAUD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651138031&PAYMENTREQUEST_0_SHIPTOSTREET=212+rue+de+Lorraine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Cholet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=49300 -Result : TOKEN=EC%2d7G952805XG6677029&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d15T21%3a24%3a35Z&CORRELATIONID=71682e1d24aeb&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8E346281YS975402D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d15T21%3a24%3a33Z&PAYMENTINFO_0_AMT=13%2e90&PAYMENTINFO_0_FEEAMT=0%2e72&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7G952805XG6677029&PAYERID=RSJHJX73F6JP2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=113&L_PAYMENTREQUEST_0_NAME0=Masque+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC0=Ce+masque+purifiant+riche+en+argile+verte+montmori...&L_PAYMENTREQUEST_0_AMT0=5.45&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10.9&PAYMENTREQUEST_0_AMT=13.90&ADDROVERRIDE=1&EMAIL=josh201004%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Davidha+FERCHAUD&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651138031&PAYMENTREQUEST_0_SHIPTOSTREET=212+rue+de+Lorraine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Cholet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=49300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=respautandre%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=yvette+respaut&PAYMENTREQUEST_0_SHIPTOPHONENUM=0387761557&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+du+ruisseau&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=metz&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57070&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d85B95114A76957913&TIMESTAMP=2016%2d07%2d16T07%3a08%3a40Z&CORRELATIONID=297a4c77980b&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=respautandre%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=yvette+respaut&PAYMENTREQUEST_0_SHIPTOPHONENUM=0387761557&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+du+ruisseau&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=metz&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57070&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-85B95114A76957913 -Result : TOKEN=EC%2d85B95114A76957913&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d16T07%3a09%3a10Z&CORRELATIONID=317905ceca20e&ACK=Success&VERSION=106&BUILD=000000&EMAIL=respautandre%40aol%2ecom&PAYERID=94E8DMQDGY97A&PAYERSTATUS=verified&FIRSTNAME=yvette&LASTNAME=respaut&COUNTRYCODE=FR&SHIPTONAME=%20yvette%20respaut&SHIPTOSTREET=8%20rue%20du%20ruisseau&SHIPTOCITY=metz&SHIPTOSTATE=FR&SHIPTOZIP=57070&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0387761557&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=25%2e90&ITEMAMT=19%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Oiseaux&L_NUMBER0=224&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=25%2e90&PAYMENTREQUEST_0_ITEMAMT=19%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20yvette%20respaut&PAYMENTREQUEST_0_SHIPTOSTREET=8%20rue%20du%20ruisseau&PAYMENTREQUEST_0_SHIPTOCITY=metz&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57070&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0387761557&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Oiseaux&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-85B95114A76957913 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-85B95114A76957913&PAYERID=94E8DMQDGY97A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=respautandre%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=yvette+respaut&PAYMENTREQUEST_0_SHIPTOPHONENUM=0387761557&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+du+ruisseau&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=metz&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57070 -Result : TOKEN=EC%2d85B95114A76957913&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d16T07%3a09%3a13Z&CORRELATIONID=2e8cc8cd10393&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7B757656S14945458&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d16T07%3a09%3a11Z&PAYMENTINFO_0_AMT=25%2e90&PAYMENTINFO_0_FEEAMT=1%2e13&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-85B95114A76957913&PAYERID=94E8DMQDGY97A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=respautandre%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=yvette+respaut&PAYMENTREQUEST_0_SHIPTOPHONENUM=0387761557&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+du+ruisseau&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=metz&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57070 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.8&PAYMENTREQUEST_0_AMT=10.80&ADDROVERRIDE=1&EMAIL=muriel.ongles127%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=direzze+laurent&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677086794&PAYMENTREQUEST_0_SHIPTOSTREET=22+route+nationale&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=domevre+en+haye&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54385&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5EX5892290189205E&TIMESTAMP=2016%2d07%2d16T07%3a43%3a30Z&CORRELATIONID=c3802c009f76d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.8&PAYMENTREQUEST_0_AMT=10.80&ADDROVERRIDE=1&EMAIL=muriel.ongles127%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=direzze+laurent&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677086794&PAYMENTREQUEST_0_SHIPTOSTREET=22+route+nationale&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=domevre+en+haye&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54385&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EX5892290189205E -Result : TOKEN=EC%2d5EX5892290189205E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d16T07%3a44%3a17Z&CORRELATIONID=15c1b46e143a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=laurent%2edirezze%40gmail%2ecom&PAYERID=6RLJWFJDZPWXW&PAYERSTATUS=verified&FIRSTNAME=muriel&LASTNAME=di%20rezze&COUNTRYCODE=FR&SHIPTONAME=DI%20REZZE%20laurent&SHIPTOSTREET=22%20Route%20Nationale&SHIPTOCITY=DOMEVRE%20EN%20HAYE&SHIPTOSTATE=LORRAINE&SHIPTOZIP=54385&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0677086794&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=10%2e80&ITEMAMT=7%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_NUMBER0=280&L_QTY0=3&L_TAXAMT0=0%2e00&L_AMT0=2%2e60&L_DESC0=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=10%2e80&PAYMENTREQUEST_0_ITEMAMT=7%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=DI%20REZZE%20laurent&PAYMENTREQUEST_0_SHIPTOSTREET=22%20Route%20Nationale&PAYMENTREQUEST_0_SHIPTOCITY=DOMEVRE%20EN%20HAYE&PAYMENTREQUEST_0_SHIPTOSTATE=LORRAINE&PAYMENTREQUEST_0_SHIPTOZIP=54385&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677086794&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=2%2e60&L_PAYMENTREQUEST_0_DESC0=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EX5892290189205E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EX5892290189205E&PAYERID=6RLJWFJDZPWXW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.8&PAYMENTREQUEST_0_AMT=10.80&ADDROVERRIDE=1&EMAIL=muriel.ongles127%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=direzze+laurent&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677086794&PAYMENTREQUEST_0_SHIPTOSTREET=22+route+nationale&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=domevre+en+haye&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54385 -Result : TOKEN=EC%2d5EX5892290189205E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d16T07%3a44%3a19Z&CORRELATIONID=7fa6643021ce2&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1WV98348L3186802S&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d16T07%3a44%3a18Z&PAYMENTINFO_0_AMT=10%2e80&PAYMENTINFO_0_FEEAMT=0%2e62&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EX5892290189205E&PAYERID=6RLJWFJDZPWXW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=280&L_PAYMENTREQUEST_0_NAME0=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC0=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT0=2.6&L_PAYMENTREQUEST_0_QTY0=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=7.8&PAYMENTREQUEST_0_AMT=10.80&ADDROVERRIDE=1&EMAIL=muriel.ongles127%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=direzze+laurent&PAYMENTREQUEST_0_SHIPTOPHONENUM=0677086794&PAYMENTREQUEST_0_SHIPTOSTREET=22+route+nationale&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=domevre+en+haye&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54385 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=linda.l78%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=annick+charpentier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0661722677&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+explorateurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mondeville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=14120&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9CE83767DM931801N&TIMESTAMP=2016%2d07%2d16T08%3a27%3a51Z&CORRELATIONID=68ecffb1cba3e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=linda.l78%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=annick+charpentier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0661722677&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+explorateurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mondeville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=14120&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE83767DM931801N -Result : TOKEN=EC%2d9CE83767DM931801N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d16T08%3a28%3a27Z&CORRELATIONID=a4e3f40f3cf1e&ACK=Success&VERSION=106&BUILD=000000&EMAIL=linda%2el78%40live%2efr&PAYERID=QNM8TXT7YDC6N&PAYERSTATUS=verified&FIRSTNAME=linda&LASTNAME=matley&COUNTRYCODE=FR&SHIPTONAME=annick%20charpentier&SHIPTOSTREET=9%20rue%20des%20explorateurs&SHIPTOCITY=mondeville&SHIPTOZIP=14120&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0661722677&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e50&ITEMAMT=5%2e50&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_NUMBER0=168&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e50&L_DESC0=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e50&PAYMENTREQUEST_0_ITEMAMT=5%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=annick%20charpentier&PAYMENTREQUEST_0_SHIPTOSTREET=9%20rue%20des%20explorateurs&PAYMENTREQUEST_0_SHIPTOCITY=mondeville&PAYMENTREQUEST_0_SHIPTOZIP=14120&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0661722677&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e50&L_PAYMENTREQUEST_0_DESC0=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE83767DM931801N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE83767DM931801N&PAYERID=QNM8TXT7YDC6N&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=linda.l78%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=annick+charpentier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0661722677&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+explorateurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mondeville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=14120 -Result : TOKEN=EC%2d9CE83767DM931801N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d16T08%3a28%3a30Z&CORRELATIONID=43b0e2ad87347&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=324611178G7256746&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d16T08%3a28%3a29Z&PAYMENTINFO_0_AMT=11%2e50&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9CE83767DM931801N&PAYERID=QNM8TXT7YDC6N&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=168&L_PAYMENTREQUEST_0_NAME0=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC0=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT0=5.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=5.5&PAYMENTREQUEST_0_AMT=11.50&ADDROVERRIDE=1&EMAIL=linda.l78%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=annick+charpentier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0661722677&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+explorateurs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mondeville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=14120 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=257&L_PAYMENTREQUEST_0_NAME0=Huile+de+Ricin+100%25+naturelle+-+Lot+de+2&L_PAYMENTREQUEST_0_DESC0=L%27huile+de+ricin+a+des+propri%C3%A9t%C3%A9s+protectrices+sur...&L_PAYMENTREQUEST_0_AMT0=10.08&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=269&L_PAYMENTREQUEST_0_NAME1=Ensemble+Soins+au+Lait+d%27%C3%A2nesse+&L_PAYMENTREQUEST_0_DESC1=Gamme+soin+visage+%26amp%3B+corps+Mon+lait+d%27%C3%82nesse%C2%AE.E...&L_PAYMENTREQUEST_0_AMT1=29.34&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=303&L_PAYMENTREQUEST_0_NAME2=Beurre+de+Karit%C3%A9+Parfum+Fleur+des+%C3%AEles+100g&L_PAYMENTREQUEST_0_DESC2=Le+beurre+de+Karit%C3%A9%2C+l%E2%80%99indispensable+pour+nourrir+...&L_PAYMENTREQUEST_0_AMT2=8&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=313&L_PAYMENTREQUEST_0_NAME3=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC3=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT3=5.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=194&L_PAYMENTREQUEST_0_NAME4=G%C3%A9lule+Ginseng+1000+mg%2C+Tonifiant&L_PAYMENTREQUEST_0_DESC4=Experts+des+bienfaits+de+la+nature+et+des+plantes%2C...&L_PAYMENTREQUEST_0_AMT4=5.99&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=358&L_PAYMENTREQUEST_0_NAME5=Masque+Argile+jaune++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC5=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT5=1.2&L_PAYMENTREQUEST_0_QTY5=4&L_PAYMENTREQUEST_0_NUMBER6=644&L_PAYMENTREQUEST_0_NAME6=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC6=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT6=-10&L_PAYMENTREQUEST_0_QTY6=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.41&PAYMENTREQUEST_0_AMT=53.41&ADDROVERRIDE=1&EMAIL=memouna.cisse%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9mouna+Ciss%C3%A9&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651760377&PAYMENTREQUEST_0_SHIPTOSTREET=75+rue+des+couronneries&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Poitiers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=86000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4YJ45639PE274622W&TIMESTAMP=2016%2d07%2d16T11%3a37%3a17Z&CORRELATIONID=569bd5c65510c&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=257&L_PAYMENTREQUEST_0_NAME0=Huile+de+Ricin+100%25+naturelle+-+Lot+de+2&L_PAYMENTREQUEST_0_DESC0=L%27huile+de+ricin+a+des+propri%C3%A9t%C3%A9s+protectrices+sur...&L_PAYMENTREQUEST_0_AMT0=10.08&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=269&L_PAYMENTREQUEST_0_NAME1=Ensemble+Soins+au+Lait+d%27%C3%A2nesse+&L_PAYMENTREQUEST_0_DESC1=Gamme+soin+visage+%26amp%3B+corps+Mon+lait+d%27%C3%82nesse%C2%AE.E...&L_PAYMENTREQUEST_0_AMT1=29.34&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=303&L_PAYMENTREQUEST_0_NAME2=Beurre+de+Karit%C3%A9+Parfum+Fleur+des+%C3%AEles+100g&L_PAYMENTREQUEST_0_DESC2=Le+beurre+de+Karit%C3%A9%2C+l%E2%80%99indispensable+pour+nourrir+...&L_PAYMENTREQUEST_0_AMT2=8&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=313&L_PAYMENTREQUEST_0_NAME3=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC3=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT3=5.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=194&L_PAYMENTREQUEST_0_NAME4=G%C3%A9lule+Ginseng+1000+mg%2C+Tonifiant&L_PAYMENTREQUEST_0_DESC4=Experts+des+bienfaits+de+la+nature+et+des+plantes%2C...&L_PAYMENTREQUEST_0_AMT4=5.99&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=358&L_PAYMENTREQUEST_0_NAME5=Masque+Argile+jaune++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC5=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT5=1.2&L_PAYMENTREQUEST_0_QTY5=4&L_PAYMENTREQUEST_0_NUMBER6=644&L_PAYMENTREQUEST_0_NAME6=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC6=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT6=-10&L_PAYMENTREQUEST_0_QTY6=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.41&PAYMENTREQUEST_0_AMT=53.41&ADDROVERRIDE=1&EMAIL=memouna.cisse%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9mouna+Ciss%C3%A9&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651760377&PAYMENTREQUEST_0_SHIPTOSTREET=75+rue+des+couronneries&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Poitiers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=86000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4YJ45639PE274622W -Result : TOKEN=EC%2d4YJ45639PE274622W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d16T11%3a37%3a49Z&CORRELATIONID=88085ceae73ee&ACK=Success&VERSION=106&BUILD=000000&EMAIL=memouna%2ecisse%40gmail%2ecom&PAYERID=TVMSD27HYGFD4&PAYERSTATUS=verified&FIRSTNAME=M%c3%a9mouna&LASTNAME=Ciss%c3%a9&COUNTRYCODE=FR&SHIPTONAME=M%c3%a9mouna%20Ciss%c3%a9&SHIPTOSTREET=75%20rue%20des%20couronneries&SHIPTOCITY=Poitiers&SHIPTOSTATE=Poitou%2dCharentes&SHIPTOZIP=86000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0651760377&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=53%2e41&ITEMAMT=53%2e41&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Huile%20de%20Ricin%20100%25%20naturelle%20%2d%20Lot%20de%202&L_NAME1=Ensemble%20Soins%20au%20Lait%20d%27%c3%a2nesse%20&L_NAME2=Beurre%20de%20Karit%c3%a9%20Parfum%20Fleur%20des%20%c3%aeles%20100g&L_NAME3=Gommage%20Argile%20Blanche%20CATTIER%20100ml&L_NAME4=G%c3%a9lule%20Ginseng%201000%20mg%2c%20Tonifiant&L_NAME5=Masque%20Argile%20jaune%20%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_NAME6=R%c3%a9duction%20newsletter&L_NUMBER0=257&L_NUMBER1=269&L_NUMBER2=303&L_NUMBER3=313&L_NUMBER4=194&L_NUMBER5=358&L_NUMBER6=644&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=4&L_QTY6=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_TAXAMT6=0%2e00&L_AMT0=10%2e08&L_AMT1=29%2e34&L_AMT2=8%2e00&L_AMT3=5%2e20&L_AMT4=5%2e99&L_AMT5=1%2e20&L_AMT6=%2d10%2e00&L_DESC0=L%27huile%20de%20ricin%20a%20des%20propri%c3%a9t%c3%a9s%20protectrices%20sur%2e%2e%2e&L_DESC1=Gamme%20soin%20visage%20%26amp%3b%20corps%20Mon%20lait%20d%27%c3%82nesse%c2%ae%2eE%2e%2e%2e&L_DESC2=Le%20beurre%20de%20Karit%c3%a9%2c%20l%e2%80%99indispensable%20pour%20nourrir%20%2e%2e%2e&L_DESC3=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%2c%20le%20Gommage%20Argil%2e%2e%2e&L_DESC4=Experts%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%2e%2e%2e&L_DESC5=Apaisant%20et%20remin%c3%a9ralisant%2c%20le%20masque%20Argile%20Jaune%2e%2e%2e&L_DESC6=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=53%2e41&PAYMENTREQUEST_0_ITEMAMT=53%2e41&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=M%c3%a9mouna%20Ciss%c3%a9&PAYMENTREQUEST_0_SHIPTOSTREET=75%20rue%20des%20couronneries&PAYMENTREQUEST_0_SHIPTOCITY=Poitiers&PAYMENTREQUEST_0_SHIPTOSTATE=Poitou%2dCharentes&PAYMENTREQUEST_0_SHIPTOZIP=86000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651760377&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Huile%20de%20Ricin%20100%25%20naturelle%20%2d%20Lot%20de%202&L_PAYMENTREQUEST_0_NAME1=Ensemble%20Soins%20au%20Lait%20d%27%c3%a2nesse%20&L_PAYMENTREQUEST_0_NAME2=Beurre%20de%20Karit%c3%a9%20Parfum%20Fleur%20des%20%c3%aeles%20100g&L_PAYMENTREQUEST_0_NAME3=Gommage%20Argile%20Blanche%20CATTIER%20100ml&L_PAYMENTREQUEST_0_NAME4=G%c3%a9lule%20Ginseng%201000%20mg%2c%20Tonifiant&L_PAYMENTREQUEST_0_NAME5=Masque%20Argile%20jaune%20%20CATTIER%20Sachet%20unidose%2012%2c5ml&L_PAYMENTREQUEST_0_NAME6=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=257&L_PAYMENTREQUEST_0_NUMBER1=269&L_PAYMENTREQUEST_0_NUMBER2=303&L_PAYMENTREQUEST_0_NUMBER3=313&L_PAYMENTREQUEST_0_NUMBER4=194&L_PAYMENTREQUEST_0_NUMBER5=358&L_PAYMENTREQUEST_0_NUMBER6=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=4&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_TAXAMT6=0%2e00&L_PAYMENTREQUEST_0_AMT0=10%2e08&L_PAYMENTREQUEST_0_AMT1=29%2e34&L_PAYMENTREQUEST_0_AMT2=8%2e00&L_PAYMENTREQUEST_0_AMT3=5%2e20&L_PAYMENTREQUEST_0_AMT4=5%2e99&L_PAYMENTREQUEST_0_AMT5=1%2e20&L_PAYMENTREQUEST_0_AMT6=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=L%27huile%20de%20ricin%20a%20des%20propri%c3%a9t%c3%a9s%20protectrices%20sur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Gamme%20soin%20visage%20%26amp%3b%20corps%20Mon%20lait%20d%27%c3%82nesse%c2%ae%2eE%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20beurre%20de%20Karit%c3%a9%2c%20l%e2%80%99indispensable%20pour%20nourrir%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Adapt%c3%a9%20%c3%a0%20tous%20les%20types%20de%20peaux%2c%20le%20Gommage%20Argil%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Experts%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Apaisant%20et%20remin%c3%a9ralisant%2c%20le%20masque%20Argile%20Jaune%2e%2e%2e&L_PAYMENTREQUEST_0_DESC6=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4YJ45639PE274622W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4YJ45639PE274622W&PAYERID=TVMSD27HYGFD4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=257&L_PAYMENTREQUEST_0_NAME0=Huile+de+Ricin+100%25+naturelle+-+Lot+de+2&L_PAYMENTREQUEST_0_DESC0=L%27huile+de+ricin+a+des+propri%C3%A9t%C3%A9s+protectrices+sur...&L_PAYMENTREQUEST_0_AMT0=10.08&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=269&L_PAYMENTREQUEST_0_NAME1=Ensemble+Soins+au+Lait+d%27%C3%A2nesse+&L_PAYMENTREQUEST_0_DESC1=Gamme+soin+visage+%26amp%3B+corps+Mon+lait+d%27%C3%82nesse%C2%AE.E...&L_PAYMENTREQUEST_0_AMT1=29.34&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=303&L_PAYMENTREQUEST_0_NAME2=Beurre+de+Karit%C3%A9+Parfum+Fleur+des+%C3%AEles+100g&L_PAYMENTREQUEST_0_DESC2=Le+beurre+de+Karit%C3%A9%2C+l%E2%80%99indispensable+pour+nourrir+...&L_PAYMENTREQUEST_0_AMT2=8&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=313&L_PAYMENTREQUEST_0_NAME3=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC3=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT3=5.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=194&L_PAYMENTREQUEST_0_NAME4=G%C3%A9lule+Ginseng+1000+mg%2C+Tonifiant&L_PAYMENTREQUEST_0_DESC4=Experts+des+bienfaits+de+la+nature+et+des+plantes%2C...&L_PAYMENTREQUEST_0_AMT4=5.99&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=358&L_PAYMENTREQUEST_0_NAME5=Masque+Argile+jaune++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC5=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT5=1.2&L_PAYMENTREQUEST_0_QTY5=4&L_PAYMENTREQUEST_0_NUMBER6=644&L_PAYMENTREQUEST_0_NAME6=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC6=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT6=-10&L_PAYMENTREQUEST_0_QTY6=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.41&PAYMENTREQUEST_0_AMT=53.41&ADDROVERRIDE=1&EMAIL=memouna.cisse%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9mouna+Ciss%C3%A9&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651760377&PAYMENTREQUEST_0_SHIPTOSTREET=75+rue+des+couronneries&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Poitiers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=86000 -Result : TOKEN=EC%2d4YJ45639PE274622W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d16T11%3a37%3a51Z&CORRELATIONID=28d1709f1cb1e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9E388403U3931674B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d16T11%3a37%3a50Z&PAYMENTINFO_0_AMT=53%2e41&PAYMENTINFO_0_FEEAMT=2%2e07&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4YJ45639PE274622W&PAYERID=TVMSD27HYGFD4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=257&L_PAYMENTREQUEST_0_NAME0=Huile+de+Ricin+100%25+naturelle+-+Lot+de+2&L_PAYMENTREQUEST_0_DESC0=L%27huile+de+ricin+a+des+propri%C3%A9t%C3%A9s+protectrices+sur...&L_PAYMENTREQUEST_0_AMT0=10.08&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=269&L_PAYMENTREQUEST_0_NAME1=Ensemble+Soins+au+Lait+d%27%C3%A2nesse+&L_PAYMENTREQUEST_0_DESC1=Gamme+soin+visage+%26amp%3B+corps+Mon+lait+d%27%C3%82nesse%C2%AE.E...&L_PAYMENTREQUEST_0_AMT1=29.34&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=303&L_PAYMENTREQUEST_0_NAME2=Beurre+de+Karit%C3%A9+Parfum+Fleur+des+%C3%AEles+100g&L_PAYMENTREQUEST_0_DESC2=Le+beurre+de+Karit%C3%A9%2C+l%E2%80%99indispensable+pour+nourrir+...&L_PAYMENTREQUEST_0_AMT2=8&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=313&L_PAYMENTREQUEST_0_NAME3=Gommage+Argile+Blanche+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC3=Adapt%C3%A9+%C3%A0+tous+les+types+de+peaux%2C+le+Gommage+Argil...&L_PAYMENTREQUEST_0_AMT3=5.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=194&L_PAYMENTREQUEST_0_NAME4=G%C3%A9lule+Ginseng+1000+mg%2C+Tonifiant&L_PAYMENTREQUEST_0_DESC4=Experts+des+bienfaits+de+la+nature+et+des+plantes%2C...&L_PAYMENTREQUEST_0_AMT4=5.99&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=358&L_PAYMENTREQUEST_0_NAME5=Masque+Argile+jaune++CATTIER+Sachet+unidose+12%2C5ml&L_PAYMENTREQUEST_0_DESC5=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT5=1.2&L_PAYMENTREQUEST_0_QTY5=4&L_PAYMENTREQUEST_0_NUMBER6=644&L_PAYMENTREQUEST_0_NAME6=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC6=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT6=-10&L_PAYMENTREQUEST_0_QTY6=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.41&PAYMENTREQUEST_0_AMT=53.41&ADDROVERRIDE=1&EMAIL=memouna.cisse%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=M%C3%A9mouna+Ciss%C3%A9&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651760377&PAYMENTREQUEST_0_SHIPTOSTREET=75+rue+des+couronneries&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Poitiers&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=86000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=216&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+alimentaires+x10&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ges+%C3%A0+mites+%C3%A0+disposer+dans+les+placards+alimen...&L_PAYMENTREQUEST_0_AMT0=34.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=94&L_PAYMENTREQUEST_0_NAME1=Lotion+micellaire+nettoyante+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=7.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=57&L_PAYMENTREQUEST_0_NAME2=Liquide+vaisselle+maison+%C3%A9cologique-++Pamplemousse+750ml&L_PAYMENTREQUEST_0_DESC2=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Pamplemousse%C2%A0c...&L_PAYMENTREQUEST_0_AMT2=2.42&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=332&L_PAYMENTREQUEST_0_NAME3=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC3=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT3=3.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=294&L_PAYMENTREQUEST_0_NAME4=Gel%C3%A9e+Royale+1000g+%2B+Vitamine+C+Bio&L_PAYMENTREQUEST_0_DESC4=Vous+souhaitez+renforcer+votre+immunit%C3%A9+de+fa%C3%A7on+n...&L_PAYMENTREQUEST_0_AMT4=5.7&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.12&PAYMENTREQUEST_0_AMT=54.12&ADDROVERRIDE=1&EMAIL=mathier%40mls.nc&PAYMENTREQUEST_0_SHIPTONAME=Martine+FOLCHER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0627937483&PAYMENTREQUEST_0_SHIPTOSTREET=Apt+361+B%C3%A2t+C&PAYMENTREQUEST_0_SHIPTOSTREET2=2+bis+rue+Chamayou&PAYMENTREQUEST_0_SHIPTOCITY=MONTPELLIER&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34090&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7MY44136YW6547829&TIMESTAMP=2016%2d07%2d16T12%3a11%3a51Z&CORRELATIONID=836c1cae7a8ca&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=216&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+alimentaires+x10&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ges+%C3%A0+mites+%C3%A0+disposer+dans+les+placards+alimen...&L_PAYMENTREQUEST_0_AMT0=34.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=94&L_PAYMENTREQUEST_0_NAME1=Lotion+micellaire+nettoyante+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=7.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=57&L_PAYMENTREQUEST_0_NAME2=Liquide+vaisselle+maison+%C3%A9cologique-++Pamplemousse+750ml&L_PAYMENTREQUEST_0_DESC2=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Pamplemousse%C2%A0c...&L_PAYMENTREQUEST_0_AMT2=2.42&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=332&L_PAYMENTREQUEST_0_NAME3=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC3=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT3=3.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=294&L_PAYMENTREQUEST_0_NAME4=Gel%C3%A9e+Royale+1000g+%2B+Vitamine+C+Bio&L_PAYMENTREQUEST_0_DESC4=Vous+souhaitez+renforcer+votre+immunit%C3%A9+de+fa%C3%A7on+n...&L_PAYMENTREQUEST_0_AMT4=5.7&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.12&PAYMENTREQUEST_0_AMT=54.12&ADDROVERRIDE=1&EMAIL=mathier%40mls.nc&PAYMENTREQUEST_0_SHIPTONAME=Martine+FOLCHER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0627937483&PAYMENTREQUEST_0_SHIPTOSTREET=Apt+361+B%C3%A2t+C&PAYMENTREQUEST_0_SHIPTOSTREET2=2+bis+rue+Chamayou&PAYMENTREQUEST_0_SHIPTOCITY=MONTPELLIER&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34090&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MY44136YW6547829 -Result : TOKEN=EC%2d7MY44136YW6547829&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d16T12%3a12%3a17Z&CORRELATIONID=7b67e17927caf&ACK=Success&VERSION=106&BUILD=000000&EMAIL=mathier%40mls%2enc&PAYERID=TGHCRM9GLHS7S&PAYERSTATUS=verified&FIRSTNAME=Martine&LASTNAME=FOLCHER&COUNTRYCODE=NC&SHIPTONAME=Martine%20FOLCHER&SHIPTOSTREET=Apt%20361%20B%c3%a2t%20C&SHIPTOSTREET2=2%20bis%20rue%20Chamayou&SHIPTOCITY=MONTPELLIER&SHIPTOZIP=34090&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0627937483&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=54%2e12&ITEMAMT=54%2e12&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pi%c3%a8ge%20%c3%a0%20mites%20alimentaires%20x10&L_NAME1=Lotion%20micellaire%20nettoyante%20Hydra%20Aloe%20vera%20bio&L_NAME2=Liquide%20vaisselle%20maison%20%c3%a9cologique%2d%20%20Pamplemousse%20750ml&L_NAME3=Soin%20des%20l%c3%a8vres%20%2d%20stick%204g&L_NAME4=Gel%c3%a9e%20Royale%201000g%20%2b%20Vitamine%20C%20Bio&L_NUMBER0=216&L_NUMBER1=94&L_NUMBER2=57&L_NUMBER3=332&L_NUMBER4=294&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=34%2e90&L_AMT1=7%2e90&L_AMT2=2%2e42&L_AMT3=3%2e20&L_AMT4=5%2e70&L_DESC0=Pi%c3%a8ges%20%c3%a0%20mites%20%c3%a0%20disposer%20dans%20les%20placards%20alimen%2e%2e%2e&L_DESC1=SO%27BiO%20%c3%a9tic%c2%ae%20a%20s%c3%a9lectionn%c3%a9%20le%20meilleur%20de%20l%27aloe%20v%2e%2e%2e&L_DESC2=Liquide%20vaisselle%20maison%20%c3%a9cologique%c2%a0Pamplemousse%c2%a0c%2e%2e%2e&L_DESC3=Un%20stick%20%c3%a0%20l%c3%a8vres%20qui%20r%c3%a9pare%2c%20nourrit%20et%20prot%c3%a8ge%20p%2e%2e%2e&L_DESC4=Vous%20souhaitez%20renforcer%20votre%20immunit%c3%a9%20de%20fa%c3%a7on%20n%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=54%2e12&PAYMENTREQUEST_0_ITEMAMT=54%2e12&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Martine%20FOLCHER&PAYMENTREQUEST_0_SHIPTOSTREET=Apt%20361%20B%c3%a2t%20C&PAYMENTREQUEST_0_SHIPTOSTREET2=2%20bis%20rue%20Chamayou&PAYMENTREQUEST_0_SHIPTOCITY=MONTPELLIER&PAYMENTREQUEST_0_SHIPTOZIP=34090&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0627937483&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pi%c3%a8ge%20%c3%a0%20mites%20alimentaires%20x10&L_PAYMENTREQUEST_0_NAME1=Lotion%20micellaire%20nettoyante%20Hydra%20Aloe%20vera%20bio&L_PAYMENTREQUEST_0_NAME2=Liquide%20vaisselle%20maison%20%c3%a9cologique%2d%20%20Pamplemousse%20750ml&L_PAYMENTREQUEST_0_NAME3=Soin%20des%20l%c3%a8vres%20%2d%20stick%204g&L_PAYMENTREQUEST_0_NAME4=Gel%c3%a9e%20Royale%201000g%20%2b%20Vitamine%20C%20Bio&L_PAYMENTREQUEST_0_NUMBER0=216&L_PAYMENTREQUEST_0_NUMBER1=94&L_PAYMENTREQUEST_0_NUMBER2=57&L_PAYMENTREQUEST_0_NUMBER3=332&L_PAYMENTREQUEST_0_NUMBER4=294&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=34%2e90&L_PAYMENTREQUEST_0_AMT1=7%2e90&L_PAYMENTREQUEST_0_AMT2=2%2e42&L_PAYMENTREQUEST_0_AMT3=3%2e20&L_PAYMENTREQUEST_0_AMT4=5%2e70&L_PAYMENTREQUEST_0_DESC0=Pi%c3%a8ges%20%c3%a0%20mites%20%c3%a0%20disposer%20dans%20les%20placards%20alimen%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=SO%27BiO%20%c3%a9tic%c2%ae%20a%20s%c3%a9lectionn%c3%a9%20le%20meilleur%20de%20l%27aloe%20v%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Liquide%20vaisselle%20maison%20%c3%a9cologique%c2%a0Pamplemousse%c2%a0c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Un%20stick%20%c3%a0%20l%c3%a8vres%20qui%20r%c3%a9pare%2c%20nourrit%20et%20prot%c3%a8ge%20p%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Vous%20souhaitez%20renforcer%20votre%20immunit%c3%a9%20de%20fa%c3%a7on%20n%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MY44136YW6547829 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MY44136YW6547829&PAYERID=TGHCRM9GLHS7S&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=216&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+alimentaires+x10&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ges+%C3%A0+mites+%C3%A0+disposer+dans+les+placards+alimen...&L_PAYMENTREQUEST_0_AMT0=34.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=94&L_PAYMENTREQUEST_0_NAME1=Lotion+micellaire+nettoyante+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=7.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=57&L_PAYMENTREQUEST_0_NAME2=Liquide+vaisselle+maison+%C3%A9cologique-++Pamplemousse+750ml&L_PAYMENTREQUEST_0_DESC2=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Pamplemousse%C2%A0c...&L_PAYMENTREQUEST_0_AMT2=2.42&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=332&L_PAYMENTREQUEST_0_NAME3=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC3=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT3=3.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=294&L_PAYMENTREQUEST_0_NAME4=Gel%C3%A9e+Royale+1000g+%2B+Vitamine+C+Bio&L_PAYMENTREQUEST_0_DESC4=Vous+souhaitez+renforcer+votre+immunit%C3%A9+de+fa%C3%A7on+n...&L_PAYMENTREQUEST_0_AMT4=5.7&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.12&PAYMENTREQUEST_0_AMT=54.12&ADDROVERRIDE=1&EMAIL=mathier%40mls.nc&PAYMENTREQUEST_0_SHIPTONAME=Martine+FOLCHER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0627937483&PAYMENTREQUEST_0_SHIPTOSTREET=Apt+361+B%C3%A2t+C&PAYMENTREQUEST_0_SHIPTOSTREET2=2+bis+rue+Chamayou&PAYMENTREQUEST_0_SHIPTOCITY=MONTPELLIER&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34090 -Result : TOKEN=EC%2d7MY44136YW6547829&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d16T12%3a12%3a20Z&CORRELATIONID=e906c2714de01&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3PF052686M214582S&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d16T12%3a12%3a18Z&PAYMENTINFO_0_AMT=54%2e12&PAYMENTINFO_0_FEEAMT=3%2e06&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7MY44136YW6547829&PAYERID=TGHCRM9GLHS7S&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=216&L_PAYMENTREQUEST_0_NAME0=Pi%C3%A8ge+%C3%A0+mites+alimentaires+x10&L_PAYMENTREQUEST_0_DESC0=Pi%C3%A8ges+%C3%A0+mites+%C3%A0+disposer+dans+les+placards+alimen...&L_PAYMENTREQUEST_0_AMT0=34.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=94&L_PAYMENTREQUEST_0_NAME1=Lotion+micellaire+nettoyante+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC1=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT1=7.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=57&L_PAYMENTREQUEST_0_NAME2=Liquide+vaisselle+maison+%C3%A9cologique-++Pamplemousse+750ml&L_PAYMENTREQUEST_0_DESC2=Liquide+vaisselle+maison+%C3%A9cologique%C2%A0Pamplemousse%C2%A0c...&L_PAYMENTREQUEST_0_AMT2=2.42&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=332&L_PAYMENTREQUEST_0_NAME3=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC3=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT3=3.2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=294&L_PAYMENTREQUEST_0_NAME4=Gel%C3%A9e+Royale+1000g+%2B+Vitamine+C+Bio&L_PAYMENTREQUEST_0_DESC4=Vous+souhaitez+renforcer+votre+immunit%C3%A9+de+fa%C3%A7on+n...&L_PAYMENTREQUEST_0_AMT4=5.7&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.12&PAYMENTREQUEST_0_AMT=54.12&ADDROVERRIDE=1&EMAIL=mathier%40mls.nc&PAYMENTREQUEST_0_SHIPTONAME=Martine+FOLCHER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0627937483&PAYMENTREQUEST_0_SHIPTOSTREET=Apt+361+B%C3%A2t+C&PAYMENTREQUEST_0_SHIPTOSTREET2=2+bis+rue+Chamayou&PAYMENTREQUEST_0_SHIPTOCITY=MONTPELLIER&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34090 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=159&L_PAYMENTREQUEST_0_NAME0=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT0=11.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.2&PAYMENTREQUEST_0_AMT=14.20&ADDROVERRIDE=1&EMAIL=laurentocl%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=laurent+auclerc&PAYMENTREQUEST_0_SHIPTOPHONENUM=0771667700&PAYMENTREQUEST_0_SHIPTOSTREET=49+avenue+de+la+republique-Batiment+C+-+Residence+LA+CLOSERIE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Combs-la-Ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77380&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4SL803389K790831X&TIMESTAMP=2016%2d07%2d16T21%3a36%3a26Z&CORRELATIONID=70a65d9b2ce73&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=159&L_PAYMENTREQUEST_0_NAME0=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT0=11.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.2&PAYMENTREQUEST_0_AMT=14.20&ADDROVERRIDE=1&EMAIL=laurentocl%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=laurent+auclerc&PAYMENTREQUEST_0_SHIPTOPHONENUM=0771667700&PAYMENTREQUEST_0_SHIPTOSTREET=49+avenue+de+la+republique-Batiment+C+-+Residence+LA+CLOSERIE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Combs-la-Ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77380&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=39.8&PAYMENTREQUEST_0_AMT=45.80&ADDROVERRIDE=1&EMAIL=sdutas%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Jordan++Marconot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0669449058&PAYMENTREQUEST_0_SHIPTOSTREET=20+avenue+charles+de+gaulle+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Morteau&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=25500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d49V34851WA097124B&TIMESTAMP=2016%2d07%2d17T01%3a23%3a51Z&CORRELATIONID=a7123d24ba2de&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=39.8&PAYMENTREQUEST_0_AMT=45.80&ADDROVERRIDE=1&EMAIL=sdutas%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Jordan++Marconot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0669449058&PAYMENTREQUEST_0_SHIPTOSTREET=20+avenue+charles+de+gaulle+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Morteau&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=25500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49V34851WA097124B -Result : TOKEN=EC%2d49V34851WA097124B&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d17T01%3a24%3a27Z&CORRELATIONID=2d251a6cb5359&ACK=Success&VERSION=106&BUILD=000000&EMAIL=sdutas%40yahoo%2efr&PAYERID=94DB85QZAQLPA&PAYERSTATUS=verified&FIRSTNAME=samuel&LASTNAME=dutas&COUNTRYCODE=FR&SHIPTONAME=Jordan%20%20Marconot&SHIPTOSTREET=20%20avenue%20charles%20de%20gaulle&SHIPTOCITY=Morteau&SHIPTOZIP=25500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0669449058&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=45%2e80&ITEMAMT=39%2e80&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Oiseaux&L_NUMBER0=224&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=45%2e80&PAYMENTREQUEST_0_ITEMAMT=39%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Jordan%20%20Marconot&PAYMENTREQUEST_0_SHIPTOSTREET=20%20avenue%20charles%20de%20gaulle&PAYMENTREQUEST_0_SHIPTOCITY=Morteau&PAYMENTREQUEST_0_SHIPTOZIP=25500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0669449058&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Oiseaux&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20oiseaux%20des%20balcons%2c%20terra%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49V34851WA097124B - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49V34851WA097124B&PAYERID=94DB85QZAQLPA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=39.8&PAYMENTREQUEST_0_AMT=45.80&ADDROVERRIDE=1&EMAIL=sdutas%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Jordan++Marconot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0669449058&PAYMENTREQUEST_0_SHIPTOSTREET=20+avenue+charles+de+gaulle+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Morteau&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=25500 -Result : TOKEN=EC%2d49V34851WA097124B&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d17T01%3a24%3a30Z&CORRELATIONID=146c69a8cc19a&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3EM75538WY771764D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d17T01%3a24%3a29Z&PAYMENTINFO_0_AMT=45%2e80&PAYMENTINFO_0_FEEAMT=1%2e81&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-49V34851WA097124B&PAYERID=94DB85QZAQLPA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=224&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Oiseaux&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+oiseaux+des+balcons%2C+terra...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=39.8&PAYMENTREQUEST_0_AMT=45.80&ADDROVERRIDE=1&EMAIL=sdutas%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Jordan++Marconot&PAYMENTREQUEST_0_SHIPTOPHONENUM=0669449058&PAYMENTREQUEST_0_SHIPTOSTREET=20+avenue+charles+de+gaulle+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Morteau&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=25500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=91&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+l%C3%A9g%C3%A8re+hydratante+24h+Jour+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC0=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=282&L_PAYMENTREQUEST_0_NAME1=Shampoing+soin+r%C3%A9paration+c%C3%A9ramides+d%27argan+et+beurre+de+karit%C3%A9&L_PAYMENTREQUEST_0_DESC1=Le+shampooing+soin+R%C3%89PARATION+est+adapt%C3%A9+aux+cheve...&L_PAYMENTREQUEST_0_AMT1=4.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=137&L_PAYMENTREQUEST_0_NAME3=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC3=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT3=5.04&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.79&PAYMENTREQUEST_0_AMT=36.79&ADDROVERRIDE=1&EMAIL=abidsarah2003%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sarah+Abid&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612304858&PAYMENTREQUEST_0_SHIPTOSTREET=80+rue+de+Stockholm+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=La+queue+en+brie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94510&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8N951124UB0958733&TIMESTAMP=2016%2d07%2d17T08%3a13%3a53Z&CORRELATIONID=c440b07c3aeeb&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=91&L_PAYMENTREQUEST_0_NAME0=Cr%C3%A8me+l%C3%A9g%C3%A8re+hydratante+24h+Jour+Hydra+Aloe+vera+bio&L_PAYMENTREQUEST_0_DESC0=SO%27BiO+%C3%A9tic%C2%AE+a+s%C3%A9lectionn%C3%A9+le+meilleur+de+l%27aloe+v...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=282&L_PAYMENTREQUEST_0_NAME1=Shampoing+soin+r%C3%A9paration+c%C3%A9ramides+d%27argan+et+beurre+de+karit%C3%A9&L_PAYMENTREQUEST_0_DESC1=Le+shampooing+soin+R%C3%89PARATION+est+adapt%C3%A9+aux+cheve...&L_PAYMENTREQUEST_0_AMT1=4.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=137&L_PAYMENTREQUEST_0_NAME3=Crayon+yeux+tenue+intense+-+01+Noir+intense&L_PAYMENTREQUEST_0_DESC3=%C2%A0Le+crayon+contour+de+yeux+noir+intense+SO%27BiO+%C3%A9ti...&L_PAYMENTREQUEST_0_AMT3=5.04&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=30.79&PAYMENTREQUEST_0_AMT=36.79&ADDROVERRIDE=1&EMAIL=abidsarah2003%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sarah+Abid&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612304858&PAYMENTREQUEST_0_SHIPTOSTREET=80+rue+de+Stockholm+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=La+queue+en+brie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94510&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=marielouisemichel2165%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=Marie+louise+MICHEL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0472392674&PAYMENTREQUEST_0_SHIPTOSTREET=34+CHEMIN+DES+CELESTINS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=OULLINS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4UL70102HL5277352&TIMESTAMP=2016%2d07%2d17T10%3a14%3a34Z&CORRELATIONID=8a2a8e07e5d58&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=marielouisemichel2165%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=Marie+louise+MICHEL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0472392674&PAYMENTREQUEST_0_SHIPTOSTREET=34+CHEMIN+DES+CELESTINS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=OULLINS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4UL70102HL5277352 -Result : TOKEN=EC%2d4UL70102HL5277352&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d17T10%3a15%3a54Z&CORRELATIONID=b3adee99da399&ACK=Success&VERSION=106&BUILD=000000&EMAIL=marielouisemichel2165%40neuf%2efr&PAYERID=MF3YBSF882EUY&PAYERSTATUS=verified&FIRSTNAME=Marie%2dLouise&LASTNAME=MICHEL&COUNTRYCODE=FR&SHIPTONAME=MARIE%20LOUISE%20MICHEL&SHIPTOSTREET=34%20CHEMIN%20DES%20CELESTINS&SHIPTOCITY=OULLINS&SHIPTOSTATE=69&SHIPTOZIP=69600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0472392674&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=23%2e95&ITEMAMT=17%2e95&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_NUMBER0=222&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=17%2e95&L_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=23%2e95&PAYMENTREQUEST_0_ITEMAMT=17%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=MARIE%20LOUISE%20MICHEL&PAYMENTREQUEST_0_SHIPTOSTREET=34%20CHEMIN%20DES%20CELESTINS&PAYMENTREQUEST_0_SHIPTOCITY=OULLINS&PAYMENTREQUEST_0_SHIPTOSTATE=69&PAYMENTREQUEST_0_SHIPTOZIP=69600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0472392674&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e95&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4UL70102HL5277352 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4UL70102HL5277352&PAYERID=MF3YBSF882EUY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=marielouisemichel2165%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=Marie+louise+MICHEL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0472392674&PAYMENTREQUEST_0_SHIPTOSTREET=34+CHEMIN+DES+CELESTINS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=OULLINS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69600 -Result : TOKEN=EC%2d4UL70102HL5277352&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d17T10%3a15%3a57Z&CORRELATIONID=3928694ea6a9&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7SN41736ND016700P&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d17T10%3a15%3a55Z&PAYMENTINFO_0_AMT=23%2e95&PAYMENTINFO_0_FEEAMT=1%2e06&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4UL70102HL5277352&PAYERID=MF3YBSF882EUY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.95&PAYMENTREQUEST_0_AMT=23.95&ADDROVERRIDE=1&EMAIL=marielouisemichel2165%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=Marie+louise+MICHEL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0472392674&PAYMENTREQUEST_0_SHIPTOSTREET=34+CHEMIN+DES+CELESTINS&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=OULLINS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=243&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC0=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT0=30.18&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.18&PAYMENTREQUEST_0_AMT=26.23&ADDROVERRIDE=1&EMAIL=jn751066%40scarlet.be&PAYMENTREQUEST_0_SHIPTONAME=Jean-Michel+NION&PAYMENTREQUEST_0_SHIPTOPHONENUM=0476731357&PAYMENTREQUEST_0_SHIPTOSTREET=rue+D%C3%A9sir%C3%A9+Blondiau+72&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SIRAULT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7332&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d308057721M510322V&TIMESTAMP=2016%2d07%2d17T14%3a12%3a25Z&CORRELATIONID=c464339f957c0&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=243&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC0=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT0=30.18&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.18&PAYMENTREQUEST_0_AMT=26.23&ADDROVERRIDE=1&EMAIL=jn751066%40scarlet.be&PAYMENTREQUEST_0_SHIPTONAME=Jean-Michel+NION&PAYMENTREQUEST_0_SHIPTOPHONENUM=0476731357&PAYMENTREQUEST_0_SHIPTOSTREET=rue+D%C3%A9sir%C3%A9+Blondiau+72&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SIRAULT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7332&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-308057721M510322V -Result : TOKEN=EC%2d308057721M510322V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d17T14%3a12%3a43Z&CORRELATIONID=e58ddd66e0130&ACK=Success&VERSION=106&BUILD=000000&EMAIL=jn751066%40scarlet%2ebe&PAYERID=HRAPGAFWX8K9J&PAYERSTATUS=verified&FIRSTNAME=Jean%2dMichel&LASTNAME=NION&COUNTRYCODE=BE&SHIPTONAME=%20Jean%2dMichel%20%20NION&SHIPTOSTREET=Rue%20D%c3%a9sir%c3%a9%20Blondiau%2072&SHIPTOCITY=SIRAULT&SHIPTOSTATE=BE&SHIPTOZIP=7332&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0476731357&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e23&ITEMAMT=20%2e18&SHIPPINGAMT=6%2e05&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%2dtache%20pour%20marbre%20et%20mat%c3%a9riaux%20peu%20poreux%2d%20ProtectGuard%20MG%20Eco%20750ml&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=243&L_NUMBER1=644&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=30%2e18&L_AMT1=%2d10%2e00&L_DESC0=Stop%20aux%20taches%20sur%20marbre%20et%20granit%20%21L%27imperm%c3%a9abi%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e23&PAYMENTREQUEST_0_ITEMAMT=20%2e18&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e05&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Jean%2dMichel%20%20NION&PAYMENTREQUEST_0_SHIPTOSTREET=Rue%20D%c3%a9sir%c3%a9%20Blondiau%2072&PAYMENTREQUEST_0_SHIPTOCITY=SIRAULT&PAYMENTREQUEST_0_SHIPTOSTATE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7332&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0476731357&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%2dtache%20pour%20marbre%20et%20mat%c3%a9riaux%20peu%20poreux%2d%20ProtectGuard%20MG%20Eco%20750ml&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=243&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=30%2e18&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20taches%20sur%20marbre%20et%20granit%20%21L%27imperm%c3%a9abi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-308057721M510322V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-308057721M510322V&PAYERID=HRAPGAFWX8K9J&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=243&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC0=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT0=30.18&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.18&PAYMENTREQUEST_0_AMT=26.23&ADDROVERRIDE=1&EMAIL=jn751066%40scarlet.be&PAYMENTREQUEST_0_SHIPTONAME=Jean-Michel+NION&PAYMENTREQUEST_0_SHIPTOPHONENUM=0476731357&PAYMENTREQUEST_0_SHIPTOSTREET=rue+D%C3%A9sir%C3%A9+Blondiau+72&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SIRAULT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7332 -Result : TOKEN=EC%2d308057721M510322V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d17T14%3a12%3a45Z&CORRELATIONID=a3fc20af131f8&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1HP60199RA7391439&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d17T14%3a12%3a44Z&PAYMENTINFO_0_AMT=26%2e23&PAYMENTINFO_0_FEEAMT=1%2e14&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-308057721M510322V&PAYERID=HRAPGAFWX8K9J&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=243&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti-tache+pour+marbre+et+mat%C3%A9riaux+peu+poreux-+ProtectGuard+MG+Eco+750ml&L_PAYMENTREQUEST_0_DESC0=Stop+aux+taches+sur+marbre+et+granit+%21L%27imperm%C3%A9abi...&L_PAYMENTREQUEST_0_AMT0=30.18&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.18&PAYMENTREQUEST_0_AMT=26.23&ADDROVERRIDE=1&EMAIL=jn751066%40scarlet.be&PAYMENTREQUEST_0_SHIPTONAME=Jean-Michel+NION&PAYMENTREQUEST_0_SHIPTOPHONENUM=0476731357&PAYMENTREQUEST_0_SHIPTOSTREET=rue+D%C3%A9sir%C3%A9+Blondiau+72&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SIRAULT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7332 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.1&PAYMENTREQUEST_0_AMT=53.10&ADDROVERRIDE=1&EMAIL=bnacibi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Benedicte++Nacibi+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615098358&PAYMENTREQUEST_0_SHIPTOSTREET=45+rue+Henri+Barbusse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villepinte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93420&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2KA55759P3199521F&TIMESTAMP=2016%2d07%2d17T20%3a08%3a06Z&CORRELATIONID=79bb53899c067&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.1&PAYMENTREQUEST_0_AMT=53.10&ADDROVERRIDE=1&EMAIL=bnacibi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Benedicte++Nacibi+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615098358&PAYMENTREQUEST_0_SHIPTOSTREET=45+rue+Henri+Barbusse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villepinte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93420&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2KA55759P3199521F -Result : TOKEN=EC%2d2KA55759P3199521F&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d17T20%3a11%3a25Z&CORRELATIONID=2604f67e4ebac&ACK=Success&VERSION=106&BUILD=000000&EMAIL=bnacibi%40orange%2efr&PAYERID=FKHFU857PLHDU&PAYERSTATUS=verified&FIRSTNAME=B%c3%a9n%c3%a9dicte&LASTNAME=NACIBI&COUNTRYCODE=FR&SHIPTONAME=benedicte%20nacibi&SHIPTOSTREET=45%20rue%20Henri%20Barbusse%20&SHIPTOCITY=Villepinte%20&SHIPTOZIP=93420&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0615098358&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=53%2e10&ITEMAMT=53%2e10&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_NUMBER0=14&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=53%2e10&L_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=53%2e10&PAYMENTREQUEST_0_ITEMAMT=53%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=benedicte%20nacibi&PAYMENTREQUEST_0_SHIPTOSTREET=45%20rue%20Henri%20Barbusse%20&PAYMENTREQUEST_0_SHIPTOCITY=Villepinte%20&PAYMENTREQUEST_0_SHIPTOZIP=93420&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615098358&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20et%20nettoyant%20sols%2c%20murs%2c%20terrasses%20encrass%c3%a9es%20%2d%20D%c3%a9cap%27Sols%20Guard%c2%ae%20Ecologique%205L&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=53%2e10&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21D%c3%a9capant%2c%20ne%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2KA55759P3199521F - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2KA55759P3199521F&PAYERID=FKHFU857PLHDU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.1&PAYMENTREQUEST_0_AMT=53.10&ADDROVERRIDE=1&EMAIL=bnacibi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Benedicte++Nacibi+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615098358&PAYMENTREQUEST_0_SHIPTOSTREET=45+rue+Henri+Barbusse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villepinte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93420 -Result : TOKEN=EC%2d2KA55759P3199521F&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d17T20%3a11%3a29Z&CORRELATIONID=4897db5d80a87&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3SU56114B4576230F&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d17T20%3a11%3a27Z&PAYMENTINFO_0_AMT=53%2e10&PAYMENTINFO_0_FEEAMT=2%2e06&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2KA55759P3199521F&PAYERID=FKHFU857PLHDU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=14&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+et+nettoyant+sols%2C+murs%2C+terrasses+encrass%C3%A9es+-+D%C3%A9cap%27Sols+Guard%C2%AE+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+sols+impossibles+%C3%A0+nettoyer+%21D%C3%A9capant%2C+ne...&L_PAYMENTREQUEST_0_AMT0=53.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.1&PAYMENTREQUEST_0_AMT=53.10&ADDROVERRIDE=1&EMAIL=bnacibi%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Benedicte++Nacibi+&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615098358&PAYMENTREQUEST_0_SHIPTOSTREET=45+rue+Henri+Barbusse&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villepinte+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93420 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=203&L_PAYMENTREQUEST_0_NAME0=Gel+anti-fourmis+sous+forme+liquide+-+flacon+de+26g&L_PAYMENTREQUEST_0_DESC0=Gel+anti-fourmis%C2%A0sous+forme+de+cartouche.Id%C3%A9al+pou...&L_PAYMENTREQUEST_0_AMT0=15.7&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.7&PAYMENTREQUEST_0_AMT=18.70&ADDROVERRIDE=1&EMAIL=pikrfr%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Raphael+Pik&PAYMENTREQUEST_0_SHIPTOPHONENUM=09+50+05+67+02&PAYMENTREQUEST_0_SHIPTOSTREET=1+impasse+eugene+delacroix&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Creteil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1BP82814UA241360W&TIMESTAMP=2016%2d07%2d18T06%3a06%3a49Z&CORRELATIONID=e070c68c1163f&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=203&L_PAYMENTREQUEST_0_NAME0=Gel+anti-fourmis+sous+forme+liquide+-+flacon+de+26g&L_PAYMENTREQUEST_0_DESC0=Gel+anti-fourmis%C2%A0sous+forme+de+cartouche.Id%C3%A9al+pou...&L_PAYMENTREQUEST_0_AMT0=15.7&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.7&PAYMENTREQUEST_0_AMT=18.70&ADDROVERRIDE=1&EMAIL=pikrfr%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Raphael+Pik&PAYMENTREQUEST_0_SHIPTOPHONENUM=09+50+05+67+02&PAYMENTREQUEST_0_SHIPTOSTREET=1+impasse+eugene+delacroix&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Creteil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1BP82814UA241360W -Result : TOKEN=EC%2d1BP82814UA241360W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d18T06%3a07%3a53Z&CORRELATIONID=4951a168ed9b7&ACK=Success&VERSION=106&BUILD=000000&EMAIL=rafinehami%40gmail%2ecom&PAYERID=PJVX8BT4TBRYE&PAYERSTATUS=verified&FIRSTNAME=RAPHAEL&LASTNAME=PIK&COUNTRYCODE=IL&SHIPTONAME=Raphael%20Pik&SHIPTOSTREET=1%20impasse%20eugene%20delacroix&SHIPTOCITY=Creteil&SHIPTOZIP=94000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=09%2050%2005%2067%2002&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Unconfirmed&CURRENCYCODE=EUR&AMT=18%2e70&ITEMAMT=15%2e70&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&L_NAME0=Gel%20anti%2dfourmis%20sous%20forme%20liquide%20%2d%20flacon%20de%2026g&L_NUMBER0=203&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e70&L_DESC0=Gel%20anti%2dfourmis%c2%a0sous%20forme%20de%20cartouche%2eId%c3%a9al%20pou%2e%2e%2e&L_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_ITEMHEIGHTVALUE0=%20%20%200%2e00000&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e70&PAYMENTREQUEST_0_ITEMAMT=15%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Raphael%20Pik&PAYMENTREQUEST_0_SHIPTOSTREET=1%20impasse%20eugene%20delacroix&PAYMENTREQUEST_0_SHIPTOCITY=Creteil&PAYMENTREQUEST_0_SHIPTOZIP=94000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=09%2050%2005%2067%2002&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Unconfirmed&PAYMENTREQUEST_0_ADDRESSNORMALIZATIONSTATUS=None&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%2dfourmis%20sous%20forme%20liquide%20%2d%20flacon%20de%2026g&L_PAYMENTREQUEST_0_NUMBER0=203&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e70&L_PAYMENTREQUEST_0_DESC0=Gel%20anti%2dfourmis%c2%a0sous%20forme%20de%20cartouche%2eId%c3%a9al%20pou%2e%2e%2e&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE0=%20%20%200%2e00000&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1BP82814UA241360W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1BP82814UA241360W&PAYERID=PJVX8BT4TBRYE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=203&L_PAYMENTREQUEST_0_NAME0=Gel+anti-fourmis+sous+forme+liquide+-+flacon+de+26g&L_PAYMENTREQUEST_0_DESC0=Gel+anti-fourmis%C2%A0sous+forme+de+cartouche.Id%C3%A9al+pou...&L_PAYMENTREQUEST_0_AMT0=15.7&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.7&PAYMENTREQUEST_0_AMT=18.70&ADDROVERRIDE=1&EMAIL=pikrfr%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Raphael+Pik&PAYMENTREQUEST_0_SHIPTOPHONENUM=09+50+05+67+02&PAYMENTREQUEST_0_SHIPTOSTREET=1+impasse+eugene+delacroix&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Creteil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94000 -Result : TOKEN=EC%2d1BP82814UA241360W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d18T06%3a07%3a57Z&CORRELATIONID=7e63bd0d3d18e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2R3022442T4182531&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d18T06%3a07%3a56Z&PAYMENTINFO_0_AMT=18%2e70&PAYMENTINFO_0_FEEAMT=1%2e22&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1BP82814UA241360W&PAYERID=PJVX8BT4TBRYE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=203&L_PAYMENTREQUEST_0_NAME0=Gel+anti-fourmis+sous+forme+liquide+-+flacon+de+26g&L_PAYMENTREQUEST_0_DESC0=Gel+anti-fourmis%C2%A0sous+forme+de+cartouche.Id%C3%A9al+pou...&L_PAYMENTREQUEST_0_AMT0=15.7&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.7&PAYMENTREQUEST_0_AMT=18.70&ADDROVERRIDE=1&EMAIL=pikrfr%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Raphael+Pik&PAYMENTREQUEST_0_SHIPTOPHONENUM=09+50+05+67+02&PAYMENTREQUEST_0_SHIPTOSTREET=1+impasse+eugene+delacroix&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Creteil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+alguesD%E2%80%99M...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=43.8&PAYMENTREQUEST_0_AMT=49.80&ADDROVERRIDE=1&EMAIL=dpjf62%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=david+jourde&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615495983&PAYMENTREQUEST_0_SHIPTOSTREET=42A+rue+Gounod&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=narbonne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d40347461R8528882H&TIMESTAMP=2016%2d07%2d18T06%3a54%3a05Z&CORRELATIONID=6e15e9704c987&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+alguesD%E2%80%99M...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=43.8&PAYMENTREQUEST_0_AMT=49.80&ADDROVERRIDE=1&EMAIL=dpjf62%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=david+jourde&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615495983&PAYMENTREQUEST_0_SHIPTOSTREET=42A+rue+Gounod&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=narbonne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-40347461R8528882H -Result : TOKEN=EC%2d40347461R8528882H&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d18T06%3a54%3a55Z&CORRELATIONID=707b1dec88a62&ACK=Success&VERSION=106&BUILD=000000&EMAIL=dpjf62%40yahoo%2efr&PAYERID=ASQ5Z8WZNUPCE&PAYERSTATUS=verified&FIRSTNAME=david&LASTNAME=jourde&COUNTRYCODE=FR&SHIPTONAME=david%20jourde&SHIPTOSTREET=42a%20rue%20Gounod&SHIPTOCITY=Narbonne&SHIPTOZIP=11100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0615495983&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=49%2e80&ITEMAMT=43%2e80&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Antimousse%20Curatif%20%2d%20D%27mouss%20Guard%20Eco%205L&L_NUMBER0=360&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=21%2e90&L_DESC0=Nettoyant%20v%c3%a9g%c3%a9tal%20pour%20mousses%2c%20lichens%2c%20alguesD%e2%80%99M%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=49%2e80&PAYMENTREQUEST_0_ITEMAMT=43%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=david%20jourde&PAYMENTREQUEST_0_SHIPTOSTREET=42a%20rue%20Gounod&PAYMENTREQUEST_0_SHIPTOCITY=Narbonne&PAYMENTREQUEST_0_SHIPTOZIP=11100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615495983&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Antimousse%20Curatif%20%2d%20D%27mouss%20Guard%20Eco%205L&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=21%2e90&L_PAYMENTREQUEST_0_DESC0=Nettoyant%20v%c3%a9g%c3%a9tal%20pour%20mousses%2c%20lichens%2c%20alguesD%e2%80%99M%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-40347461R8528882H - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-40347461R8528882H&PAYERID=ASQ5Z8WZNUPCE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+alguesD%E2%80%99M...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=43.8&PAYMENTREQUEST_0_AMT=49.80&ADDROVERRIDE=1&EMAIL=dpjf62%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=david+jourde&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615495983&PAYMENTREQUEST_0_SHIPTOSTREET=42A+rue+Gounod&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=narbonne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11100 -Result : TOKEN=EC%2d40347461R8528882H&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d18T06%3a54%3a57Z&CORRELATIONID=cc981b49a8be1&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=88R19263FC995135E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d18T06%3a54%3a57Z&PAYMENTINFO_0_AMT=49%2e80&PAYMENTINFO_0_FEEAMT=1%2e94&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-40347461R8528882H&PAYERID=ASQ5Z8WZNUPCE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=360&L_PAYMENTREQUEST_0_NAME0=Antimousse+Curatif+-+D%27mouss+Guard+Eco+5L&L_PAYMENTREQUEST_0_DESC0=Nettoyant+v%C3%A9g%C3%A9tal+pour+mousses%2C+lichens%2C+alguesD%E2%80%99M...&L_PAYMENTREQUEST_0_AMT0=21.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=43.8&PAYMENTREQUEST_0_AMT=49.80&ADDROVERRIDE=1&EMAIL=dpjf62%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=david+jourde&PAYMENTREQUEST_0_SHIPTOPHONENUM=0615495983&PAYMENTREQUEST_0_SHIPTOSTREET=42A+rue+Gounod&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=narbonne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=gisoubettoni%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=josiane+bettoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688398395&PAYMENTREQUEST_0_SHIPTOSTREET=28+c+les+grandes+aires&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=valensole&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1XL96664YN311830P&TIMESTAMP=2016%2d07%2d18T07%3a53%3a25Z&CORRELATIONID=822c59bbe42b6&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=gisoubettoni%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=josiane+bettoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688398395&PAYMENTREQUEST_0_SHIPTOSTREET=28+c+les+grandes+aires&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=valensole&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04210&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1XL96664YN311830P -Result : TOKEN=EC%2d1XL96664YN311830P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d18T07%3a54%3a03Z&CORRELATIONID=d24c4204bde08&ACK=Success&VERSION=106&BUILD=000000&EMAIL=gisoubettoni%40live%2efr&PAYERID=6GHPFLJEUNC96&PAYERSTATUS=unverified&FIRSTNAME=bettoni&LASTNAME=josiane&COUNTRYCODE=FR&SHIPTONAME=josiane%20bettoni&SHIPTOSTREET=28%20c%20les%20grandes%20aires&SHIPTOCITY=valensole&SHIPTOZIP=04210&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0688398395&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e10&ITEMAMT=15%2e10&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=207&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e10&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e10&PAYMENTREQUEST_0_ITEMAMT=15%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=josiane%20bettoni&PAYMENTREQUEST_0_SHIPTOSTREET=28%20c%20les%20grandes%20aires&PAYMENTREQUEST_0_SHIPTOCITY=valensole&PAYMENTREQUEST_0_SHIPTOZIP=04210&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688398395&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1XL96664YN311830P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1XL96664YN311830P&PAYERID=6GHPFLJEUNC96&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=gisoubettoni%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=josiane+bettoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688398395&PAYMENTREQUEST_0_SHIPTOSTREET=28+c+les+grandes+aires&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=valensole&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04210 -Result : TOKEN=EC%2d1XL96664YN311830P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d18T07%3a54%3a06Z&CORRELATIONID=c095b378e888e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8DP362473G1417140&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d18T07%3a54%3a04Z&PAYMENTINFO_0_AMT=21%2e10&PAYMENTINFO_0_FEEAMT=0%2e97&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1XL96664YN311830P&PAYERID=6GHPFLJEUNC96&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=gisoubettoni%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=josiane+bettoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688398395&PAYMENTREQUEST_0_SHIPTOSTREET=28+c+les+grandes+aires&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=valensole&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=04210 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=46.28&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=36.28&PAYMENTREQUEST_0_AMT=42.33&ADDROVERRIDE=1&EMAIL=gugusyoyo%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Guy+Miny&PAYMENTREQUEST_0_SHIPTOPHONENUM=003271436563&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Saint-Jacques+30&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Charleroi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=6120&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5EK690655T720341M&TIMESTAMP=2016%2d07%2d18T20%3a54%3a30Z&CORRELATIONID=c802d4bf4a695&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=46.28&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=36.28&PAYMENTREQUEST_0_AMT=42.33&ADDROVERRIDE=1&EMAIL=gugusyoyo%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Guy+Miny&PAYMENTREQUEST_0_SHIPTOPHONENUM=003271436563&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Saint-Jacques+30&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Charleroi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=6120&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EK690655T720341M -Result : TOKEN=EC%2d5EK690655T720341M&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d18T20%3a54%3a55Z&CORRELATIONID=a0b1756f5a125&ACK=Success&VERSION=106&BUILD=000000&EMAIL=gugusyoyo%40yahoo%2efr&PAYERID=9EY369LDDQDR2&PAYERSTATUS=verified&FIRSTNAME=guy&LASTNAME=miny&COUNTRYCODE=BE&SHIPTONAME=Guy%20Miny&SHIPTOSTREET=Rue%20Saint%2dJacques%2030&SHIPTOCITY=Charleroi&SHIPTOZIP=6120&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=003271436563&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=42%2e33&ITEMAMT=36%2e28&SHIPPINGAMT=6%2e05&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=4&L_NUMBER1=644&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=46%2e28&L_AMT1=%2d10%2e00&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=42%2e33&PAYMENTREQUEST_0_ITEMAMT=36%2e28&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e05&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Guy%20Miny&PAYMENTREQUEST_0_SHIPTOSTREET=Rue%20Saint%2dJacques%2030&PAYMENTREQUEST_0_SHIPTOCITY=Charleroi&PAYMENTREQUEST_0_SHIPTOZIP=6120&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=003271436563&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=46%2e28&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EK690655T720341M - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EK690655T720341M&PAYERID=9EY369LDDQDR2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=46.28&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=36.28&PAYMENTREQUEST_0_AMT=42.33&ADDROVERRIDE=1&EMAIL=gugusyoyo%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Guy+Miny&PAYMENTREQUEST_0_SHIPTOPHONENUM=003271436563&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Saint-Jacques+30&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Charleroi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=6120 -Result : TOKEN=EC%2d5EK690655T720341M&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d18T20%3a54%3a58Z&CORRELATIONID=167fe6557edbf&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=12K20265D40610242&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d18T20%3a54%3a57Z&PAYMENTINFO_0_AMT=42%2e33&PAYMENTINFO_0_FEEAMT=1%2e69&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5EK690655T720341M&PAYERID=9EY369LDDQDR2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=46.28&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=36.28&PAYMENTREQUEST_0_AMT=42.33&ADDROVERRIDE=1&EMAIL=gugusyoyo%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Guy+Miny&PAYMENTREQUEST_0_SHIPTOPHONENUM=003271436563&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Saint-Jacques+30&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Charleroi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=6120 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=Jbouchet.jb%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jocelyn+Bouchet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0620126498&PAYMENTREQUEST_0_SHIPTOSTREET=2+Chez+Bertin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montbert&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1MR44334L53532234&TIMESTAMP=2016%2d07%2d18T21%3a43%3a01Z&CORRELATIONID=dba34509875eb&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=Jbouchet.jb%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jocelyn+Bouchet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0620126498&PAYMENTREQUEST_0_SHIPTOSTREET=2+Chez+Bertin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montbert&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1MR44334L53532234 -Result : TOKEN=EC%2d1MR44334L53532234&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d18T21%3a44%3a06Z&CORRELATIONID=6fa486334e023&ACK=Success&VERSION=106&BUILD=000000&EMAIL=jbouchet%2ejb%40gmail%2ecom&PAYERID=TG4BTBDDBHHRA&PAYERSTATUS=verified&FIRSTNAME=Jocelyn&LASTNAME=BOUCHET&COUNTRYCODE=FR&SHIPTONAME=%20Jocelyn%20Bouchet&SHIPTOSTREET=2%20chez%20Bertin%20&SHIPTOCITY=Montbert&SHIPTOSTATE=FR&SHIPTOZIP=44140&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0620126498&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=25%2e90&ITEMAMT=19%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NUMBER0=5&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=25%2e90&PAYMENTREQUEST_0_ITEMAMT=19%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Jocelyn%20Bouchet&PAYMENTREQUEST_0_SHIPTOSTREET=2%20chez%20Bertin%20&PAYMENTREQUEST_0_SHIPTOCITY=Montbert&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44140&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0620126498&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1MR44334L53532234 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1MR44334L53532234&PAYERID=TG4BTBDDBHHRA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=Jbouchet.jb%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jocelyn+Bouchet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0620126498&PAYMENTREQUEST_0_SHIPTOSTREET=2+Chez+Bertin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montbert&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44140 -Result : TOKEN=EC%2d1MR44334L53532234&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d18T21%3a44%3a09Z&CORRELATIONID=56b0828f66986&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2D859036TV3731806&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d18T21%3a44%3a07Z&PAYMENTINFO_0_AMT=25%2e90&PAYMENTINFO_0_FEEAMT=1%2e13&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1MR44334L53532234&PAYERID=TG4BTBDDBHHRA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=Jbouchet.jb%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Jocelyn+Bouchet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0620126498&PAYMENTREQUEST_0_SHIPTOSTREET=2+Chez+Bertin&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montbert&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44140 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=152&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=154&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC2=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=danie_348%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Danie+PITE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684117139&PAYMENTREQUEST_0_SHIPTOSTREET=Bonjour+pourquoi+je+n%27ai+jamais+de+code+bon+d%27achat+que+faut+il+pour+en+avoir+faire++merci&PAYMENTREQUEST_0_SHIPTOSTREET2=12+All%C3%A9e+des+Grillons+chez+madame+de+rosa&PAYMENTREQUEST_0_SHIPTOCITY=Maule&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78580&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1NW396723P596463A&TIMESTAMP=2016%2d07%2d19T11%3a25%3a38Z&CORRELATIONID=ec0acb2eb3eda&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=152&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=154&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC2=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=danie_348%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Danie+PITE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684117139&PAYMENTREQUEST_0_SHIPTOSTREET=Bonjour+pourquoi+je+n%27ai+jamais+de+code+bon+d%27achat+que+faut+il+pour+en+avoir+faire++merci&PAYMENTREQUEST_0_SHIPTOSTREET2=12+All%C3%A9e+des+Grillons+chez+madame+de+rosa&PAYMENTREQUEST_0_SHIPTOCITY=Maule&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78580&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NW396723P596463A -Result : TOKEN=EC%2d1NW396723P596463A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T11%3a32%3a51Z&CORRELATIONID=6558be742d57&ACK=Success&VERSION=106&BUILD=000000&EMAIL=danie_348%40hotmail%2ecom&PAYERID=5NK9JZCSPLLZE&PAYERSTATUS=verified&FIRSTNAME=Danie&LASTNAME=Pit%c3%a9&COUNTRYCODE=FR&SHIPTONAME=Danie%20PITE&SHIPTOSTREET=Bonjour%20pourquoi%20je%20n%27ai%20jamais%20de%20code%20bon%20d%27achat%20que%20faut%20il%20pour%20en%20avoir%20faire%20%20merci&SHIPTOSTREET2=12%20All%c3%a9e%20des%20Grillons%20chez%20madame%20de%20rosa&SHIPTOCITY=Maule&SHIPTOZIP=78580&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0684117139&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=20%2e85&ITEMAMT=17%2e85&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_NUMBER0=152&L_NUMBER1=155&L_NUMBER2=154&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_AMT2=5%2e95&L_DESC0=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_DESC1=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_DESC2=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e85&PAYMENTREQUEST_0_ITEMAMT=17%2e85&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Danie%20PITE&PAYMENTREQUEST_0_SHIPTOSTREET=Bonjour%20pourquoi%20je%20n%27ai%20jamais%20de%20code%20bon%20d%27achat%20que%20faut%20il%20pour%20en%20avoir%20faire%20%20merci&PAYMENTREQUEST_0_SHIPTOSTREET2=12%20All%c3%a9e%20des%20Grillons%20chez%20madame%20de%20rosa&PAYMENTREQUEST_0_SHIPTOCITY=Maule&PAYMENTREQUEST_0_SHIPTOZIP=78580&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684117139&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_PAYMENTREQUEST_0_NUMBER0=152&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NUMBER2=154&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=5%2e95&L_PAYMENTREQUEST_0_DESC0=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NW396723P596463A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NW396723P596463A&PAYERID=5NK9JZCSPLLZE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=152&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=154&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC2=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=danie_348%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Danie+PITE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684117139&PAYMENTREQUEST_0_SHIPTOSTREET=Bonjour+pourquoi+je+n%27ai+jamais+de+code+bon+d%27achat+que+faut+il+pour+en+avoir+faire++merci&PAYMENTREQUEST_0_SHIPTOSTREET2=12+All%C3%A9e+des+Grillons+chez+madame+de+rosa&PAYMENTREQUEST_0_SHIPTOCITY=Maule&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78580 -Result : TOKEN=EC%2d1NW396723P596463A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T11%3a32%3a54Z&CORRELATIONID=a54def8f5a548&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=495418837H892561G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T11%3a32%3a53Z&PAYMENTINFO_0_AMT=20%2e85&PAYMENTINFO_0_FEEAMT=0%2e96&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NW396723P596463A&PAYERID=5NK9JZCSPLLZE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=152&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=154&L_PAYMENTREQUEST_0_NAME2=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC2=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.85&PAYMENTREQUEST_0_AMT=20.85&ADDROVERRIDE=1&EMAIL=danie_348%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Danie+PITE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684117139&PAYMENTREQUEST_0_SHIPTOSTREET=Bonjour+pourquoi+je+n%27ai+jamais+de+code+bon+d%27achat+que+faut+il+pour+en+avoir+faire++merci&PAYMENTREQUEST_0_SHIPTOSTREET2=12+All%C3%A9e+des+Grillons+chez+madame+de+rosa&PAYMENTREQUEST_0_SHIPTOCITY=Maule&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78580 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.71&PAYMENTREQUEST_0_AMT=17.71&ADDROVERRIDE=1&EMAIL=labale%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Cl%C3%A9ment+GOHEREL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685065247&PAYMENTREQUEST_0_SHIPTOSTREET=21+Rue+Michelet&PAYMENTREQUEST_0_SHIPTOSTREET2=Code+21A63&PAYMENTREQUEST_0_SHIPTOCITY=Boulogne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d21W85041M6712152U&TIMESTAMP=2016%2d07%2d19T13%3a02%3a58Z&CORRELATIONID=2585e6edc77a1&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.71&PAYMENTREQUEST_0_AMT=17.71&ADDROVERRIDE=1&EMAIL=labale%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Cl%C3%A9ment+GOHEREL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685065247&PAYMENTREQUEST_0_SHIPTOSTREET=21+Rue+Michelet&PAYMENTREQUEST_0_SHIPTOSTREET2=Code+21A63&PAYMENTREQUEST_0_SHIPTOCITY=Boulogne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21W85041M6712152U -Result : TOKEN=EC%2d21W85041M6712152U&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T13%3a03%3a12Z&CORRELATIONID=200507bcd4ec6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=labale%40noos%2efr&PAYERID=D83MNCLNYEZH8&PAYERSTATUS=verified&FIRSTNAME=CLEMENT&LASTNAME=goherel&COUNTRYCODE=FR&SHIPTONAME=Cl%c3%a9ment%20GOHEREL&SHIPTOSTREET=21%20Rue%20Michelet&SHIPTOSTREET2=Code%2021A63&SHIPTOCITY=Boulogne&SHIPTOZIP=92100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0685065247&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=17%2e71&ITEMAMT=14%2e71&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_NAME1=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_NUMBER0=170&L_NUMBER1=159&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=3%2e51&L_AMT1=11%2e20&L_DESC0=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&L_DESC1=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=17%2e71&PAYMENTREQUEST_0_ITEMAMT=14%2e71&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Cl%c3%a9ment%20GOHEREL&PAYMENTREQUEST_0_SHIPTOSTREET=21%20Rue%20Michelet&PAYMENTREQUEST_0_SHIPTOSTREET2=Code%2021A63&PAYMENTREQUEST_0_SHIPTOCITY=Boulogne&PAYMENTREQUEST_0_SHIPTOZIP=92100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685065247&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_PAYMENTREQUEST_0_NAME1=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e51&L_PAYMENTREQUEST_0_AMT1=11%2e20&L_PAYMENTREQUEST_0_DESC0=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21W85041M6712152U - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21W85041M6712152U&PAYERID=D83MNCLNYEZH8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.71&PAYMENTREQUEST_0_AMT=17.71&ADDROVERRIDE=1&EMAIL=labale%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Cl%C3%A9ment+GOHEREL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685065247&PAYMENTREQUEST_0_SHIPTOSTREET=21+Rue+Michelet&PAYMENTREQUEST_0_SHIPTOSTREET2=Code+21A63&PAYMENTREQUEST_0_SHIPTOCITY=Boulogne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92100 -Result : TOKEN=EC%2d21W85041M6712152U&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T13%3a03%3a14Z&CORRELATIONID=be9dec851f6c2&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0D540436A3082913S&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T13%3a03%3a13Z&PAYMENTINFO_0_AMT=17%2e71&PAYMENTINFO_0_FEEAMT=0%2e85&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21W85041M6712152U&PAYERID=D83MNCLNYEZH8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=14.71&PAYMENTREQUEST_0_AMT=17.71&ADDROVERRIDE=1&EMAIL=labale%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Cl%C3%A9ment+GOHEREL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685065247&PAYMENTREQUEST_0_SHIPTOSTREET=21+Rue+Michelet&PAYMENTREQUEST_0_SHIPTOSTREET2=Code+21A63&PAYMENTREQUEST_0_SHIPTOCITY=Boulogne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=644&L_PAYMENTREQUEST_0_NAME4=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC4=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT4=-10&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.19&PAYMENTREQUEST_0_AMT=31.19&ADDROVERRIDE=1&EMAIL=fbl10%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7oise+Blin+Lemaitre&PAYMENTREQUEST_0_SHIPTOPHONENUM=0602255453&PAYMENTREQUEST_0_SHIPTOSTREET=LA+PETITE+GUITIERE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=RUAUDIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4V477471VY139034D&TIMESTAMP=2016%2d07%2d19T13%3a35%3a50Z&CORRELATIONID=9d49b0152578e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=644&L_PAYMENTREQUEST_0_NAME4=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC4=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT4=-10&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.19&PAYMENTREQUEST_0_AMT=31.19&ADDROVERRIDE=1&EMAIL=fbl10%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7oise+Blin+Lemaitre&PAYMENTREQUEST_0_SHIPTOPHONENUM=0602255453&PAYMENTREQUEST_0_SHIPTOSTREET=LA+PETITE+GUITIERE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=RUAUDIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4V477471VY139034D -Result : TOKEN=EC%2d4V477471VY139034D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T13%3a38%3a52Z&CORRELATIONID=a0da2b89e9fe5&ACK=Success&VERSION=106&BUILD=000000&EMAIL=fbl10%40hotmail%2efr&PAYERID=3YBCAJKFGUHRL&PAYERSTATUS=unverified&FIRSTNAME=FRANCOISE&LASTNAME=BLIN&COUNTRYCODE=FR&SHIPTONAME=Fran%c3%a7oise%20Blin%20Lemaitre&SHIPTOSTREET=LA%20PETITE%20GUITIERE&SHIPTOCITY=RUAUDIN&SHIPTOZIP=72230&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0602255453&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=31%2e19&ITEMAMT=25%2e19&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_NAME1=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_NAME3=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME4=R%c3%a9duction%20newsletter&L_NUMBER0=154&L_NUMBER1=157&L_NUMBER2=174&L_NUMBER3=155&L_NUMBER4=644&L_QTY0=1&L_QTY1=2&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=5%2e95&L_AMT1=7%2e40&L_AMT2=8%2e49&L_AMT3=5%2e95&L_AMT4=%2d10%2e00&L_DESC0=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&L_DESC1=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_DESC2=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&L_DESC3=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_DESC4=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=31%2e19&PAYMENTREQUEST_0_ITEMAMT=25%2e19&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Fran%c3%a7oise%20Blin%20Lemaitre&PAYMENTREQUEST_0_SHIPTOSTREET=LA%20PETITE%20GUITIERE&PAYMENTREQUEST_0_SHIPTOCITY=RUAUDIN&PAYMENTREQUEST_0_SHIPTOZIP=72230&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0602255453&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_PAYMENTREQUEST_0_NAME3=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME4=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NUMBER4=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=7%2e40&L_PAYMENTREQUEST_0_AMT2=8%2e49&L_PAYMENTREQUEST_0_AMT3=5%2e95&L_PAYMENTREQUEST_0_AMT4=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4V477471VY139034D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4V477471VY139034D&PAYERID=3YBCAJKFGUHRL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=644&L_PAYMENTREQUEST_0_NAME4=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC4=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT4=-10&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.19&PAYMENTREQUEST_0_AMT=31.19&ADDROVERRIDE=1&EMAIL=fbl10%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7oise+Blin+Lemaitre&PAYMENTREQUEST_0_SHIPTOPHONENUM=0602255453&PAYMENTREQUEST_0_SHIPTOSTREET=LA+PETITE+GUITIERE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=RUAUDIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72230 -Result : TOKEN=EC%2d4V477471VY139034D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T13%3a38%3a55Z&CORRELATIONID=4b65dd5f775e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=82V48694US108525L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T13%3a38%3a53Z&PAYMENTINFO_0_AMT=31%2e19&PAYMENTINFO_0_FEEAMT=1%2e31&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4V477471VY139034D&PAYERID=3YBCAJKFGUHRL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=155&L_PAYMENTREQUEST_0_NAME3=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT3=5.95&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=644&L_PAYMENTREQUEST_0_NAME4=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC4=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT4=-10&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.19&PAYMENTREQUEST_0_AMT=31.19&ADDROVERRIDE=1&EMAIL=fbl10%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Fran%C3%A7oise+Blin+Lemaitre&PAYMENTREQUEST_0_SHIPTOPHONENUM=0602255453&PAYMENTREQUEST_0_SHIPTOSTREET=LA+PETITE+GUITIERE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=RUAUDIN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=72230 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10&PAYMENTREQUEST_0_AMT=13.00&ADDROVERRIDE=1&EMAIL=alain.faudet%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+faudet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0674918179&PAYMENTREQUEST_0_SHIPTOSTREET=35%2C+rue+saint+just+%28bureau+d%27%C3%A9tudes%29&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ivry+sur+seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0LN84560V5151941V&TIMESTAMP=2016%2d07%2d19T13%3a55%3a11Z&CORRELATIONID=804b3ccc4c154&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10&PAYMENTREQUEST_0_AMT=13.00&ADDROVERRIDE=1&EMAIL=alain.faudet%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+faudet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0674918179&PAYMENTREQUEST_0_SHIPTOSTREET=35%2C+rue+saint+just+%28bureau+d%27%C3%A9tudes%29&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ivry+sur+seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0LN84560V5151941V -Result : TOKEN=EC%2d0LN84560V5151941V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T13%3a55%3a58Z&CORRELATIONID=5d46651368f3d&ACK=Success&VERSION=106&BUILD=000000&EMAIL=alain%2efaudet%40neuf%2efr&PAYERID=9F6WAWMTW5P72&PAYERSTATUS=unverified&FIRSTNAME=alain&LASTNAME=faudet&COUNTRYCODE=FR&SHIPTONAME=alain%20faudet&SHIPTOSTREET=35%2c%20rue%20saint%20just%20%28bureau%20d%27%c3%a9tudes%29&SHIPTOCITY=ivry%20sur%20seine&SHIPTOZIP=94200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0674918179&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=13%2e00&ITEMAMT=10%2e00&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Huile%20essentielle%20Lavandin%20bio&L_NUMBER0=146&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=5%2e00&L_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=13%2e00&PAYMENTREQUEST_0_ITEMAMT=10%2e00&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=alain%20faudet&PAYMENTREQUEST_0_SHIPTOSTREET=35%2c%20rue%20saint%20just%20%28bureau%20d%27%c3%a9tudes%29&PAYMENTREQUEST_0_SHIPTOCITY=ivry%20sur%20seine&PAYMENTREQUEST_0_SHIPTOZIP=94200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0674918179&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Huile%20essentielle%20Lavandin%20bio&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e00&L_PAYMENTREQUEST_0_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0LN84560V5151941V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0LN84560V5151941V&PAYERID=9F6WAWMTW5P72&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10&PAYMENTREQUEST_0_AMT=13.00&ADDROVERRIDE=1&EMAIL=alain.faudet%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+faudet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0674918179&PAYMENTREQUEST_0_SHIPTOSTREET=35%2C+rue+saint+just+%28bureau+d%27%C3%A9tudes%29&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ivry+sur+seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94200 -Result : TOKEN=EC%2d0LN84560V5151941V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T13%3a56%3a02Z&CORRELATIONID=840f130c94225&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=85794508SS224104G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T13%3a56%3a00Z&PAYMENTINFO_0_AMT=13%2e00&PAYMENTINFO_0_FEEAMT=0%2e69&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0LN84560V5151941V&PAYERID=9F6WAWMTW5P72&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=10&PAYMENTREQUEST_0_AMT=13.00&ADDROVERRIDE=1&EMAIL=alain.faudet%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=alain+faudet&PAYMENTREQUEST_0_SHIPTOPHONENUM=0674918179&PAYMENTREQUEST_0_SHIPTOSTREET=35%2C+rue+saint+just+%28bureau+d%27%C3%A9tudes%29&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ivry+sur+seine&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5&PAYMENTREQUEST_0_AMT=8.00&ADDROVERRIDE=1&EMAIL=s.garnier50%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=sylvie+garnier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650236944&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+des+ajoncs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=digosville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50110&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d95T29901H1831712K&TIMESTAMP=2016%2d07%2d19T15%3a30%3a23Z&CORRELATIONID=9b76f659b6be5&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5&PAYMENTREQUEST_0_AMT=8.00&ADDROVERRIDE=1&EMAIL=s.garnier50%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=sylvie+garnier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650236944&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+des+ajoncs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=digosville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50110&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-95T29901H1831712K -Result : TOKEN=EC%2d95T29901H1831712K&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T15%3a31%3a25Z&CORRELATIONID=80158bed1e860&ACK=Success&VERSION=106&BUILD=000000&EMAIL=p%2egarnier50%40free%2efr&PAYERID=VKLB59JUA6JK2&PAYERSTATUS=verified&FIRSTNAME=pascal&LASTNAME=GARNIER&COUNTRYCODE=FR&SHIPTONAME=%20sylvie%20GARNIER&SHIPTOSTREET=6%20rue%20des%20ajoncs&SHIPTOCITY=digosville&SHIPTOSTATE=FR&SHIPTOZIP=50110&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0650236944&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=8%2e00&ITEMAMT=5%2e00&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Huile%20essentielle%20Lavandin%20bio&L_NUMBER0=146&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e00&L_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=8%2e00&PAYMENTREQUEST_0_ITEMAMT=5%2e00&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20sylvie%20GARNIER&PAYMENTREQUEST_0_SHIPTOSTREET=6%20rue%20des%20ajoncs&PAYMENTREQUEST_0_SHIPTOCITY=digosville&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50110&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650236944&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Huile%20essentielle%20Lavandin%20bio&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e00&L_PAYMENTREQUEST_0_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-95T29901H1831712K - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-95T29901H1831712K&PAYERID=VKLB59JUA6JK2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5&PAYMENTREQUEST_0_AMT=8.00&ADDROVERRIDE=1&EMAIL=s.garnier50%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=sylvie+garnier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650236944&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+des+ajoncs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=digosville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50110 -Result : TOKEN=EC%2d95T29901H1831712K&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T15%3a31%3a28Z&CORRELATIONID=42588b365c371&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8E390241ED8975024&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T15%3a31%3a27Z&PAYMENTINFO_0_AMT=8%2e00&PAYMENTINFO_0_FEEAMT=0%2e52&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-95T29901H1831712K&PAYERID=VKLB59JUA6JK2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=5&PAYMENTREQUEST_0_AMT=8.00&ADDROVERRIDE=1&EMAIL=s.garnier50%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=sylvie+garnier&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650236944&PAYMENTREQUEST_0_SHIPTOSTREET=6+rue+des+ajoncs&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=digosville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50110 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=185&L_PAYMENTREQUEST_0_NAME0=G%C3%A9lule+v%C3%A9g%C3%A9tale+D%C3%A9puratif+Digestion%2C+Artichaut+%2F+Radis+noir&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=170&L_PAYMENTREQUEST_0_NAME1=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC1=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT1=3.51&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.5&PAYMENTREQUEST_0_AMT=12.50&ADDROVERRIDE=1&EMAIL=jacques.aballea%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jacques+ABALLEA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0670740452&PAYMENTREQUEST_0_SHIPTOSTREET=113+RUE+HOCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BREST&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=29200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0K766451KG568305L&TIMESTAMP=2016%2d07%2d19T18%3a50%3a35Z&CORRELATIONID=58bdcc2fd6847&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=185&L_PAYMENTREQUEST_0_NAME0=G%C3%A9lule+v%C3%A9g%C3%A9tale+D%C3%A9puratif+Digestion%2C+Artichaut+%2F+Radis+noir&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=170&L_PAYMENTREQUEST_0_NAME1=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC1=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT1=3.51&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.5&PAYMENTREQUEST_0_AMT=12.50&ADDROVERRIDE=1&EMAIL=jacques.aballea%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jacques+ABALLEA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0670740452&PAYMENTREQUEST_0_SHIPTOSTREET=113+RUE+HOCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BREST&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=29200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0K766451KG568305L -Result : TOKEN=EC%2d0K766451KG568305L&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T18%3a51%3a45Z&CORRELATIONID=18d593082c32&ACK=Success&VERSION=106&BUILD=000000&EMAIL=jacques%2eaballea%40orange%2efr&PAYERID=KSUULAVKVUDH2&PAYERSTATUS=unverified&FIRSTNAME=jacques&LASTNAME=aballea&COUNTRYCODE=FR&SHIPTONAME=jacques%20ABALLEA&SHIPTOSTREET=113%20rue%20Hoche&SHIPTOCITY=BREST&SHIPTOSTATE=Bretagne&SHIPTOZIP=29200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0670740452&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=12%2e50&ITEMAMT=9%2e50&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=G%c3%a9lule%20v%c3%a9g%c3%a9tale%20D%c3%a9puratif%20Digestion%2c%20Artichaut%20%2f%20Radis%20noir&L_NAME1=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_NUMBER0=185&L_NUMBER1=170&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=5%2e99&L_AMT1=3%2e51&L_DESC0=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&L_DESC1=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=12%2e50&PAYMENTREQUEST_0_ITEMAMT=9%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=jacques%20ABALLEA&PAYMENTREQUEST_0_SHIPTOSTREET=113%20rue%20Hoche&PAYMENTREQUEST_0_SHIPTOCITY=BREST&PAYMENTREQUEST_0_SHIPTOSTATE=Bretagne&PAYMENTREQUEST_0_SHIPTOZIP=29200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0670740452&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=G%c3%a9lule%20v%c3%a9g%c3%a9tale%20D%c3%a9puratif%20Digestion%2c%20Artichaut%20%2f%20Radis%20noir&L_PAYMENTREQUEST_0_NAME1=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_PAYMENTREQUEST_0_NUMBER0=185&L_PAYMENTREQUEST_0_NUMBER1=170&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e99&L_PAYMENTREQUEST_0_AMT1=3%2e51&L_PAYMENTREQUEST_0_DESC0=Expert%20des%20bienfaits%20de%20la%20nature%20et%20des%20plantes%2c%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0K766451KG568305L - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0K766451KG568305L&PAYERID=KSUULAVKVUDH2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=185&L_PAYMENTREQUEST_0_NAME0=G%C3%A9lule+v%C3%A9g%C3%A9tale+D%C3%A9puratif+Digestion%2C+Artichaut+%2F+Radis+noir&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=170&L_PAYMENTREQUEST_0_NAME1=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC1=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT1=3.51&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.5&PAYMENTREQUEST_0_AMT=12.50&ADDROVERRIDE=1&EMAIL=jacques.aballea%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jacques+ABALLEA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0670740452&PAYMENTREQUEST_0_SHIPTOSTREET=113+RUE+HOCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BREST&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=29200 -Result : TOKEN=EC%2d0K766451KG568305L&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T18%3a51%3a48Z&CORRELATIONID=a7ed1e962d68b&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=51G23266Y05186338&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T18%3a51%3a46Z&PAYMENTINFO_0_AMT=12%2e50&PAYMENTINFO_0_FEEAMT=0%2e68&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0K766451KG568305L&PAYERID=KSUULAVKVUDH2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=185&L_PAYMENTREQUEST_0_NAME0=G%C3%A9lule+v%C3%A9g%C3%A9tale+D%C3%A9puratif+Digestion%2C+Artichaut+%2F+Radis+noir&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=5.99&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=170&L_PAYMENTREQUEST_0_NAME1=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC1=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT1=3.51&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.5&PAYMENTREQUEST_0_AMT=12.50&ADDROVERRIDE=1&EMAIL=jacques.aballea%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=jacques+ABALLEA&PAYMENTREQUEST_0_SHIPTOPHONENUM=0670740452&PAYMENTREQUEST_0_SHIPTOSTREET=113+RUE+HOCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=BREST&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=29200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=5.55&PAYMENTREQUEST_0_AMT=11.60&ADDROVERRIDE=1&EMAIL=sebastien.lecheval%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=S%C3%A9bastien+LECHEVAL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0493441206&PAYMENTREQUEST_0_SHIPTOSTREET=avenue+de+la+Rennaissance+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2S51280334275070Y&TIMESTAMP=2016%2d07%2d19T20%3a25%3a52Z&CORRELATIONID=1dd9a84d99307&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=5.55&PAYMENTREQUEST_0_AMT=11.60&ADDROVERRIDE=1&EMAIL=sebastien.lecheval%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=S%C3%A9bastien+LECHEVAL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0493441206&PAYMENTREQUEST_0_SHIPTOSTREET=avenue+de+la+Rennaissance+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2S51280334275070Y -Result : TOKEN=EC%2d2S51280334275070Y&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d19T20%3a26%3a12Z&CORRELATIONID=2ac59248be805&ACK=Success&VERSION=106&BUILD=000000&EMAIL=sebastien%2elecheval%40live%2efr&PAYERID=S54LCJQQCDDXC&PAYERSTATUS=unverified&FIRSTNAME=S%c3%a9bastien&LASTNAME=LECHEVAL&COUNTRYCODE=BE&SHIPTONAME=S%c3%a9bastien%20LECHEVAL&SHIPTOSTREET=avenue%20de%20la%20Rennaissance%206&SHIPTOCITY=Bruxelles&SHIPTOZIP=1000&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0493441206&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e60&ITEMAMT=5%2e55&SHIPPINGAMT=6%2e05&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_NUMBER0=169&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=5%2e55&L_DESC0=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e60&PAYMENTREQUEST_0_ITEMAMT=5%2e55&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e05&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=S%c3%a9bastien%20LECHEVAL&PAYMENTREQUEST_0_SHIPTOSTREET=avenue%20de%20la%20Rennaissance%206&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOZIP=1000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0493441206&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e55&L_PAYMENTREQUEST_0_DESC0=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2S51280334275070Y - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2S51280334275070Y&PAYERID=S54LCJQQCDDXC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=5.55&PAYMENTREQUEST_0_AMT=11.60&ADDROVERRIDE=1&EMAIL=sebastien.lecheval%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=S%C3%A9bastien+LECHEVAL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0493441206&PAYMENTREQUEST_0_SHIPTOSTREET=avenue+de+la+Rennaissance+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1000 -Result : TOKEN=EC%2d2S51280334275070Y&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d19T20%3a26%3a15Z&CORRELATIONID=ef860bc6a8b25&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0KB06404TL910643A&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d19T20%3a26%3a14Z&PAYMENTINFO_0_AMT=11%2e60&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2S51280334275070Y&PAYERID=S54LCJQQCDDXC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=5.55&PAYMENTREQUEST_0_AMT=11.60&ADDROVERRIDE=1&EMAIL=sebastien.lecheval%40live.fr&PAYMENTREQUEST_0_SHIPTONAME=S%C3%A9bastien+LECHEVAL&PAYMENTREQUEST_0_SHIPTOPHONENUM=0493441206&PAYMENTREQUEST_0_SHIPTOSTREET=avenue+de+la+Rennaissance+6&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=166&L_PAYMENTREQUEST_0_NAME0=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT0=2.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=164&L_PAYMENTREQUEST_0_NAME3=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT3=6.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.26&PAYMENTREQUEST_0_AMT=23.26&ADDROVERRIDE=1&EMAIL=gaous77%40msn.com&PAYMENTREQUEST_0_SHIPTONAME=Gaoussou+Fofana&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651699946&PAYMENTREQUEST_0_SHIPTOSTREET=3+Ruelle+aux+Loups&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bussy+Saint+Georges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3DW612688D840554C&TIMESTAMP=2016%2d07%2d19T21%3a28%3a25Z&CORRELATIONID=6ac6f3c1b236e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=166&L_PAYMENTREQUEST_0_NAME0=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT0=2.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=164&L_PAYMENTREQUEST_0_NAME3=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT3=6.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.26&PAYMENTREQUEST_0_AMT=23.26&ADDROVERRIDE=1&EMAIL=gaous77%40msn.com&PAYMENTREQUEST_0_SHIPTONAME=Gaoussou+Fofana&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651699946&PAYMENTREQUEST_0_SHIPTOSTREET=3+Ruelle+aux+Loups&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bussy+Saint+Georges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=166&L_PAYMENTREQUEST_0_NAME0=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT0=2.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=164&L_PAYMENTREQUEST_0_NAME3=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT3=6.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.26&PAYMENTREQUEST_0_AMT=23.26&ADDROVERRIDE=1&EMAIL=gaous77%40msn.com&PAYMENTREQUEST_0_SHIPTONAME=Gaoussou+Fofana&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651699946&PAYMENTREQUEST_0_SHIPTOSTREET=3+Ruelle+aux+Loups&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bussy+Saint+Georges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5F779354D6562315T&TIMESTAMP=2016%2d07%2d19T21%3a31%3a51Z&CORRELATIONID=f7763c84ea4ab&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=166&L_PAYMENTREQUEST_0_NAME0=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT0=2.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=169&L_PAYMENTREQUEST_0_NAME1=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT1=5.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=165&L_PAYMENTREQUEST_0_NAME2=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT2=3.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=164&L_PAYMENTREQUEST_0_NAME3=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT3=6.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=17.26&PAYMENTREQUEST_0_AMT=23.26&ADDROVERRIDE=1&EMAIL=gaous77%40msn.com&PAYMENTREQUEST_0_SHIPTONAME=Gaoussou+Fofana&PAYMENTREQUEST_0_SHIPTOPHONENUM=0651699946&PAYMENTREQUEST_0_SHIPTOSTREET=3+Ruelle+aux+Loups&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bussy+Saint+Georges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=48.96&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=107.76&PAYMENTREQUEST_0_AMT=107.76&ADDROVERRIDE=1&EMAIL=sibeoni%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=martine+sibeoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0675065890&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+4+vents&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-nabord&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d59351325LN209754D&TIMESTAMP=2016%2d07%2d20T07%3a54%3a27Z&CORRELATIONID=e91e5a5ebee4d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=48.96&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=107.76&PAYMENTREQUEST_0_AMT=107.76&ADDROVERRIDE=1&EMAIL=sibeoni%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=martine+sibeoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0675065890&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+4+vents&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-nabord&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-59351325LN209754D -Result : TOKEN=EC%2d59351325LN209754D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T07%3a54%3a45Z&CORRELATIONID=da816e1432a2e&ACK=Success&VERSION=106&BUILD=000000&EMAIL=sibeoni%40aol%2ecom&PAYERID=Y46KBGFE9HC62&PAYERSTATUS=verified&FIRSTNAME=martine&LASTNAME=sibeoni&COUNTRYCODE=FR&SHIPTONAME=martine%20sibeoni&SHIPTOSTREET=25%20rue%20des%204%20vents&SHIPTOCITY=Saint%2dnabord&SHIPTOSTATE=LORRAINE&SHIPTOZIP=88200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0675065890&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=107%2e76&ITEMAMT=107%2e76&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NAME1=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%2d%20ProtectGuard%202L&L_NUMBER0=17&L_NUMBER1=8&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=58%2e80&L_AMT1=48%2e96&L_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&L_DESC1=Stop%20aux%20infiltrations%20et%20salissures%20sur%20sols%20et%20t%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=107%2e76&PAYMENTREQUEST_0_ITEMAMT=107%2e76&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=martine%20sibeoni&PAYMENTREQUEST_0_SHIPTOSTREET=25%20rue%20des%204%20vents&PAYMENTREQUEST_0_SHIPTOCITY=Saint%2dnabord&PAYMENTREQUEST_0_SHIPTOSTATE=LORRAINE&PAYMENTREQUEST_0_SHIPTOZIP=88200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0675065890&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NAME1=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%2d%20ProtectGuard%202L&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=58%2e80&L_PAYMENTREQUEST_0_AMT1=48%2e96&L_PAYMENTREQUEST_0_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Stop%20aux%20infiltrations%20et%20salissures%20sur%20sols%20et%20t%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-59351325LN209754D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-59351325LN209754D&PAYERID=Y46KBGFE9HC62&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=48.96&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=107.76&PAYMENTREQUEST_0_AMT=107.76&ADDROVERRIDE=1&EMAIL=sibeoni%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=martine+sibeoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0675065890&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+4+vents&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-nabord&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88200 -Result : TOKEN=EC%2d59351325LN209754D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T07%3a54%3a48Z&CORRELATIONID=22d01e9658555&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=62F43057612279019&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T07%3a54%3a46Z&PAYMENTINFO_0_AMT=107%2e76&PAYMENTINFO_0_FEEAMT=3%2e91&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-59351325LN209754D&PAYERID=Y46KBGFE9HC62&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=48.96&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=107.76&PAYMENTREQUEST_0_AMT=107.76&ADDROVERRIDE=1&EMAIL=sibeoni%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=martine+sibeoni&PAYMENTREQUEST_0_SHIPTOPHONENUM=0675065890&PAYMENTREQUEST_0_SHIPTOSTREET=25+rue+des+4+vents&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint-nabord&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=88200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=alison.turpin%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Alison+Turpin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616883063&PAYMENTREQUEST_0_SHIPTOSTREET=608+rue+mar%C3%A9chal+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Riorges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42153&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d971906613B733143P&TIMESTAMP=2016%2d07%2d20T09%3a52%3a23Z&CORRELATIONID=6d738f5b6d85a&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=alison.turpin%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Alison+Turpin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616883063&PAYMENTREQUEST_0_SHIPTOSTREET=608+rue+mar%C3%A9chal+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Riorges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42153&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-971906613B733143P -Result : TOKEN=EC%2d971906613B733143P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T09%3a53%3a01Z&CORRELATIONID=ca9035b5d8d23&ACK=Success&VERSION=106&BUILD=000000&EMAIL=alison%2eturpin%40hotmail%2efr&PAYERID=C868SHXYDXK86&PAYERSTATUS=verified&FIRSTNAME=alison&LASTNAME=Turpin&COUNTRYCODE=FR&SHIPTONAME=alison%20Turpin&SHIPTOSTREET=608%20rue%20mar%c3%a9chal%20leclerc&SHIPTOCITY=riorges&SHIPTOZIP=42153&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0616883063&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e10&ITEMAMT=15%2e10&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=207&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e10&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e10&PAYMENTREQUEST_0_ITEMAMT=15%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=alison%20Turpin&PAYMENTREQUEST_0_SHIPTOSTREET=608%20rue%20mar%c3%a9chal%20leclerc&PAYMENTREQUEST_0_SHIPTOCITY=riorges&PAYMENTREQUEST_0_SHIPTOZIP=42153&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616883063&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-971906613B733143P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-971906613B733143P&PAYERID=C868SHXYDXK86&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=alison.turpin%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Alison+Turpin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616883063&PAYMENTREQUEST_0_SHIPTOSTREET=608+rue+mar%C3%A9chal+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Riorges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42153 -Result : TOKEN=EC%2d971906613B733143P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T09%3a53%3a03Z&CORRELATIONID=b1348ee6f78&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5MV72719MJ317532S&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T09%3a53%3a02Z&PAYMENTINFO_0_AMT=21%2e10&PAYMENTINFO_0_FEEAMT=0%2e97&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-971906613B733143P&PAYERID=C868SHXYDXK86&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=alison.turpin%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Alison+Turpin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616883063&PAYMENTREQUEST_0_SHIPTOSTREET=608+rue+mar%C3%A9chal+leclerc&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Riorges&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=42153 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=b.forbotteau%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+forbotteau&PAYMENTREQUEST_0_SHIPTOPHONENUM=0326551795&PAYMENTREQUEST_0_SHIPTOSTREET=bruno&PAYMENTREQUEST_0_SHIPTOSTREET2=51+rue+Roger+Sondag&PAYMENTREQUEST_0_SHIPTOCITY=ay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d18154604WT177293C&TIMESTAMP=2016%2d07%2d20T10%3a12%3a16Z&CORRELATIONID=e9aa5236513dc&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=b.forbotteau%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+forbotteau&PAYMENTREQUEST_0_SHIPTOPHONENUM=0326551795&PAYMENTREQUEST_0_SHIPTOSTREET=bruno&PAYMENTREQUEST_0_SHIPTOSTREET2=51+rue+Roger+Sondag&PAYMENTREQUEST_0_SHIPTOCITY=ay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51160&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-18154604WT177293C -Result : TOKEN=EC%2d18154604WT177293C&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T10%3a13%3a04Z&CORRELATIONID=1c89e76114054&ACK=Success&VERSION=106&BUILD=000000&EMAIL=b%2eforbotteau%40wanadoo%2efr&PAYERID=PH9GYE6UHKKWY&PAYERSTATUS=verified&FIRSTNAME=forbotteau&LASTNAME=bruno&COUNTRYCODE=FR&SHIPTONAME=bruno%20forbotteau&SHIPTOSTREET=bruno&SHIPTOSTREET2=51%20rue%20Roger%20Sondag&SHIPTOCITY=ay&SHIPTOZIP=51160&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0326551795&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e80&ITEMAMT=23%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_QTY0=4&L_TAXAMT0=0%2e00&L_AMT0=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e80&PAYMENTREQUEST_0_ITEMAMT=23%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=bruno%20forbotteau&PAYMENTREQUEST_0_SHIPTOSTREET=bruno&PAYMENTREQUEST_0_SHIPTOSTREET2=51%20rue%20Roger%20Sondag&PAYMENTREQUEST_0_SHIPTOCITY=ay&PAYMENTREQUEST_0_SHIPTOZIP=51160&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0326551795&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-18154604WT177293C - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-18154604WT177293C&PAYERID=PH9GYE6UHKKWY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=b.forbotteau%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+forbotteau&PAYMENTREQUEST_0_SHIPTOPHONENUM=0326551795&PAYMENTREQUEST_0_SHIPTOSTREET=bruno&PAYMENTREQUEST_0_SHIPTOSTREET2=51+rue+Roger+Sondag&PAYMENTREQUEST_0_SHIPTOCITY=ay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51160 -Result : TOKEN=EC%2d18154604WT177293C&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T10%3a13%3a07Z&CORRELATIONID=e923c0902deb2&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2PV35290XK777503K&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T10%3a13%3a05Z&PAYMENTINFO_0_AMT=26%2e80&PAYMENTINFO_0_FEEAMT=1%2e16&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-18154604WT177293C&PAYERID=PH9GYE6UHKKWY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=b.forbotteau%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+forbotteau&PAYMENTREQUEST_0_SHIPTOPHONENUM=0326551795&PAYMENTREQUEST_0_SHIPTOSTREET=bruno&PAYMENTREQUEST_0_SHIPTOSTREET2=51+rue+Roger+Sondag&PAYMENTREQUEST_0_SHIPTOCITY=ay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=51160 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=13.35&PAYMENTREQUEST_0_AMT=16.35&ADDROVERRIDE=1&EMAIL=bruno-gobert%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+GOBERT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0320611754&PAYMENTREQUEST_0_SHIPTOSTREET=2+clos+des+pr%C3%A9s&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ORCHIES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59310&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7F074606AF676731D&TIMESTAMP=2016%2d07%2d20T10%3a25%3a40Z&CORRELATIONID=583d431092033&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=13.35&PAYMENTREQUEST_0_AMT=16.35&ADDROVERRIDE=1&EMAIL=bruno-gobert%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+GOBERT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0320611754&PAYMENTREQUEST_0_SHIPTOSTREET=2+clos+des+pr%C3%A9s&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ORCHIES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59310&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7F074606AF676731D -Result : TOKEN=EC%2d7F074606AF676731D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T10%3a34%3a07Z&CORRELATIONID=f9428efe7bb57&ACK=Success&VERSION=106&BUILD=000000&EMAIL=bruno%2dgobert%40sfr%2efr&PAYERID=BJ2GHGPFPTY9A&PAYERSTATUS=verified&FIRSTNAME=bruno&LASTNAME=gobert&COUNTRYCODE=FR&SHIPTONAME=bruno%20gobert&SHIPTOSTREET=2%20clos%20des%20pr%c3%a9s&SHIPTOCITY=orchies&SHIPTOSTATE=59&SHIPTOZIP=59310&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0320611754&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=16%2e35&ITEMAMT=13%2e35&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_NAME1=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=154&L_NUMBER1=157&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=5%2e95&L_AMT1=7%2e40&L_DESC0=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&L_DESC1=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=16%2e35&PAYMENTREQUEST_0_ITEMAMT=13%2e35&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=bruno%20gobert&PAYMENTREQUEST_0_SHIPTOSTREET=2%20clos%20des%20pr%c3%a9s&PAYMENTREQUEST_0_SHIPTOCITY=orchies&PAYMENTREQUEST_0_SHIPTOSTATE=59&PAYMENTREQUEST_0_SHIPTOZIP=59310&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0320611754&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20SOS%20Maux%20de%20t%c3%aate%20%2d%20huiles%20essentielles&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=7%2e40&L_PAYMENTREQUEST_0_DESC0=Ce%20Roll%2don%20SOS%20Maux%20de%20t%c3%aate%c2%a0est%20pratique%20et%20nomade%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7F074606AF676731D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7F074606AF676731D&PAYERID=BJ2GHGPFPTY9A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=13.35&PAYMENTREQUEST_0_AMT=16.35&ADDROVERRIDE=1&EMAIL=bruno-gobert%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+GOBERT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0320611754&PAYMENTREQUEST_0_SHIPTOSTREET=2+clos+des+pr%C3%A9s&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ORCHIES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59310 -Result : TOKEN=EC%2d7F074606AF676731D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T10%3a34%3a10Z&CORRELATIONID=fd06185eb1a9f&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=142760755M567370M&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T10%3a34%3a09Z&PAYMENTINFO_0_AMT=16%2e35&PAYMENTINFO_0_FEEAMT=0%2e81&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7F074606AF676731D&PAYERID=BJ2GHGPFPTY9A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=154&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+Maux+de+t%C3%AAte+-+huiles+essentielles&L_PAYMENTREQUEST_0_DESC0=Ce+Roll-on+SOS+Maux+de+t%C3%AAte%C2%A0est+pratique+et+nomade...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=157&L_PAYMENTREQUEST_0_NAME1=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT1=7.4&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=13.35&PAYMENTREQUEST_0_AMT=16.35&ADDROVERRIDE=1&EMAIL=bruno-gobert%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=bruno+GOBERT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0320611754&PAYMENTREQUEST_0_SHIPTOSTREET=2+clos+des+pr%C3%A9s&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ORCHIES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=59310 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=76&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+onctueuse+nourrissante+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+se+prot%C3%A9ger+des+multiples+agressions+envir...&L_PAYMENTREQUEST_0_AMT2=11.15&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.95&PAYMENTREQUEST_0_AMT=40.95&ADDROVERRIDE=1&EMAIL=monique.w%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=monique+albrecht&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631598228&PAYMENTREQUEST_0_SHIPTOSTREET=28+a+Rue+du+Lac&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LINGOLSHEIM&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67380&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2M594705JK2679605&TIMESTAMP=2016%2d07%2d20T13%3a49%3a55Z&CORRELATIONID=dfa8ecd792ea2&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=76&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+onctueuse+nourrissante+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+se+prot%C3%A9ger+des+multiples+agressions+envir...&L_PAYMENTREQUEST_0_AMT2=11.15&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.95&PAYMENTREQUEST_0_AMT=40.95&ADDROVERRIDE=1&EMAIL=monique.w%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=monique+albrecht&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631598228&PAYMENTREQUEST_0_SHIPTOSTREET=28+a+Rue+du+Lac&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LINGOLSHEIM&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67380&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2M594705JK2679605 -Result : TOKEN=EC%2d2M594705JK2679605&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T13%3a51%3a47Z&CORRELATIONID=44142126cea9b&ACK=Success&VERSION=106&BUILD=000000&EMAIL=mowack%40estvideo%2efr&PAYERID=ARH3L27SGEN7U&PAYERSTATUS=verified&FIRSTNAME=monique&LASTNAME=wack&COUNTRYCODE=FR&SHIPTONAME=monique%20albrecht&SHIPTOSTREET=28%20A%20rue%20du%20lac&SHIPTOCITY=LINGOLSHEIM&SHIPTOSTATE=FR&SHIPTOZIP=67380&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0631598228&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Unconfirmed&CURRENCYCODE=EUR&AMT=40%2e95&ITEMAMT=34%2e95&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Cr%c3%a8me%20onctueuse%20nourrissante%20au%20lait%20d%27%c3%a2nesse%20bio&L_NUMBER0=160&L_NUMBER1=155&L_NUMBER2=76&L_QTY0=3&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_AMT2=11%2e15&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_DESC2=Afin%20de%20se%20prot%c3%a9ger%20des%20multiples%20agressions%20envir%2e%2e%2e&L_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_ITEMWEIGHTVALUE2=%20%20%200%2e00000&L_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_ITEMLENGTHVALUE2=%20%20%200%2e00000&L_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_ITEMWIDTHVALUE2=%20%20%200%2e00000&L_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_ITEMHEIGHTVALUE1=%20%20%200%2e00000&L_ITEMHEIGHTVALUE2=%20%20%200%2e00000&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=40%2e95&PAYMENTREQUEST_0_ITEMAMT=34%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=monique%20albrecht&PAYMENTREQUEST_0_SHIPTOSTREET=28%20A%20rue%20du%20lac&PAYMENTREQUEST_0_SHIPTOCITY=LINGOLSHEIM&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67380&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631598228&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Unconfirmed&PAYMENTREQUEST_0_ADDRESSNORMALIZATIONSTATUS=None&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Cr%c3%a8me%20onctueuse%20nourrissante%20au%20lait%20d%27%c3%a2nesse%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NUMBER2=76&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=11%2e15&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20roll%2don%20pratique%20et%20nomade%20est%20compos%c3%a9%20d%27une%20sy%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Afin%20de%20se%20prot%c3%a9ger%20des%20multiples%20agressions%20envir%2e%2e%2e&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWEIGHTVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMLENGTHVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMWIDTHVALUE2=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE0=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE1=%20%20%200%2e00000&L_PAYMENTREQUEST_0_ITEMHEIGHTVALUE2=%20%20%200%2e00000&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2M594705JK2679605 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2M594705JK2679605&PAYERID=ARH3L27SGEN7U&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=76&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+onctueuse+nourrissante+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+se+prot%C3%A9ger+des+multiples+agressions+envir...&L_PAYMENTREQUEST_0_AMT2=11.15&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.95&PAYMENTREQUEST_0_AMT=40.95&ADDROVERRIDE=1&EMAIL=monique.w%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=monique+albrecht&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631598228&PAYMENTREQUEST_0_SHIPTOSTREET=28+a+Rue+du+Lac&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LINGOLSHEIM&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67380 -Result : TOKEN=EC%2d2M594705JK2679605&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T13%3a51%3a52Z&CORRELATIONID=eb62243356759&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2NP33438LB378711F&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T13%3a51%3a51Z&PAYMENTINFO_0_AMT=40%2e95&PAYMENTINFO_0_FEEAMT=1%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2M594705JK2679605&PAYERID=ARH3L27SGEN7U&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on+pratique+et+nomade+est+compos%C3%A9+d%27une+sy...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=76&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+onctueuse+nourrissante+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+se+prot%C3%A9ger+des+multiples+agressions+envir...&L_PAYMENTREQUEST_0_AMT2=11.15&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.95&PAYMENTREQUEST_0_AMT=40.95&ADDROVERRIDE=1&EMAIL=monique.w%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=monique+albrecht&PAYMENTREQUEST_0_SHIPTOPHONENUM=0631598228&PAYMENTREQUEST_0_SHIPTOSTREET=28+a+Rue+du+Lac&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LINGOLSHEIM&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=67380 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=296&L_PAYMENTREQUEST_0_NAME2=Laurier+Bio&L_PAYMENTREQUEST_0_DESC2=C%27est+pour+ses+qualit%C3%A9s+aromatiques+que+le+laurier...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=735&L_PAYMENTREQUEST_0_NAME4=Pack+V%C3%AAtement+d%C3%A9teint&L_PAYMENTREQUEST_0_DESC4=Pack+V%C3%AAtement+d%C3%A9teint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=12.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=chantal.barbaroux%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=chantal+Barbaroux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680357086&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+Sadi+carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Stes+maries+de+la+mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13460&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7S250882N49948902&TIMESTAMP=2016%2d07%2d20T20%3a54%3a56Z&CORRELATIONID=12ada90984e62&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=296&L_PAYMENTREQUEST_0_NAME2=Laurier+Bio&L_PAYMENTREQUEST_0_DESC2=C%27est+pour+ses+qualit%C3%A9s+aromatiques+que+le+laurier...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=735&L_PAYMENTREQUEST_0_NAME4=Pack+V%C3%AAtement+d%C3%A9teint&L_PAYMENTREQUEST_0_DESC4=Pack+V%C3%AAtement+d%C3%A9teint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=12.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=chantal.barbaroux%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=chantal+Barbaroux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680357086&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+Sadi+carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Stes+maries+de+la+mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13460&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7S250882N49948902 -Result : TOKEN=EC%2d7S250882N49948902&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T20%3a56%3a00Z&CORRELATIONID=55f56d3e5d7d6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=chantal%2ebarbaroux%40hotmail%2efr&PAYERID=WNHF54JVKAZX2&PAYERSTATUS=verified&FIRSTNAME=CHANTAL&LASTNAME=BARBAROUX&COUNTRYCODE=FR&SHIPTONAME=CHANTAL%20BARBAROUX&SHIPTOSTREET=8%20rue%20Sadi%20carnot&SHIPTOCITY=Stes%20maries%20de%20la%20mer&SHIPTOZIP=13460&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0680357086&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=12%2e20&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME2=Laurier%20Bio&L_NAME3=Pack%20Peindre%20sur%20du%20papier%20peint&L_NAME4=Pack%20V%c3%aatement%20d%c3%a9teint&L_NUMBER0=163&L_NUMBER1=165&L_NUMBER2=296&L_NUMBER3=721&L_NUMBER4=735&L_QTY0=1&L_QTY1=2&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=3%2e50&L_AMT1=3%2e30&L_AMT2=2%2e10&L_AMT3=0%2e00&L_AMT4=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC2=C%27est%20pour%20ses%20qualit%c3%a9s%20aromatiques%20que%20le%20laurier%2e%2e%2e&L_DESC3=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_DESC4=Pack%20V%c3%aatement%20d%c3%a9teint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=12%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=CHANTAL%20BARBAROUX&PAYMENTREQUEST_0_SHIPTOSTREET=8%20rue%20Sadi%20carnot&PAYMENTREQUEST_0_SHIPTOCITY=Stes%20maries%20de%20la%20mer&PAYMENTREQUEST_0_SHIPTOZIP=13460&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680357086&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Laurier%20Bio&L_PAYMENTREQUEST_0_NAME3=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NAME4=Pack%20V%c3%aatement%20d%c3%a9teint&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NUMBER2=296&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NUMBER4=735&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e50&L_PAYMENTREQUEST_0_AMT1=3%2e30&L_PAYMENTREQUEST_0_AMT2=2%2e10&L_PAYMENTREQUEST_0_AMT3=0%2e00&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=C%27est%20pour%20ses%20qualit%c3%a9s%20aromatiques%20que%20le%20laurier%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Pack%20V%c3%aatement%20d%c3%a9teint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7S250882N49948902 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7S250882N49948902&PAYERID=WNHF54JVKAZX2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=296&L_PAYMENTREQUEST_0_NAME2=Laurier+Bio&L_PAYMENTREQUEST_0_DESC2=C%27est+pour+ses+qualit%C3%A9s+aromatiques+que+le+laurier...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=735&L_PAYMENTREQUEST_0_NAME4=Pack+V%C3%AAtement+d%C3%A9teint&L_PAYMENTREQUEST_0_DESC4=Pack+V%C3%AAtement+d%C3%A9teint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=12.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=chantal.barbaroux%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=chantal+Barbaroux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680357086&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+Sadi+carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Stes+maries+de+la+mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13460 -Result : TOKEN=EC%2d7S250882N49948902&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T20%3a56%3a03Z&CORRELATIONID=82b0622488a97&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=72Y69277GD5733639&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d20T20%3a56%3a02Z&PAYMENTINFO_0_AMT=18%2e20&PAYMENTINFO_0_FEEAMT=0%2e87&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7S250882N49948902&PAYERID=WNHF54JVKAZX2&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=296&L_PAYMENTREQUEST_0_NAME2=Laurier+Bio&L_PAYMENTREQUEST_0_DESC2=C%27est+pour+ses+qualit%C3%A9s+aromatiques+que+le+laurier...&L_PAYMENTREQUEST_0_AMT2=2.1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=721&L_PAYMENTREQUEST_0_NAME3=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC3=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT3=-0&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=735&L_PAYMENTREQUEST_0_NAME4=Pack+V%C3%AAtement+d%C3%A9teint&L_PAYMENTREQUEST_0_DESC4=Pack+V%C3%AAtement+d%C3%A9teint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=12.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=chantal.barbaroux%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=chantal+Barbaroux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0680357086&PAYMENTREQUEST_0_SHIPTOSTREET=8+rue+Sadi+carnot&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Stes+maries+de+la+mer&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13460 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d21337847AV936350T&TIMESTAMP=2016%2d07%2d20T23%3a36%3a40Z&CORRELATIONID=6e7fdee9b2d6&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T -Result : TOKEN=EC%2d21337847AV936350T&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d20T23%3a37%3a51Z&CORRELATIONID=6ddcfcb5fcef&ACK=Success&VERSION=106&BUILD=000000&EMAIL=musico_nacho%40hotmail%2ecom&PAYERID=QEWS2AWLZSRCS&PAYERSTATUS=unverified&FIRSTNAME=Ignacio&LASTNAME=Arnaldi&COUNTRYCODE=FR&SHIPTONAME=Ignacio%20Arnaldi&SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&SHIPTOCITY=Pontivy&SHIPTOSTATE=BRETAGNE&SHIPTOZIP=56300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=075876212&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ignacio%20Arnaldi&PAYMENTREQUEST_0_SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOSTATE=BRETAGNE&PAYMENTREQUEST_0_SHIPTOZIP=56300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 -Result : TOKEN=EC%2d21337847AV936350T&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T23%3a37%3a54Z&CORRELATIONID=f1b0a81f717aa&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T -Result : TOKEN=EC%2d21337847AV936350T&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionFailed&TIMESTAMP=2016%2d07%2d20T23%3a41%3a53Z&CORRELATIONID=397c4cd12b389&ACK=Success&VERSION=106&BUILD=000000&EMAIL=musico_nacho%40hotmail%2ecom&PAYERID=QEWS2AWLZSRCS&PAYERSTATUS=unverified&FIRSTNAME=Ignacio&LASTNAME=Arnaldi&COUNTRYCODE=FR&SHIPTONAME=Ignacio%20Arnaldi&SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&SHIPTOCITY=Pontivy&SHIPTOSTATE=BRETAGNE&SHIPTOZIP=56300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=075876212&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ignacio%20Arnaldi&PAYMENTREQUEST_0_SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOSTATE=BRETAGNE&PAYMENTREQUEST_0_SHIPTOZIP=56300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 -Result : TOKEN=EC%2d21337847AV936350T&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T23%3a41%3a56Z&CORRELATIONID=d79fcf3a63183&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T -Result : TOKEN=EC%2d21337847AV936350T&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionFailed&TIMESTAMP=2016%2d07%2d20T23%3a43%3a49Z&CORRELATIONID=200e8934b07c5&ACK=Success&VERSION=106&BUILD=000000&EMAIL=musico_nacho%40hotmail%2ecom&PAYERID=QEWS2AWLZSRCS&PAYERSTATUS=unverified&FIRSTNAME=Ignacio&LASTNAME=Arnaldi&COUNTRYCODE=FR&SHIPTONAME=Ignacio%20Arnaldi&SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&SHIPTOCITY=Pontivy&SHIPTOSTATE=BRETAGNE&SHIPTOZIP=56300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=075876212&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ignacio%20Arnaldi&PAYMENTREQUEST_0_SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOSTATE=BRETAGNE&PAYMENTREQUEST_0_SHIPTOZIP=56300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 -Result : TOKEN=EC%2d21337847AV936350T&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T23%3a43%3a52Z&CORRELATIONID=75d4478dc2698&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T -Result : TOKEN=EC%2d21337847AV936350T&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionFailed&TIMESTAMP=2016%2d07%2d20T23%3a44%3a19Z&CORRELATIONID=671ac585a1cf&ACK=Success&VERSION=106&BUILD=000000&EMAIL=musico_nacho%40hotmail%2ecom&PAYERID=QEWS2AWLZSRCS&PAYERSTATUS=unverified&FIRSTNAME=Ignacio&LASTNAME=Arnaldi&COUNTRYCODE=FR&SHIPTONAME=Ignacio%20Arnaldi&SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&SHIPTOCITY=Pontivy&SHIPTOSTATE=BRETAGNE&SHIPTOZIP=56300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=075876212&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ignacio%20Arnaldi&PAYMENTREQUEST_0_SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOSTATE=BRETAGNE&PAYMENTREQUEST_0_SHIPTOZIP=56300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 -Result : TOKEN=EC%2d21337847AV936350T&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T23%3a44%3a21Z&CORRELATIONID=4542045b1ee42&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T -Result : TOKEN=EC%2d21337847AV936350T&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionFailed&TIMESTAMP=2016%2d07%2d20T23%3a44%3a55Z&CORRELATIONID=c7123138840b6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=musico_nacho%40hotmail%2ecom&PAYERID=QEWS2AWLZSRCS&PAYERSTATUS=unverified&FIRSTNAME=Ignacio&LASTNAME=Arnaldi&COUNTRYCODE=FR&SHIPTONAME=Ignacio%20Arnaldi&SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&SHIPTOCITY=Pontivy&SHIPTOSTATE=BRETAGNE&SHIPTOZIP=56300&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=075876212&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ignacio%20Arnaldi&PAYMENTREQUEST_0_SHIPTOSTREET=15%20ruelles%20des%20petites%20douves&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOSTATE=BRETAGNE&PAYMENTREQUEST_0_SHIPTOZIP=56300&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 -Result : TOKEN=EC%2d21337847AV936350T&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d20T23%3a44%3a58Z&CORRELATIONID=11e22fac91d18&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21337847AV936350T&PAYERID=QEWS2AWLZSRCS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=musico_nacho%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ignacio+Arnaldi&PAYMENTREQUEST_0_SHIPTOPHONENUM=075876212&PAYMENTREQUEST_0_SHIPTOSTREET=15++ruelles+des+petites+douves&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Pontivy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56300 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=puichai%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=thawatchai+sitaengsuk&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652204993&PAYMENTREQUEST_0_SHIPTOSTREET=11+AVENUE+FAIDHERBE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LE+PRE+ST+GERVAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93310&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2V623343GJ413961M&TIMESTAMP=2016%2d07%2d20T23%3a57%3a59Z&CORRELATIONID=72516a7358633&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=puichai%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=thawatchai+sitaengsuk&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652204993&PAYMENTREQUEST_0_SHIPTOSTREET=11+AVENUE+FAIDHERBE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LE+PRE+ST+GERVAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93310&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2V623343GJ413961M -Result : TOKEN=EC%2d2V623343GJ413961M&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d21T00%3a01%3a49Z&CORRELATIONID=7751be432fcf0&ACK=Success&VERSION=106&BUILD=000000&EMAIL=mrthawatchai_1977%40hotmail%2ecom&PAYERID=2XM2BSYSMMNA4&PAYERSTATUS=unverified&FIRSTNAME=sitaengsuk&LASTNAME=nathalie&COUNTRYCODE=FR&SHIPTONAME=thawatchai%20sitaengsuk&SHIPTOSTREET=11%20AVENUE%20FAIDHERBE&SHIPTOCITY=LE%20PRE%20ST%20GERVAIS&SHIPTOZIP=93310&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0652204993&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=43%2e90&ITEMAMT=37%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_NUMBER0=3&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=37%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=43%2e90&PAYMENTREQUEST_0_ITEMAMT=37%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=thawatchai%20sitaengsuk&PAYMENTREQUEST_0_SHIPTOSTREET=11%20AVENUE%20FAIDHERBE&PAYMENTREQUEST_0_SHIPTOCITY=LE%20PRE%20ST%20GERVAIS&PAYMENTREQUEST_0_SHIPTOZIP=93310&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652204993&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=37%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2V623343GJ413961M - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2V623343GJ413961M&PAYERID=2XM2BSYSMMNA4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=puichai%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=thawatchai+sitaengsuk&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652204993&PAYMENTREQUEST_0_SHIPTOSTREET=11+AVENUE+FAIDHERBE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LE+PRE+ST+GERVAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93310 -Result : TOKEN=EC%2d2V623343GJ413961M&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d21T00%3a01%3a53Z&CORRELATIONID=d3084e0a4645f&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8A711706VM0737457&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d21T00%3a01%3a51Z&PAYMENTINFO_0_AMT=43%2e90&PAYMENTINFO_0_FEEAMT=1%2e74&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2V623343GJ413961M&PAYERID=2XM2BSYSMMNA4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=37.9&PAYMENTREQUEST_0_AMT=43.90&ADDROVERRIDE=1&EMAIL=puichai%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=thawatchai+sitaengsuk&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652204993&PAYMENTREQUEST_0_SHIPTOSTREET=11+AVENUE+FAIDHERBE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=LE+PRE+ST+GERVAIS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93310 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=20&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+peinture+maison+ext%C3%A9rieur+et+int%C3%A9rieur+-+D%C3%A9cap%27Peintures+Guard+5kg&L_PAYMENTREQUEST_0_DESC0=D%C3%A9capant+peinture+%C3%A9cologique+utilis%C3%A9+pour+maison+e...&L_PAYMENTREQUEST_0_AMT0=66.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=168&L_PAYMENTREQUEST_0_NAME3=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC3=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT3=5.5&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=80.26&PAYMENTREQUEST_0_AMT=80.26&ADDROVERRIDE=1&EMAIL=lbs3%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence++Bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616802998&PAYMENTREQUEST_0_SHIPTOSTREET=Grand+Cosquet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Locmaria&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d36C27372212150546&TIMESTAMP=2016%2d07%2d21T08%3a11%3a45Z&CORRELATIONID=30308222edbdd&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=20&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+peinture+maison+ext%C3%A9rieur+et+int%C3%A9rieur+-+D%C3%A9cap%27Peintures+Guard+5kg&L_PAYMENTREQUEST_0_DESC0=D%C3%A9capant+peinture+%C3%A9cologique+utilis%C3%A9+pour+maison+e...&L_PAYMENTREQUEST_0_AMT0=66.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=168&L_PAYMENTREQUEST_0_NAME3=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC3=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT3=5.5&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=80.26&PAYMENTREQUEST_0_AMT=80.26&ADDROVERRIDE=1&EMAIL=lbs3%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence++Bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616802998&PAYMENTREQUEST_0_SHIPTOSTREET=Grand+Cosquet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Locmaria&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-36C27372212150546 -Result : TOKEN=EC%2d36C27372212150546&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d21T08%3a12%3a33Z&CORRELATIONID=5a869ca118492&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=lbs3%40hotmail%2efr&PAYERID=KP5ZKKQZ8QKJW&PAYERSTATUS=verified&FIRSTNAME=Laurence&LASTNAME=Bourgeois&COUNTRYCODE=FR&SHIPTONAME=Laurence%20%20Bourgeois&SHIPTOSTREET=Grand%20Cosquet&SHIPTOCITY=Locmaria&SHIPTOZIP=56360&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0616802998&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=80%2e26&ITEMAMT=80%2e26&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=D%c3%a9capant%20peinture%20maison%20ext%c3%a9rieur%20et%20int%c3%a9rieur%20%2d%20D%c3%a9cap%27Peintures%20Guard%205kg&L_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_NAME2=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_NAME3=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_NAME4=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_NUMBER0=20&L_NUMBER1=164&L_NUMBER2=166&L_NUMBER3=168&L_NUMBER4=730&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=66%2e30&L_AMT1=6%2e16&L_AMT2=2%2e30&L_AMT3=5%2e50&L_AMT4=0%2e00&L_DESC0=D%c3%a9capant%20peinture%20%c3%a9cologique%20utilis%c3%a9%20pour%20maison%20e%2e%2e%2e&L_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_DESC2=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_DESC3=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&L_DESC4=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=80%2e26&PAYMENTREQUEST_0_ITEMAMT=80%2e26&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Laurence%20%20Bourgeois&PAYMENTREQUEST_0_SHIPTOSTREET=Grand%20Cosquet&PAYMENTREQUEST_0_SHIPTOCITY=Locmaria&PAYMENTREQUEST_0_SHIPTOZIP=56360&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616802998&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=D%c3%a9capant%20peinture%20maison%20ext%c3%a9rieur%20et%20int%c3%a9rieur%20%2d%20D%c3%a9cap%27Peintures%20Guard%205kg&L_PAYMENTREQUEST_0_NAME1=Savon%20noir%20mou%20concentr%c3%a9%2c%20%c3%a0%20l%27huile%20de%20lin%20%2d%20Nettoyant%20multi%2dusage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Terre%20de%20Sommi%c3%a8res%2c%20d%c3%a9tachant%20%c3%a0%20sec%20naturel&L_PAYMENTREQUEST_0_NAME4=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_PAYMENTREQUEST_0_NUMBER0=20&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NUMBER3=168&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=66%2e30&L_PAYMENTREQUEST_0_AMT1=6%2e16&L_PAYMENTREQUEST_0_AMT2=2%2e30&L_PAYMENTREQUEST_0_AMT3=5%2e50&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_DESC0=D%c3%a9capant%20peinture%20%c3%a9cologique%20utilis%c3%a9%20pour%20maison%20e%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20savon%20noir%20mou%20concentr%c3%a9%20%c3%a0%20l%27huile%20de%20lin%20est%20u%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=D%c3%a9tachant%20%c3%a0%20sec%20naturelMulti%2dusages%20%3a%20surfaces%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-36C27372212150546 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-36C27372212150546&PAYERID=KP5ZKKQZ8QKJW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=20&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+peinture+maison+ext%C3%A9rieur+et+int%C3%A9rieur+-+D%C3%A9cap%27Peintures+Guard+5kg&L_PAYMENTREQUEST_0_DESC0=D%C3%A9capant+peinture+%C3%A9cologique+utilis%C3%A9+pour+maison+e...&L_PAYMENTREQUEST_0_AMT0=66.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=168&L_PAYMENTREQUEST_0_NAME3=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC3=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT3=5.5&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=80.26&PAYMENTREQUEST_0_AMT=80.26&ADDROVERRIDE=1&EMAIL=lbs3%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence++Bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616802998&PAYMENTREQUEST_0_SHIPTOSTREET=Grand+Cosquet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Locmaria&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56360 -Result : TOKEN=EC%2d36C27372212150546&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d21T08%3a12%3a35Z&CORRELATIONID=81c2084c535b0&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8R213116KF998550N&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d21T08%3a12%3a34Z&PAYMENTINFO_0_AMT=80%2e26&PAYMENTINFO_0_FEEAMT=2%2e98&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-36C27372212150546&PAYERID=KP5ZKKQZ8QKJW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=20&L_PAYMENTREQUEST_0_NAME0=D%C3%A9capant+peinture+maison+ext%C3%A9rieur+et+int%C3%A9rieur+-+D%C3%A9cap%27Peintures+Guard+5kg&L_PAYMENTREQUEST_0_DESC0=D%C3%A9capant+peinture+%C3%A9cologique+utilis%C3%A9+pour+maison+e...&L_PAYMENTREQUEST_0_AMT0=66.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=164&L_PAYMENTREQUEST_0_NAME1=Savon+noir+mou+concentr%C3%A9%2C+%C3%A0+l%27huile+de+lin+-+Nettoyant+multi-usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+savon+noir+mou+concentr%C3%A9+%C3%A0+l%27huile+de+lin+est+u...&L_PAYMENTREQUEST_0_AMT1=6.16&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.3&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=168&L_PAYMENTREQUEST_0_NAME3=Terre+de+Sommi%C3%A8res%2C+d%C3%A9tachant+%C3%A0+sec+naturel&L_PAYMENTREQUEST_0_DESC3=D%C3%A9tachant+%C3%A0+sec+naturelMulti-usages+%3A+surfaces+et+...&L_PAYMENTREQUEST_0_AMT3=5.5&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=730&L_PAYMENTREQUEST_0_NAME4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC4=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=80.26&PAYMENTREQUEST_0_AMT=80.26&ADDROVERRIDE=1&EMAIL=lbs3%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence++Bourgeois&PAYMENTREQUEST_0_SHIPTOPHONENUM=0616802998&PAYMENTREQUEST_0_SHIPTOSTREET=Grand+Cosquet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Locmaria&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56360 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.06&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=143&L_PAYMENTREQUEST_0_NAME1=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC1=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT1=5.19&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=7&L_PAYMENTREQUEST_0_NAME2=D%C3%A9tachant+d%C3%A9graissant+textile+Texclean+TG+%2B+2+Sprays+anti+taches+TexGuard&L_PAYMENTREQUEST_0_DESC2=Ce+pack+se+compose+de+2+produits+professionnels+qu...&L_PAYMENTREQUEST_0_AMT2=17.12&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=3&L_PAYMENTREQUEST_0_NAME3=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC3=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT3=15.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=2326&L_PAYMENTREQUEST_0_NAME4=SPM-JEUW&L_PAYMENTREQUEST_0_DESC4=SPM-JEUW...&L_PAYMENTREQUEST_0_AMT4=-2.64&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.14&PAYMENTREQUEST_0_AMT=50.14&ADDROVERRIDE=1&EMAIL=thao%40toutpratique.com&PAYMENTREQUEST_0_SHIPTONAME=Phuong+Thao+NGUYEN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637239156&PAYMENTREQUEST_0_SHIPTOSTREET=2+avenue+Ren%C3%A9+Panhard&PAYMENTREQUEST_0_SHIPTOSTREET2=BAL+13&PAYMENTREQUEST_0_SHIPTOCITY=Choisy+Le+Roi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5TC10536E20241424&TIMESTAMP=2016%2d07%2d21T08%3a33%3a57Z&CORRELATIONID=f0fd449aa4539&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.06&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=143&L_PAYMENTREQUEST_0_NAME1=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC1=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT1=5.19&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=7&L_PAYMENTREQUEST_0_NAME2=D%C3%A9tachant+d%C3%A9graissant+textile+Texclean+TG+%2B+2+Sprays+anti+taches+TexGuard&L_PAYMENTREQUEST_0_DESC2=Ce+pack+se+compose+de+2+produits+professionnels+qu...&L_PAYMENTREQUEST_0_AMT2=17.12&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=3&L_PAYMENTREQUEST_0_NAME3=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC3=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT3=15.16&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=2326&L_PAYMENTREQUEST_0_NAME4=SPM-JEUW&L_PAYMENTREQUEST_0_DESC4=SPM-JEUW...&L_PAYMENTREQUEST_0_AMT4=-2.64&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.14&PAYMENTREQUEST_0_AMT=50.14&ADDROVERRIDE=1&EMAIL=thao%40toutpratique.com&PAYMENTREQUEST_0_SHIPTONAME=Phuong+Thao+NGUYEN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637239156&PAYMENTREQUEST_0_SHIPTOSTREET=2+avenue+Ren%C3%A9+Panhard&PAYMENTREQUEST_0_SHIPTOSTREET2=BAL+13&PAYMENTREQUEST_0_SHIPTOCITY=Choisy+Le+Roi&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=dominique.joseph2%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=DOMINIQUE+JOSEPH&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33130216972&PAYMENTREQUEST_0_SHIPTOSTREET=35+BIS+RUE+DU+MARECHAL+GALLIENI&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERSAILLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9AH710792E319134A&TIMESTAMP=2016%2d07%2d21T10%3a23%3a45Z&CORRELATIONID=291c02c1deb87&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=dominique.joseph2%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=DOMINIQUE+JOSEPH&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33130216972&PAYMENTREQUEST_0_SHIPTOSTREET=35+BIS+RUE+DU+MARECHAL+GALLIENI&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERSAILLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9AH710792E319134A -Result : TOKEN=EC%2d9AH710792E319134A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d21T10%3a24%3a39Z&CORRELATIONID=d2ad25c95c4bc&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=dominique%2ejoseph2%40club%2dinternet%2efr&PAYERID=F4AR626ZYYCFU&PAYERSTATUS=verified&FIRSTNAME=Dominique&LASTNAME=JOSEPH&COUNTRYCODE=FR&SHIPTONAME=DOMINIQUE%20JOSEPH&SHIPTOSTREET=35%20BIS%20RUE%20DU%20MARECHAL%20GALLIENI&SHIPTOCITY=VERSAILLES&SHIPTOSTATE=Ile%2dde%2dFrance&SHIPTOZIP=78000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33130216972&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e80&ITEMAMT=23%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_QTY0=4&L_TAXAMT0=0%2e00&L_AMT0=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e80&PAYMENTREQUEST_0_ITEMAMT=23%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=DOMINIQUE%20JOSEPH&PAYMENTREQUEST_0_SHIPTOSTREET=35%20BIS%20RUE%20DU%20MARECHAL%20GALLIENI&PAYMENTREQUEST_0_SHIPTOCITY=VERSAILLES&PAYMENTREQUEST_0_SHIPTOSTATE=Ile%2dde%2dFrance&PAYMENTREQUEST_0_SHIPTOZIP=78000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33130216972&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_QTY0=4&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9AH710792E319134A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9AH710792E319134A&PAYERID=F4AR626ZYYCFU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=dominique.joseph2%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=DOMINIQUE+JOSEPH&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33130216972&PAYMENTREQUEST_0_SHIPTOSTREET=35+BIS+RUE+DU+MARECHAL+GALLIENI&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERSAILLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78000 -Result : TOKEN=EC%2d9AH710792E319134A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d21T10%3a24%3a43Z&CORRELATIONID=b6ba30f270fd2&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3CP044382U609082R&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d21T10%3a24%3a41Z&PAYMENTINFO_0_AMT=26%2e80&PAYMENTINFO_0_FEEAMT=1%2e16&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9AH710792E319134A&PAYERID=F4AR626ZYYCFU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.8&PAYMENTREQUEST_0_AMT=26.80&ADDROVERRIDE=1&EMAIL=dominique.joseph2%40club-internet.fr&PAYMENTREQUEST_0_SHIPTONAME=DOMINIQUE+JOSEPH&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33130216972&PAYMENTREQUEST_0_SHIPTOSTREET=35+BIS+RUE+DU+MARECHAL+GALLIENI&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VERSAILLES&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=aglever%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=andre+glever&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612595123&PAYMENTREQUEST_0_SHIPTOSTREET=11a+rue+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=denneville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50580&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d86G24966GY7226519&TIMESTAMP=2016%2d07%2d21T12%3a26%3a57Z&CORRELATIONID=a0791b2c17dc&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=aglever%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=andre+glever&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612595123&PAYMENTREQUEST_0_SHIPTOSTREET=11a+rue+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=denneville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50580&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-86G24966GY7226519 -Result : TOKEN=EC%2d86G24966GY7226519&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d21T12%3a27%3a31Z&CORRELATIONID=1c956e9ee1037&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=aglever%40sfr%2efr&PAYERID=LJTWBQYKLTDTN&PAYERSTATUS=verified&FIRSTNAME=andre&LASTNAME=glever&COUNTRYCODE=FR&SHIPTONAME=Andre%20Glever&SHIPTOSTREET=11A%20rue%20du%20nord&SHIPTOCITY=Denneville&SHIPTOZIP=50580&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0612595123&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Andre%20Glever&PAYMENTREQUEST_0_SHIPTOSTREET=11A%20rue%20du%20nord&PAYMENTREQUEST_0_SHIPTOCITY=Denneville&PAYMENTREQUEST_0_SHIPTOZIP=50580&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612595123&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-86G24966GY7226519 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-86G24966GY7226519&PAYERID=LJTWBQYKLTDTN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=aglever%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=andre+glever&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612595123&PAYMENTREQUEST_0_SHIPTOSTREET=11a+rue+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=denneville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50580 -Result : TOKEN=EC%2d86G24966GY7226519&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d21T12%3a27%3a33Z&CORRELATIONID=eabd28976df4&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3NR40145AF542684J&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d21T12%3a27%3a32Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-86G24966GY7226519&PAYERID=LJTWBQYKLTDTN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=aglever%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=andre+glever&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612595123&PAYMENTREQUEST_0_SHIPTOSTREET=11a+rue+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=denneville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=50580 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=106&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC1=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT1=6.25&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=173&L_PAYMENTREQUEST_0_NAME2=G%C3%A9lule+D%C3%A9stocke+cellulite+Carnitine+%2F+Marc+de+raisin+%2F+Papaye&L_PAYMENTREQUEST_0_DESC2=Pour+agir+sur+votre+cellulite%2C+de+fa%C3%A7on+naturelle....&L_PAYMENTREQUEST_0_AMT2=5.99&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=228&L_PAYMENTREQUEST_0_NAME3=Lotion+Insectifuge+Chats&L_PAYMENTREQUEST_0_DESC3=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT3=15.8&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=165&L_PAYMENTREQUEST_0_NAME4=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC4=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT4=3.3&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=160&L_PAYMENTREQUEST_0_NAME5=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC5=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT5=5.95&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=52.39&PAYMENTREQUEST_0_AMT=52.39&ADDROVERRIDE=1&EMAIL=sylvie.gonzalez79%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=SYLVIE+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676295193&PAYMENTREQUEST_0_SHIPTOSTREET=9+route+de+Li%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+GENARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=79500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d27W30206RY878601W&TIMESTAMP=2016%2d07%2d22T07%3a01%3a10Z&CORRELATIONID=bf8f3687942c&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=106&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC1=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT1=6.25&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=173&L_PAYMENTREQUEST_0_NAME2=G%C3%A9lule+D%C3%A9stocke+cellulite+Carnitine+%2F+Marc+de+raisin+%2F+Papaye&L_PAYMENTREQUEST_0_DESC2=Pour+agir+sur+votre+cellulite%2C+de+fa%C3%A7on+naturelle....&L_PAYMENTREQUEST_0_AMT2=5.99&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=228&L_PAYMENTREQUEST_0_NAME3=Lotion+Insectifuge+Chats&L_PAYMENTREQUEST_0_DESC3=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT3=15.8&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=165&L_PAYMENTREQUEST_0_NAME4=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC4=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT4=3.3&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=160&L_PAYMENTREQUEST_0_NAME5=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC5=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT5=5.95&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=52.39&PAYMENTREQUEST_0_AMT=52.39&ADDROVERRIDE=1&EMAIL=sylvie.gonzalez79%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=SYLVIE+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676295193&PAYMENTREQUEST_0_SHIPTOSTREET=9+route+de+Li%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+GENARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=79500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-27W30206RY878601W -Result : TOKEN=EC%2d27W30206RY878601W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T07%3a03%3a04Z&CORRELATIONID=8334d12872d93&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=sylvie%2egonzalez79%40yahoo%2efr&PAYERID=T3NJG5ZSU9W6N&PAYERSTATUS=unverified&FIRSTNAME=Gerard&LASTNAME=Gonzalez&COUNTRYCODE=FR&SHIPTONAME=Sylvie%20GONZALEZ&SHIPTOSTREET=9%20route%20de%20Li%c3%a9&SHIPTOCITY=SAINT%20GENARD&SHIPTOZIP=79500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0676295193&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=52%2e39&ITEMAMT=52%2e39&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NAME1=Huile%20100%20%25%20naturelle%20P%c3%a2querettes&L_NAME2=G%c3%a9lule%20D%c3%a9stocke%20cellulite%20Carnitine%20%2f%20Marc%20de%20raisin%20%2f%20Papaye&L_NAME3=Lotion%20Insectifuge%20Chats&L_NAME4=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME5=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=207&L_NUMBER1=106&L_NUMBER2=173&L_NUMBER3=228&L_NUMBER4=165&L_NUMBER5=160&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=15%2e10&L_AMT1=6%2e25&L_AMT2=5%2e99&L_AMT3=15%2e80&L_AMT4=3%2e30&L_AMT5=5%2e95&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_DESC1=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20aux%20f%2e%2e%2e&L_DESC2=Pour%20agir%20sur%20votre%20cellulite%2c%20de%20fa%c3%a7on%20naturelle%2e%2e%2e%2e&L_DESC3=Permet%20de%20prot%c3%a9ger%20le%20chat%2c%20des%20puces%2c%20des%20tiques%2c%2e%2e%2e&L_DESC4=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC5=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=52%2e39&PAYMENTREQUEST_0_ITEMAMT=52%2e39&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Sylvie%20GONZALEZ&PAYMENTREQUEST_0_SHIPTOSTREET=9%20route%20de%20Li%c3%a9&PAYMENTREQUEST_0_SHIPTOCITY=SAINT%20GENARD&PAYMENTREQUEST_0_SHIPTOZIP=79500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676295193&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NAME1=Huile%20100%20%25%20naturelle%20P%c3%a2querettes&L_PAYMENTREQUEST_0_NAME2=G%c3%a9lule%20D%c3%a9stocke%20cellulite%20Carnitine%20%2f%20Marc%20de%20raisin%20%2f%20Papaye&L_PAYMENTREQUEST_0_NAME3=Lotion%20Insectifuge%20Chats&L_PAYMENTREQUEST_0_NAME4=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME5=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NUMBER1=106&L_PAYMENTREQUEST_0_NUMBER2=173&L_PAYMENTREQUEST_0_NUMBER3=228&L_PAYMENTREQUEST_0_NUMBER4=165&L_PAYMENTREQUEST_0_NUMBER5=160&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_AMT1=6%2e25&L_PAYMENTREQUEST_0_AMT2=5%2e99&L_PAYMENTREQUEST_0_AMT3=15%2e80&L_PAYMENTREQUEST_0_AMT4=3%2e30&L_PAYMENTREQUEST_0_AMT5=5%2e95&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Floressance%20par%20nature%20a%20s%c3%a9lectionn%c3%a9%20l%27huile%20aux%20f%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Pour%20agir%20sur%20votre%20cellulite%2c%20de%20fa%c3%a7on%20naturelle%2e%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Permet%20de%20prot%c3%a9ger%20le%20chat%2c%20des%20puces%2c%20des%20tiques%2c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-27W30206RY878601W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-27W30206RY878601W&PAYERID=T3NJG5ZSU9W6N&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=106&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC1=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT1=6.25&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=173&L_PAYMENTREQUEST_0_NAME2=G%C3%A9lule+D%C3%A9stocke+cellulite+Carnitine+%2F+Marc+de+raisin+%2F+Papaye&L_PAYMENTREQUEST_0_DESC2=Pour+agir+sur+votre+cellulite%2C+de+fa%C3%A7on+naturelle....&L_PAYMENTREQUEST_0_AMT2=5.99&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=228&L_PAYMENTREQUEST_0_NAME3=Lotion+Insectifuge+Chats&L_PAYMENTREQUEST_0_DESC3=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT3=15.8&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=165&L_PAYMENTREQUEST_0_NAME4=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC4=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT4=3.3&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=160&L_PAYMENTREQUEST_0_NAME5=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC5=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT5=5.95&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=52.39&PAYMENTREQUEST_0_AMT=52.39&ADDROVERRIDE=1&EMAIL=sylvie.gonzalez79%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=SYLVIE+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676295193&PAYMENTREQUEST_0_SHIPTOSTREET=9+route+de+Li%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+GENARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=79500 -Result : TOKEN=EC%2d27W30206RY878601W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T07%3a03%3a07Z&CORRELATIONID=a5689f737aae9&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0JW213193F539251W&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T07%3a03%3a06Z&PAYMENTINFO_0_AMT=52%2e39&PAYMENTINFO_0_FEEAMT=2%2e03&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-27W30206RY878601W&PAYERID=T3NJG5ZSU9W6N&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=106&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+P%C3%A2querettes&L_PAYMENTREQUEST_0_DESC1=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+aux+f...&L_PAYMENTREQUEST_0_AMT1=6.25&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=173&L_PAYMENTREQUEST_0_NAME2=G%C3%A9lule+D%C3%A9stocke+cellulite+Carnitine+%2F+Marc+de+raisin+%2F+Papaye&L_PAYMENTREQUEST_0_DESC2=Pour+agir+sur+votre+cellulite%2C+de+fa%C3%A7on+naturelle....&L_PAYMENTREQUEST_0_AMT2=5.99&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=228&L_PAYMENTREQUEST_0_NAME3=Lotion+Insectifuge+Chats&L_PAYMENTREQUEST_0_DESC3=Permet+de+prot%C3%A9ger+le+chat%2C+des+puces%2C+des+tiques%2C...&L_PAYMENTREQUEST_0_AMT3=15.8&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=165&L_PAYMENTREQUEST_0_NAME4=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC4=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT4=3.3&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=160&L_PAYMENTREQUEST_0_NAME5=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC5=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT5=5.95&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=52.39&PAYMENTREQUEST_0_AMT=52.39&ADDROVERRIDE=1&EMAIL=sylvie.gonzalez79%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=SYLVIE+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0676295193&PAYMENTREQUEST_0_SHIPTOSTREET=9+route+de+Li%C3%A9&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+GENARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=79500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=mylenesaud%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=henri++martarello&PAYMENTREQUEST_0_SHIPTOPHONENUM=0621121166&PAYMENTREQUEST_0_SHIPTOSTREET=les+bastides+du+puit+villa+a+216+chemin+de+st+anne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+vallier+de+thiey&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06460&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3RC29597L0495005N&TIMESTAMP=2016%2d07%2d22T08%3a09%3a05Z&CORRELATIONID=cd05057041f0c&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=mylenesaud%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=henri++martarello&PAYMENTREQUEST_0_SHIPTOPHONENUM=0621121166&PAYMENTREQUEST_0_SHIPTOSTREET=les+bastides+du+puit+villa+a+216+chemin+de+st+anne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+vallier+de+thiey&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06460&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3RC29597L0495005N -Result : TOKEN=EC%2d3RC29597L0495005N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T08%3a09%3a38Z&CORRELATIONID=4ca1a13e641c6&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=mylenesaud%40gmail%2efr&PAYERID=5SZYC55QHDAEE&PAYERSTATUS=unverified&FIRSTNAME=mauricette&LASTNAME=saud&COUNTRYCODE=FR&SHIPTONAME=henri%20%20martarello&SHIPTOSTREET=les%20bastides%20du%20puit%20villa%20a%20216%20chemin%20de%20st%20anne&SHIPTOCITY=st%20vallier%20de%20thiey&SHIPTOZIP=06460&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0621121166&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=14%2e90&ITEMAMT=11%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=14%2e90&PAYMENTREQUEST_0_ITEMAMT=11%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=henri%20%20martarello&PAYMENTREQUEST_0_SHIPTOSTREET=les%20bastides%20du%20puit%20villa%20a%20216%20chemin%20de%20st%20anne&PAYMENTREQUEST_0_SHIPTOCITY=st%20vallier%20de%20thiey&PAYMENTREQUEST_0_SHIPTOZIP=06460&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0621121166&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3RC29597L0495005N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3RC29597L0495005N&PAYERID=5SZYC55QHDAEE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=mylenesaud%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=henri++martarello&PAYMENTREQUEST_0_SHIPTOPHONENUM=0621121166&PAYMENTREQUEST_0_SHIPTOSTREET=les+bastides+du+puit+villa+a+216+chemin+de+st+anne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+vallier+de+thiey&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06460 -Result : TOKEN=EC%2d3RC29597L0495005N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T08%3a09%3a41Z&CORRELATIONID=62b3cc087fb51&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6CA21186D0845112J&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T08%3a09%3a40Z&PAYMENTINFO_0_AMT=14%2e90&PAYMENTINFO_0_FEEAMT=0%2e76&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3RC29597L0495005N&PAYERID=5SZYC55QHDAEE&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=mylenesaud%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=henri++martarello&PAYMENTREQUEST_0_SHIPTOPHONENUM=0621121166&PAYMENTREQUEST_0_SHIPTOSTREET=les+bastides+du+puit+villa+a+216+chemin+de+st+anne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=st+vallier+de+thiey&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06460 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=213&L_PAYMENTREQUEST_0_NAME0=Pics+anti-pigeons+VEPIC+V2+-+L+135mm+%2836cm+x3%29&L_PAYMENTREQUEST_0_DESC0=Syst%C3%A8me+d%27%C3%A9loignement+des+pigeons%2C+lot+de+3+barret...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=215&L_PAYMENTREQUEST_0_NAME1=Colle+silicone+pour+pics+anti-pigeons+-+Silirub+tube+310ml&L_PAYMENTREQUEST_0_DESC1=Mastic+silicone+multi-supports+%3A+b%C3%A9ton%2C+m%C3%A9tal%2C+ver...&L_PAYMENTREQUEST_0_AMT1=11.5&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56&PAYMENTREQUEST_0_AMT=56.00&ADDROVERRIDE=1&EMAIL=Laura-77550%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laura+Smeriglio&PAYMENTREQUEST_0_SHIPTOPHONENUM=0662867763&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+bleuets&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=verneuil+l+etang&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7XP62440H7738622X&TIMESTAMP=2016%2d07%2d22T10%3a04%3a40Z&CORRELATIONID=159d5f571524b&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=213&L_PAYMENTREQUEST_0_NAME0=Pics+anti-pigeons+VEPIC+V2+-+L+135mm+%2836cm+x3%29&L_PAYMENTREQUEST_0_DESC0=Syst%C3%A8me+d%27%C3%A9loignement+des+pigeons%2C+lot+de+3+barret...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=215&L_PAYMENTREQUEST_0_NAME1=Colle+silicone+pour+pics+anti-pigeons+-+Silirub+tube+310ml&L_PAYMENTREQUEST_0_DESC1=Mastic+silicone+multi-supports+%3A+b%C3%A9ton%2C+m%C3%A9tal%2C+ver...&L_PAYMENTREQUEST_0_AMT1=11.5&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56&PAYMENTREQUEST_0_AMT=56.00&ADDROVERRIDE=1&EMAIL=Laura-77550%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laura+Smeriglio&PAYMENTREQUEST_0_SHIPTOPHONENUM=0662867763&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+bleuets&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=verneuil+l+etang&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7XP62440H7738622X -Result : TOKEN=EC%2d7XP62440H7738622X&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T10%3a05%3a09Z&CORRELATIONID=36aa01124d733&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=laura%2d77550%40hotmail%2efr&PAYERID=V3MMJYWBAMV9W&PAYERSTATUS=verified&BUSINESS=Be_joux&FIRSTNAME=Laura&LASTNAME=Smeriglio&COUNTRYCODE=FR&SHIPTONAME=Laura%20Smeriglio&SHIPTOSTREET=5%20rue%20des%20bleuets&SHIPTOCITY=verneuil%20l%27etang&SHIPTOSTATE=ILE%2dDE%2dFRANCE&SHIPTOZIP=77390&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0662867763&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=56%2e00&ITEMAMT=56%2e00&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pics%20anti%2dpigeons%20VEPIC%20V2%20%2d%20L%20135mm%20%2836cm%20x3%29&L_NAME1=Colle%20silicone%20pour%20pics%20anti%2dpigeons%20%2d%20Silirub%20tube%20310ml&L_NUMBER0=213&L_NUMBER1=215&L_QTY0=5&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=8%2e90&L_AMT1=11%2e50&L_DESC0=Syst%c3%a8me%20d%27%c3%a9loignement%20des%20pigeons%2c%20lot%20de%203%20barret%2e%2e%2e&L_DESC1=Mastic%20silicone%20multi%2dsupports%20%3a%20b%c3%a9ton%2c%20m%c3%a9tal%2c%20ver%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=56%2e00&PAYMENTREQUEST_0_ITEMAMT=56%2e00&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Laura%20Smeriglio&PAYMENTREQUEST_0_SHIPTOSTREET=5%20rue%20des%20bleuets&PAYMENTREQUEST_0_SHIPTOCITY=verneuil%20l%27etang&PAYMENTREQUEST_0_SHIPTOSTATE=ILE%2dDE%2dFRANCE&PAYMENTREQUEST_0_SHIPTOZIP=77390&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0662867763&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pics%20anti%2dpigeons%20VEPIC%20V2%20%2d%20L%20135mm%20%2836cm%20x3%29&L_PAYMENTREQUEST_0_NAME1=Colle%20silicone%20pour%20pics%20anti%2dpigeons%20%2d%20Silirub%20tube%20310ml&L_PAYMENTREQUEST_0_NUMBER0=213&L_PAYMENTREQUEST_0_NUMBER1=215&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e90&L_PAYMENTREQUEST_0_AMT1=11%2e50&L_PAYMENTREQUEST_0_DESC0=Syst%c3%a8me%20d%27%c3%a9loignement%20des%20pigeons%2c%20lot%20de%203%20barret%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Mastic%20silicone%20multi%2dsupports%20%3a%20b%c3%a9ton%2c%20m%c3%a9tal%2c%20ver%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7XP62440H7738622X - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7XP62440H7738622X&PAYERID=V3MMJYWBAMV9W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=213&L_PAYMENTREQUEST_0_NAME0=Pics+anti-pigeons+VEPIC+V2+-+L+135mm+%2836cm+x3%29&L_PAYMENTREQUEST_0_DESC0=Syst%C3%A8me+d%27%C3%A9loignement+des+pigeons%2C+lot+de+3+barret...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=215&L_PAYMENTREQUEST_0_NAME1=Colle+silicone+pour+pics+anti-pigeons+-+Silirub+tube+310ml&L_PAYMENTREQUEST_0_DESC1=Mastic+silicone+multi-supports+%3A+b%C3%A9ton%2C+m%C3%A9tal%2C+ver...&L_PAYMENTREQUEST_0_AMT1=11.5&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56&PAYMENTREQUEST_0_AMT=56.00&ADDROVERRIDE=1&EMAIL=Laura-77550%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laura+Smeriglio&PAYMENTREQUEST_0_SHIPTOPHONENUM=0662867763&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+bleuets&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=verneuil+l+etang&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77390 -Result : TOKEN=EC%2d7XP62440H7738622X&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T10%3a05%3a13Z&CORRELATIONID=8e4db13aa2f61&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=93S96115JB544140F&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T10%3a05%3a11Z&PAYMENTINFO_0_AMT=56%2e00&PAYMENTINFO_0_FEEAMT=2%2e15&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7XP62440H7738622X&PAYERID=V3MMJYWBAMV9W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=213&L_PAYMENTREQUEST_0_NAME0=Pics+anti-pigeons+VEPIC+V2+-+L+135mm+%2836cm+x3%29&L_PAYMENTREQUEST_0_DESC0=Syst%C3%A8me+d%27%C3%A9loignement+des+pigeons%2C+lot+de+3+barret...&L_PAYMENTREQUEST_0_AMT0=8.9&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=215&L_PAYMENTREQUEST_0_NAME1=Colle+silicone+pour+pics+anti-pigeons+-+Silirub+tube+310ml&L_PAYMENTREQUEST_0_DESC1=Mastic+silicone+multi-supports+%3A+b%C3%A9ton%2C+m%C3%A9tal%2C+ver...&L_PAYMENTREQUEST_0_AMT1=11.5&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=56&PAYMENTREQUEST_0_AMT=56.00&ADDROVERRIDE=1&EMAIL=Laura-77550%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Laura+Smeriglio&PAYMENTREQUEST_0_SHIPTOPHONENUM=0662867763&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+bleuets&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=verneuil+l+etang&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77390 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=283&L_PAYMENTREQUEST_0_NAME0=Shampoing+soin+purifiant+bio+citron+et+argile+verte&L_PAYMENTREQUEST_0_DESC0=La+gamme+de+capillaires+SO%27+BiO+%C3%A9tic+allie+les+bie...&L_PAYMENTREQUEST_0_AMT0=4.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=4.95&PAYMENTREQUEST_0_AMT=7.95&ADDROVERRIDE=1&EMAIL=baluchondesophie%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sophie+Thoux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0491908026&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+Sainte-Fran%C3%A7oise&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Marseille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13002&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d266328300B4544055&TIMESTAMP=2016%2d07%2d22T13%3a17%3a18Z&CORRELATIONID=d3042b579cdad&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=283&L_PAYMENTREQUEST_0_NAME0=Shampoing+soin+purifiant+bio+citron+et+argile+verte&L_PAYMENTREQUEST_0_DESC0=La+gamme+de+capillaires+SO%27+BiO+%C3%A9tic+allie+les+bie...&L_PAYMENTREQUEST_0_AMT0=4.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=4.95&PAYMENTREQUEST_0_AMT=7.95&ADDROVERRIDE=1&EMAIL=baluchondesophie%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sophie+Thoux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0491908026&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+Sainte-Fran%C3%A7oise&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Marseille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13002&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-266328300B4544055 -Result : TOKEN=EC%2d266328300B4544055&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T13%3a18%3a33Z&CORRELATIONID=4b7656d52c162&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=sophubertt%40yahoo%2efr&PAYERID=A9M7ESF66FJCG&PAYERSTATUS=unverified&FIRSTNAME=sophie&LASTNAME=Thoux&COUNTRYCODE=FR&SHIPTONAME=Sophie%20Thoux&SHIPTOSTREET=15%20rue%20Sainte%2dFran%c3%a7oise&SHIPTOCITY=Marseille&SHIPTOZIP=13002&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0491908026&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=7%2e95&ITEMAMT=4%2e95&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Shampoing%20soin%20purifiant%20bio%20citron%20et%20argile%20verte&L_NUMBER0=283&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=4%2e95&L_DESC0=La%20gamme%20de%20capillaires%20SO%27%20BiO%20%c3%a9tic%20allie%20les%20bie%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=7%2e95&PAYMENTREQUEST_0_ITEMAMT=4%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Sophie%20Thoux&PAYMENTREQUEST_0_SHIPTOSTREET=15%20rue%20Sainte%2dFran%c3%a7oise&PAYMENTREQUEST_0_SHIPTOCITY=Marseille&PAYMENTREQUEST_0_SHIPTOZIP=13002&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0491908026&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Shampoing%20soin%20purifiant%20bio%20citron%20et%20argile%20verte&L_PAYMENTREQUEST_0_NUMBER0=283&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=4%2e95&L_PAYMENTREQUEST_0_DESC0=La%20gamme%20de%20capillaires%20SO%27%20BiO%20%c3%a9tic%20allie%20les%20bie%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-266328300B4544055 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-266328300B4544055&PAYERID=A9M7ESF66FJCG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=283&L_PAYMENTREQUEST_0_NAME0=Shampoing+soin+purifiant+bio+citron+et+argile+verte&L_PAYMENTREQUEST_0_DESC0=La+gamme+de+capillaires+SO%27+BiO+%C3%A9tic+allie+les+bie...&L_PAYMENTREQUEST_0_AMT0=4.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=4.95&PAYMENTREQUEST_0_AMT=7.95&ADDROVERRIDE=1&EMAIL=baluchondesophie%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sophie+Thoux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0491908026&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+Sainte-Fran%C3%A7oise&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Marseille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13002 -Result : TOKEN=EC%2d266328300B4544055&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T13%3a18%3a36Z&CORRELATIONID=d31e599d5740e&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9J802750LU697735W&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T13%3a18%3a34Z&PAYMENTINFO_0_AMT=7%2e95&PAYMENTINFO_0_FEEAMT=0%2e52&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-266328300B4544055&PAYERID=A9M7ESF66FJCG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=283&L_PAYMENTREQUEST_0_NAME0=Shampoing+soin+purifiant+bio+citron+et+argile+verte&L_PAYMENTREQUEST_0_DESC0=La+gamme+de+capillaires+SO%27+BiO+%C3%A9tic+allie+les+bie...&L_PAYMENTREQUEST_0_AMT0=4.95&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=4.95&PAYMENTREQUEST_0_AMT=7.95&ADDROVERRIDE=1&EMAIL=baluchondesophie%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Sophie+Thoux&PAYMENTREQUEST_0_SHIPTOPHONENUM=0491908026&PAYMENTREQUEST_0_SHIPTOSTREET=15+rue+Sainte-Fran%C3%A7oise&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Marseille&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=13002 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=130&L_PAYMENTREQUEST_0_NAME1=Vernis+%C3%A0+ongles%2C+base+et+top+coat%2C+Tenue+et+soin&L_PAYMENTREQUEST_0_DESC1=Le+vernis+Base+et+Top+Coat+SO%27BiO+%C3%A9tic%C2%AE+Natural%27+e...&L_PAYMENTREQUEST_0_AMT1=9.79&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.89&PAYMENTREQUEST_0_AMT=58.89&ADDROVERRIDE=1&EMAIL=lajacotte%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=jacqueline+ernault&PAYMENTREQUEST_0_SHIPTOPHONENUM=33494296035&PAYMENTREQUEST_0_SHIPTOSTREET=499+ave+montemer&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bandol&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83150&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7WU343101Y460363W&TIMESTAMP=2016%2d07%2d22T14%3a31%3a59Z&CORRELATIONID=3fabe65c498c7&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=130&L_PAYMENTREQUEST_0_NAME1=Vernis+%C3%A0+ongles%2C+base+et+top+coat%2C+Tenue+et+soin&L_PAYMENTREQUEST_0_DESC1=Le+vernis+Base+et+Top+Coat+SO%27BiO+%C3%A9tic%C2%AE+Natural%27+e...&L_PAYMENTREQUEST_0_AMT1=9.79&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.89&PAYMENTREQUEST_0_AMT=58.89&ADDROVERRIDE=1&EMAIL=lajacotte%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=jacqueline+ernault&PAYMENTREQUEST_0_SHIPTOPHONENUM=33494296035&PAYMENTREQUEST_0_SHIPTOSTREET=499+ave+montemer&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bandol&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83150&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WU343101Y460363W -Result : TOKEN=EC%2d7WU343101Y460363W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T14%3a32%3a26Z&CORRELATIONID=df2e0fad9d515&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=lajacotte%40wanadoo%2efr&PAYERID=R9562N6XSYQV8&PAYERSTATUS=verified&FIRSTNAME=jacqueline&LASTNAME=ernault&COUNTRYCODE=FR&SHIPTONAME=jacqueline%20ernault&SHIPTOSTREET=499%20ave%20montemer&SHIPTOCITY=BANDOL&SHIPTOZIP=83150&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=33494296035&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e89&ITEMAMT=58%2e89&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_NAME1=Vernis%20%c3%a0%20ongles%2c%20base%20et%20top%20coat%2c%20Tenue%20et%20soin&L_NAME2=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_NUMBER0=3&L_NUMBER1=130&L_NUMBER2=159&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=37%2e90&L_AMT1=9%2e79&L_AMT2=11%2e20&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC1=Le%20vernis%20Base%20et%20Top%20Coat%20SO%27BiO%20%c3%a9tic%c2%ae%20Natural%27%20e%2e%2e%2e&L_DESC2=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e89&PAYMENTREQUEST_0_ITEMAMT=58%2e89&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=jacqueline%20ernault&PAYMENTREQUEST_0_SHIPTOSTREET=499%20ave%20montemer&PAYMENTREQUEST_0_SHIPTOCITY=BANDOL&PAYMENTREQUEST_0_SHIPTOZIP=83150&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=33494296035&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20tache%20tissu%20%2d%20TEXGUARD%20%2d%202%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NAME1=Vernis%20%c3%a0%20ongles%2c%20base%20et%20top%20coat%2c%20Tenue%20et%20soin&L_PAYMENTREQUEST_0_NAME2=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NUMBER1=130&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=37%2e90&L_PAYMENTREQUEST_0_AMT1=9%2e79&L_PAYMENTREQUEST_0_AMT2=11%2e20&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20vernis%20Base%20et%20Top%20Coat%20SO%27BiO%20%c3%a9tic%c2%ae%20Natural%27%20e%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WU343101Y460363W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WU343101Y460363W&PAYERID=R9562N6XSYQV8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=130&L_PAYMENTREQUEST_0_NAME1=Vernis+%C3%A0+ongles%2C+base+et+top+coat%2C+Tenue+et+soin&L_PAYMENTREQUEST_0_DESC1=Le+vernis+Base+et+Top+Coat+SO%27BiO+%C3%A9tic%C2%AE+Natural%27+e...&L_PAYMENTREQUEST_0_AMT1=9.79&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.89&PAYMENTREQUEST_0_AMT=58.89&ADDROVERRIDE=1&EMAIL=lajacotte%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=jacqueline+ernault&PAYMENTREQUEST_0_SHIPTOPHONENUM=33494296035&PAYMENTREQUEST_0_SHIPTOSTREET=499+ave+montemer&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bandol&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83150 -Result : TOKEN=EC%2d7WU343101Y460363W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T14%3a32%3a29Z&CORRELATIONID=872e6208cfcf1&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8LA13038643274323&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T14%3a32%3a28Z&PAYMENTINFO_0_AMT=58%2e89&PAYMENTINFO_0_FEEAMT=2%2e25&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7WU343101Y460363W&PAYERID=R9562N6XSYQV8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=3&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+tache+tissu+-+TEXGUARD+-+2+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=37.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=130&L_PAYMENTREQUEST_0_NAME1=Vernis+%C3%A0+ongles%2C+base+et+top+coat%2C+Tenue+et+soin&L_PAYMENTREQUEST_0_DESC1=Le+vernis+Base+et+Top+Coat+SO%27BiO+%C3%A9tic%C2%AE+Natural%27+e...&L_PAYMENTREQUEST_0_AMT1=9.79&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=159&L_PAYMENTREQUEST_0_NAME2=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT2=11.2&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.89&PAYMENTREQUEST_0_AMT=58.89&ADDROVERRIDE=1&EMAIL=lajacotte%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=jacqueline+ernault&PAYMENTREQUEST_0_SHIPTOPHONENUM=33494296035&PAYMENTREQUEST_0_SHIPTOSTREET=499+ave+montemer&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=bandol&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83150 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=1&L_PAYMENTREQUEST_0_NAME0=Traitement+anti+taches+tissus+ou+cuir+-+TEXGUARD+2L+%28%2B+pulv%C3%A9risateur+offert%29&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0est+un%C2%A0imperm%C3%A9abilisant+et+un%C2%A0antitache+...&L_PAYMENTREQUEST_0_AMT0=98.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=98.9&PAYMENTREQUEST_0_AMT=98.90&ADDROVERRIDE=1&EMAIL=Billbillbill75%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Thierry+Kodyjasz&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607051363&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bry+sur+marne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d286587974G388773P&TIMESTAMP=2016%2d07%2d22T16%3a41%3a42Z&CORRELATIONID=b9de8992d9b5f&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=1&L_PAYMENTREQUEST_0_NAME0=Traitement+anti+taches+tissus+ou+cuir+-+TEXGUARD+2L+%28%2B+pulv%C3%A9risateur+offert%29&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0est+un%C2%A0imperm%C3%A9abilisant+et+un%C2%A0antitache+...&L_PAYMENTREQUEST_0_AMT0=98.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=98.9&PAYMENTREQUEST_0_AMT=98.90&ADDROVERRIDE=1&EMAIL=Billbillbill75%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Thierry+Kodyjasz&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607051363&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bry+sur+marne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-286587974G388773P -Result : TOKEN=EC%2d286587974G388773P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T16%3a43%3a13Z&CORRELATIONID=438f740a265fe&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=thierrykody%40free%2efr&PAYERID=4QZGUCFABRZSY&PAYERSTATUS=verified&FIRSTNAME=THIERRY&LASTNAME=KODYJASZ&COUNTRYCODE=FR&SHIPTONAME=THIERRY%20KODYJASZ&SHIPTOSTREET=5%20rue%20de%20la%20republique&SHIPTOCITY=bry%20sur%20marne&SHIPTOSTATE=val%20de%20marne&SHIPTOZIP=94360&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0607051363&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=98%2e90&ITEMAMT=98%2e90&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Traitement%20anti%20taches%20tissus%20ou%20cuir%20%2d%20TEXGUARD%202L%20%28%2b%20pulv%c3%a9risateur%20offert%29&L_NUMBER0=1&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=98%2e90&L_DESC0=TexGuard%c2%ae%c2%a0est%20un%c2%a0imperm%c3%a9abilisant%20et%20un%c2%a0antitache%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=98%2e90&PAYMENTREQUEST_0_ITEMAMT=98%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=THIERRY%20KODYJASZ&PAYMENTREQUEST_0_SHIPTOSTREET=5%20rue%20de%20la%20republique&PAYMENTREQUEST_0_SHIPTOCITY=bry%20sur%20marne&PAYMENTREQUEST_0_SHIPTOSTATE=val%20de%20marne&PAYMENTREQUEST_0_SHIPTOZIP=94360&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607051363&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Traitement%20anti%20taches%20tissus%20ou%20cuir%20%2d%20TEXGUARD%202L%20%28%2b%20pulv%c3%a9risateur%20offert%29&L_PAYMENTREQUEST_0_NUMBER0=1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=98%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0est%20un%c2%a0imperm%c3%a9abilisant%20et%20un%c2%a0antitache%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-286587974G388773P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-286587974G388773P&PAYERID=4QZGUCFABRZSY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=1&L_PAYMENTREQUEST_0_NAME0=Traitement+anti+taches+tissus+ou+cuir+-+TEXGUARD+2L+%28%2B+pulv%C3%A9risateur+offert%29&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0est+un%C2%A0imperm%C3%A9abilisant+et+un%C2%A0antitache+...&L_PAYMENTREQUEST_0_AMT0=98.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=98.9&PAYMENTREQUEST_0_AMT=98.90&ADDROVERRIDE=1&EMAIL=Billbillbill75%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Thierry+Kodyjasz&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607051363&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bry+sur+marne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94360 -Result : TOKEN=EC%2d286587974G388773P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T16%3a43%3a15Z&CORRELATIONID=ba2ce1da5bc83&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=74120384SA0152810&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T16%3a43%3a15Z&PAYMENTINFO_0_AMT=98%2e90&PAYMENTINFO_0_FEEAMT=3%2e61&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-286587974G388773P&PAYERID=4QZGUCFABRZSY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=1&L_PAYMENTREQUEST_0_NAME0=Traitement+anti+taches+tissus+ou+cuir+-+TEXGUARD+2L+%28%2B+pulv%C3%A9risateur+offert%29&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0est+un%C2%A0imperm%C3%A9abilisant+et+un%C2%A0antitache+...&L_PAYMENTREQUEST_0_AMT0=98.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=98.9&PAYMENTREQUEST_0_AMT=98.90&ADDROVERRIDE=1&EMAIL=Billbillbill75%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Thierry+Kodyjasz&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607051363&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bry+sur+marne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=94360 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4FG53016AD7931521&TIMESTAMP=2016%2d07%2d22T19%3a47%3a33Z&CORRELATIONID=5bdc16d571d2f&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=249&L_PAYMENTREQUEST_0_NAME0=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC0=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT0=12.82&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=5&L_PAYMENTREQUEST_0_NAME1=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC1=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT1=19.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=317&L_PAYMENTREQUEST_0_NAME2=Dentifrice+Go%C3%BBt+framboise+2-6+ans+CATTIER+&L_PAYMENTREQUEST_0_DESC2=Un+dentifrice+adapt%C3%A9+aux+dents+de+lait%2C+sans+fluor...&L_PAYMENTREQUEST_0_AMT2=4.65&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=159&L_PAYMENTREQUEST_0_NAME3=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT3=11.2&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.22&PAYMENTREQUEST_0_AMT=53.22&ADDROVERRIDE=1&EMAIL=Faten.bo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Faten+Boughanmi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637728932&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montreuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d23T707774B566170W&TIMESTAMP=2016%2d07%2d22T22%3a51%3a09Z&CORRELATIONID=65c24c33accb9&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=249&L_PAYMENTREQUEST_0_NAME0=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC0=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT0=12.82&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=5&L_PAYMENTREQUEST_0_NAME1=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC1=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT1=19.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=317&L_PAYMENTREQUEST_0_NAME2=Dentifrice+Go%C3%BBt+framboise+2-6+ans+CATTIER+&L_PAYMENTREQUEST_0_DESC2=Un+dentifrice+adapt%C3%A9+aux+dents+de+lait%2C+sans+fluor...&L_PAYMENTREQUEST_0_AMT2=4.65&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=159&L_PAYMENTREQUEST_0_NAME3=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT3=11.2&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.22&PAYMENTREQUEST_0_AMT=53.22&ADDROVERRIDE=1&EMAIL=Faten.bo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Faten+Boughanmi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637728932&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montreuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-23T707774B566170W -Result : TOKEN=EC%2d23T707774B566170W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d22T22%3a51%3a36Z&CORRELATIONID=facf4a93e00fb&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=faten%2ebo%40hotmail%2efr&PAYERID=8976U24UV5TUU&PAYERSTATUS=verified&FIRSTNAME=faten&LASTNAME=boughanmi&COUNTRYCODE=FR&SHIPTONAME=Faten%20Boughanmi&SHIPTOSTREET=34%20RUE%20DE%20LA%20REPUBLIQUE&SHIPTOCITY=MONTREUIL&SHIPTOSTATE=ILE%2dDE%2dFRANCE&SHIPTOZIP=93100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0637728932&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=53%2e22&ITEMAMT=53%2e22&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_NAME1=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NAME2=Dentifrice%20Go%c3%bbt%20framboise%202%2d6%20ans%20CATTIER%20&L_NAME3=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_NUMBER0=249&L_NUMBER1=5&L_NUMBER2=317&L_NUMBER3=159&L_QTY0=1&L_QTY1=1&L_QTY2=2&L_QTY3=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=12%2e82&L_AMT1=19%2e90&L_AMT2=4%2e65&L_AMT3=11%2e20&L_DESC0=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_DESC1=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC2=Un%20dentifrice%20adapt%c3%a9%20aux%20dents%20de%20lait%2c%20sans%20fluor%2e%2e%2e&L_DESC3=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=53%2e22&PAYMENTREQUEST_0_ITEMAMT=53%2e22&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Faten%20Boughanmi&PAYMENTREQUEST_0_SHIPTOSTREET=34%20RUE%20DE%20LA%20REPUBLIQUE&PAYMENTREQUEST_0_SHIPTOCITY=MONTREUIL&PAYMENTREQUEST_0_SHIPTOSTATE=ILE%2dDE%2dFRANCE&PAYMENTREQUEST_0_SHIPTOZIP=93100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637728932&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Anti%20%2dmoustique%20naturel%20%2d%20Verlina&L_PAYMENTREQUEST_0_NAME1=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NAME2=Dentifrice%20Go%c3%bbt%20framboise%202%2d6%20ans%20CATTIER%20&L_PAYMENTREQUEST_0_NAME3=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=249&L_PAYMENTREQUEST_0_NUMBER1=5&L_PAYMENTREQUEST_0_NUMBER2=317&L_PAYMENTREQUEST_0_NUMBER3=159&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=12%2e82&L_PAYMENTREQUEST_0_AMT1=19%2e90&L_PAYMENTREQUEST_0_AMT2=4%2e65&L_PAYMENTREQUEST_0_AMT3=11%2e20&L_PAYMENTREQUEST_0_DESC0=Produit%20efficace%20pour%20repousser%20et%20%c3%a9liminer%20les%20mo%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Un%20dentifrice%20adapt%c3%a9%20aux%20dents%20de%20lait%2c%20sans%20fluor%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-23T707774B566170W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-23T707774B566170W&PAYERID=8976U24UV5TUU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=249&L_PAYMENTREQUEST_0_NAME0=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC0=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT0=12.82&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=5&L_PAYMENTREQUEST_0_NAME1=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC1=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT1=19.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=317&L_PAYMENTREQUEST_0_NAME2=Dentifrice+Go%C3%BBt+framboise+2-6+ans+CATTIER+&L_PAYMENTREQUEST_0_DESC2=Un+dentifrice+adapt%C3%A9+aux+dents+de+lait%2C+sans+fluor...&L_PAYMENTREQUEST_0_AMT2=4.65&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=159&L_PAYMENTREQUEST_0_NAME3=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT3=11.2&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.22&PAYMENTREQUEST_0_AMT=53.22&ADDROVERRIDE=1&EMAIL=Faten.bo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Faten+Boughanmi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637728932&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montreuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93100 -Result : TOKEN=EC%2d23T707774B566170W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d22T22%3a51%3a40Z&CORRELATIONID=7e74c2f721824&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4F227321V1107614N&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d22T22%3a51%3a38Z&PAYMENTINFO_0_AMT=53%2e22&PAYMENTINFO_0_FEEAMT=2%2e06&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-23T707774B566170W&PAYERID=8976U24UV5TUU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=249&L_PAYMENTREQUEST_0_NAME0=Anti+-moustique+naturel+-+Verlina&L_PAYMENTREQUEST_0_DESC0=Produit+efficace+pour+repousser+et+%C3%A9liminer+les+mo...&L_PAYMENTREQUEST_0_AMT0=12.82&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=5&L_PAYMENTREQUEST_0_NAME1=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC1=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT1=19.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=317&L_PAYMENTREQUEST_0_NAME2=Dentifrice+Go%C3%BBt+framboise+2-6+ans+CATTIER+&L_PAYMENTREQUEST_0_DESC2=Un+dentifrice+adapt%C3%A9+aux+dents+de+lait%2C+sans+fluor...&L_PAYMENTREQUEST_0_AMT2=4.65&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=159&L_PAYMENTREQUEST_0_NAME3=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC3=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT3=11.2&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=53.22&PAYMENTREQUEST_0_AMT=53.22&ADDROVERRIDE=1&EMAIL=Faten.bo%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Faten+Boughanmi&PAYMENTREQUEST_0_SHIPTOPHONENUM=0637728932&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+de+la+republique&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Montreuil&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=204&L_PAYMENTREQUEST_0_NAME1=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC1=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT1=15.2&L_PAYMENTREQUEST_0_QTY1=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.6&PAYMENTREQUEST_0_AMT=55.60&ADDROVERRIDE=1&EMAIL=veronique.foulon63%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Veronique+Foulon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612631431&PAYMENTREQUEST_0_SHIPTOSTREET=18+boulevard+condorcet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vernouillet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=28500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9UC99665T38907535&TIMESTAMP=2016%2d07%2d23T08%3a32%3a31Z&CORRELATIONID=b5ecff9ad05f2&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=204&L_PAYMENTREQUEST_0_NAME1=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC1=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT1=15.2&L_PAYMENTREQUEST_0_QTY1=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.6&PAYMENTREQUEST_0_AMT=55.60&ADDROVERRIDE=1&EMAIL=veronique.foulon63%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Veronique+Foulon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612631431&PAYMENTREQUEST_0_SHIPTOSTREET=18+boulevard+condorcet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vernouillet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=28500&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9UC99665T38907535 -Result : TOKEN=EC%2d9UC99665T38907535&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d23T08%3a33%3a14Z&CORRELATIONID=27eb71b5adcb8&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=veronique%2efoulon63%40free%2efr&PAYERID=F2NH34UVKPS56&PAYERSTATUS=verified&FIRSTNAME=Veronique&LASTNAME=Foulon&COUNTRYCODE=FR&SHIPTONAME=Veronique%20Foulon&SHIPTOSTREET=18%20boulevard%20Condorcet&SHIPTOCITY=Vernouillet&SHIPTOZIP=28500&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0612631431&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=55%2e60&ITEMAMT=55%2e60&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Huile%20essentielle%20Lavandin%20bio&L_NAME1=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=146&L_NUMBER1=204&L_QTY0=2&L_QTY1=3&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=5%2e00&L_AMT1=15%2e20&L_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&L_DESC1=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=55%2e60&PAYMENTREQUEST_0_ITEMAMT=55%2e60&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Veronique%20Foulon&PAYMENTREQUEST_0_SHIPTOSTREET=18%20boulevard%20Condorcet&PAYMENTREQUEST_0_SHIPTOCITY=Vernouillet&PAYMENTREQUEST_0_SHIPTOZIP=28500&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612631431&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Huile%20essentielle%20Lavandin%20bio&L_PAYMENTREQUEST_0_NAME1=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NUMBER1=204&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=3&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e00&L_PAYMENTREQUEST_0_AMT1=15%2e20&L_PAYMENTREQUEST_0_DESC0=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9UC99665T38907535 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9UC99665T38907535&PAYERID=F2NH34UVKPS56&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=204&L_PAYMENTREQUEST_0_NAME1=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC1=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT1=15.2&L_PAYMENTREQUEST_0_QTY1=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.6&PAYMENTREQUEST_0_AMT=55.60&ADDROVERRIDE=1&EMAIL=veronique.foulon63%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Veronique+Foulon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612631431&PAYMENTREQUEST_0_SHIPTOSTREET=18+boulevard+condorcet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vernouillet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=28500 -Result : TOKEN=EC%2d9UC99665T38907535&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d23T08%3a33%3a17Z&CORRELATIONID=dd066c65e94b6&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8S648028Y4762221G&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d23T08%3a33%3a16Z&PAYMENTINFO_0_AMT=55%2e60&PAYMENTINFO_0_FEEAMT=2%2e14&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9UC99665T38907535&PAYERID=F2NH34UVKPS56&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=146&L_PAYMENTREQUEST_0_NAME0=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC0=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT0=5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=204&L_PAYMENTREQUEST_0_NAME1=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC1=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT1=15.2&L_PAYMENTREQUEST_0_QTY1=3&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.6&PAYMENTREQUEST_0_AMT=55.60&ADDROVERRIDE=1&EMAIL=veronique.foulon63%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Veronique+Foulon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612631431&PAYMENTREQUEST_0_SHIPTOSTREET=18+boulevard+condorcet&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Vernouillet&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=28500 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=42&L_PAYMENTREQUEST_0_NAME0=Enduit+de+rebouchage+bois-REBOUCHER+BOIS+-+Tube+330+G&L_PAYMENTREQUEST_0_DESC0=REBOUCHER+BOIS+est+une+p%C3%A2te+qui+rebouche+les+trous...&L_PAYMENTREQUEST_0_AMT0=9.3&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.3&PAYMENTREQUEST_0_AMT=12.30&ADDROVERRIDE=1&EMAIL=michele.restoueix%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=Michele+RESTOUEX&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688089714&PAYMENTREQUEST_0_SHIPTOSTREET=19+avenue+Charles+de+Gaulle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GUERET&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=23000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d34W99958N9585132P&TIMESTAMP=2016%2d07%2d23T10%3a01%3a40Z&CORRELATIONID=ec6532157ff37&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=42&L_PAYMENTREQUEST_0_NAME0=Enduit+de+rebouchage+bois-REBOUCHER+BOIS+-+Tube+330+G&L_PAYMENTREQUEST_0_DESC0=REBOUCHER+BOIS+est+une+p%C3%A2te+qui+rebouche+les+trous...&L_PAYMENTREQUEST_0_AMT0=9.3&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.3&PAYMENTREQUEST_0_AMT=12.30&ADDROVERRIDE=1&EMAIL=michele.restoueix%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=Michele+RESTOUEX&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688089714&PAYMENTREQUEST_0_SHIPTOSTREET=19+avenue+Charles+de+Gaulle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GUERET&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=23000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34W99958N9585132P -Result : TOKEN=EC%2d34W99958N9585132P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d23T10%3a02%3a09Z&CORRELATIONID=83645ae0792af&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=michele%2erestoueix%40sfr%2efr&PAYERID=ANJH2J9FGMMPA&PAYERSTATUS=verified&FIRSTNAME=Michele&LASTNAME=RESTOUEX&COUNTRYCODE=FR&SHIPTONAME=Michele%20RESTOUEX&SHIPTOSTREET=19%20Avenue%20Charles%20De%20Gaulle&SHIPTOCITY=GUERET&SHIPTOSTATE=23&SHIPTOZIP=23000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0688089714&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=12%2e30&ITEMAMT=9%2e30&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20rebouchage%20bois%2dREBOUCHER%20BOIS%20%2d%20Tube%20330%20G&L_NUMBER0=42&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=9%2e30&L_DESC0=REBOUCHER%20BOIS%20est%20une%20p%c3%a2te%20qui%20rebouche%20les%20trous%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=12%2e30&PAYMENTREQUEST_0_ITEMAMT=9%2e30&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Michele%20RESTOUEX&PAYMENTREQUEST_0_SHIPTOSTREET=19%20Avenue%20Charles%20De%20Gaulle&PAYMENTREQUEST_0_SHIPTOCITY=GUERET&PAYMENTREQUEST_0_SHIPTOSTATE=23&PAYMENTREQUEST_0_SHIPTOZIP=23000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688089714&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20rebouchage%20bois%2dREBOUCHER%20BOIS%20%2d%20Tube%20330%20G&L_PAYMENTREQUEST_0_NUMBER0=42&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=9%2e30&L_PAYMENTREQUEST_0_DESC0=REBOUCHER%20BOIS%20est%20une%20p%c3%a2te%20qui%20rebouche%20les%20trous%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34W99958N9585132P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34W99958N9585132P&PAYERID=ANJH2J9FGMMPA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=42&L_PAYMENTREQUEST_0_NAME0=Enduit+de+rebouchage+bois-REBOUCHER+BOIS+-+Tube+330+G&L_PAYMENTREQUEST_0_DESC0=REBOUCHER+BOIS+est+une+p%C3%A2te+qui+rebouche+les+trous...&L_PAYMENTREQUEST_0_AMT0=9.3&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.3&PAYMENTREQUEST_0_AMT=12.30&ADDROVERRIDE=1&EMAIL=michele.restoueix%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=Michele+RESTOUEX&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688089714&PAYMENTREQUEST_0_SHIPTOSTREET=19+avenue+Charles+de+Gaulle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GUERET&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=23000 -Result : TOKEN=EC%2d34W99958N9585132P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d23T10%3a02%3a13Z&CORRELATIONID=370210c3a822c&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=59H69221247553355&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d23T10%3a02%3a11Z&PAYMENTINFO_0_AMT=12%2e30&PAYMENTINFO_0_FEEAMT=0%2e67&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-34W99958N9585132P&PAYERID=ANJH2J9FGMMPA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=42&L_PAYMENTREQUEST_0_NAME0=Enduit+de+rebouchage+bois-REBOUCHER+BOIS+-+Tube+330+G&L_PAYMENTREQUEST_0_DESC0=REBOUCHER+BOIS+est+une+p%C3%A2te+qui+rebouche+les+trous...&L_PAYMENTREQUEST_0_AMT0=9.3&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=9.3&PAYMENTREQUEST_0_AMT=12.30&ADDROVERRIDE=1&EMAIL=michele.restoueix%40sfr.fr&PAYMENTREQUEST_0_SHIPTONAME=Michele+RESTOUEX&PAYMENTREQUEST_0_SHIPTOPHONENUM=0688089714&PAYMENTREQUEST_0_SHIPTOSTREET=19+avenue+Charles+de+Gaulle&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GUERET&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=23000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=laurent.souef%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+SOUEF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0565993196&PAYMENTREQUEST_0_SHIPTOSTREET=La+Mouline&PAYMENTREQUEST_0_SHIPTOSTREET2=Saint+Maurice+de+Sorgues&PAYMENTREQUEST_0_SHIPTOCITY=Fondamente&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=12540&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d25S77124TD7483913&TIMESTAMP=2016%2d07%2d23T12%3a51%3a01Z&CORRELATIONID=2f0c176b6157a&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=laurent.souef%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+SOUEF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0565993196&PAYMENTREQUEST_0_SHIPTOSTREET=La+Mouline&PAYMENTREQUEST_0_SHIPTOSTREET2=Saint+Maurice+de+Sorgues&PAYMENTREQUEST_0_SHIPTOCITY=Fondamente&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=12540&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-25S77124TD7483913 -Result : TOKEN=EC%2d25S77124TD7483913&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d23T12%3a51%3a17Z&CORRELATIONID=2b5877e5cbc4d&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=laurent%2esouef%40free%2efr&PAYERID=KLCLZUJ7EFHRS&PAYERSTATUS=verified&BUSINESS=P%c3%a9ma%20Mark%c3%a9ting&FIRSTNAME=Laurent&LASTNAME=Souef&COUNTRYCODE=FR&SHIPTONAME=Laurent%20SOUEF&SHIPTOSTREET=la%20Mouline&SHIPTOSTREET2=Saint%20Maurice%20de%20Sorgues&SHIPTOCITY=Fondamente&SHIPTOZIP=12540&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0565993196&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=58%2e80&ITEMAMT=58%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_NUMBER0=17&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=58%2e80&L_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=58%2e80&PAYMENTREQUEST_0_ITEMAMT=58%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Laurent%20SOUEF&PAYMENTREQUEST_0_SHIPTOSTREET=la%20Mouline&PAYMENTREQUEST_0_SHIPTOSTREET2=Saint%20Maurice%20de%20Sorgues&PAYMENTREQUEST_0_SHIPTOCITY=Fondamente&PAYMENTREQUEST_0_SHIPTOZIP=12540&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0565993196&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20Express%20%2d%20Wash%27Guard%c2%ae%205L&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=58%2e80&L_PAYMENTREQUEST_0_DESC0=Halte%20aux%20sols%20impossibles%20%c3%a0%20nettoyer%20%21%c2%a0Wash%27Guard%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-25S77124TD7483913 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-25S77124TD7483913&PAYERID=KLCLZUJ7EFHRS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=laurent.souef%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+SOUEF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0565993196&PAYMENTREQUEST_0_SHIPTOSTREET=La+Mouline&PAYMENTREQUEST_0_SHIPTOSTREET2=Saint+Maurice+de+Sorgues&PAYMENTREQUEST_0_SHIPTOCITY=Fondamente&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=12540 -Result : TOKEN=EC%2d25S77124TD7483913&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d23T12%3a51%3a20Z&CORRELATIONID=8c6e1ede2166&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9CT40436WU8407708&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d23T12%3a51%3a20Z&PAYMENTINFO_0_AMT=58%2e80&PAYMENTINFO_0_FEEAMT=2%2e25&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-25S77124TD7483913&PAYERID=KLCLZUJ7EFHRS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=17&L_PAYMENTREQUEST_0_NAME0=Nettoyant+Express+-+Wash%27Guard%C2%AE+5L&L_PAYMENTREQUEST_0_DESC0=Halte+aux+sols+impossibles+%C3%A0+nettoyer+%21%C2%A0Wash%27Guard...&L_PAYMENTREQUEST_0_AMT0=58.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.8&PAYMENTREQUEST_0_AMT=58.80&ADDROVERRIDE=1&EMAIL=laurent.souef%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurent+SOUEF&PAYMENTREQUEST_0_SHIPTOPHONENUM=0565993196&PAYMENTREQUEST_0_SHIPTOSTREET=La+Mouline&PAYMENTREQUEST_0_SHIPTOSTREET2=Saint+Maurice+de+Sorgues&PAYMENTREQUEST_0_SHIPTOCITY=Fondamente&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=12540 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Chantal.jeandel2%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+Jeandel&PAYMENTREQUEST_0_SHIPTOPHONENUM=0673648395&PAYMENTREQUEST_0_SHIPTOSTREET=Route+de+peret+les+clairettes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Fontes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d50A05193TR928391V&TIMESTAMP=2016%2d07%2d23T16%3a26%3a50Z&CORRELATIONID=86c46f8488ec3&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Chantal.jeandel2%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+Jeandel&PAYMENTREQUEST_0_SHIPTOPHONENUM=0673648395&PAYMENTREQUEST_0_SHIPTOSTREET=Route+de+peret+les+clairettes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Fontes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34230&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-50A05193TR928391V -Result : TOKEN=EC%2d50A05193TR928391V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d23T16%3a27%3a31Z&CORRELATIONID=1504ce5e24c1&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=chantal%2ejeandel2%40orange%2efr&PAYERID=ERSL2WAPVWSXA&PAYERSTATUS=verified&FIRSTNAME=jeandel&LASTNAME=chantal&COUNTRYCODE=FR&SHIPTONAME=Chantal%20Jeandel&SHIPTOSTREET=Route%20de%20peret%20les%20clairettes&SHIPTOCITY=Fontes&SHIPTOZIP=34230&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0673648395&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Chantal%20Jeandel&PAYMENTREQUEST_0_SHIPTOSTREET=Route%20de%20peret%20les%20clairettes&PAYMENTREQUEST_0_SHIPTOCITY=Fontes&PAYMENTREQUEST_0_SHIPTOZIP=34230&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0673648395&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-50A05193TR928391V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-50A05193TR928391V&PAYERID=ERSL2WAPVWSXA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Chantal.jeandel2%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+Jeandel&PAYMENTREQUEST_0_SHIPTOPHONENUM=0673648395&PAYMENTREQUEST_0_SHIPTOSTREET=Route+de+peret+les+clairettes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Fontes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34230 -Result : TOKEN=EC%2d50A05193TR928391V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d23T16%3a27%3a34Z&CORRELATIONID=b3e9fce3f310b&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=62G57172PN168734L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d23T16%3a27%3a32Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-50A05193TR928391V&PAYERID=ERSL2WAPVWSXA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Chantal.jeandel2%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+Jeandel&PAYMENTREQUEST_0_SHIPTOPHONENUM=0673648395&PAYMENTREQUEST_0_SHIPTOSTREET=Route+de+peret+les+clairettes&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Fontes&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34230 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=120&L_PAYMENTREQUEST_0_NAME0=Savon+recette+d%27Alep%2C+Comptoir+de+l%27Olivier+-+Grand+format&L_PAYMENTREQUEST_0_DESC0=Enti%C3%A8rement+naturel%2C+le+savon+recette+d%27Alep+ne+co...&L_PAYMENTREQUEST_0_AMT0=4.55&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=5&L_PAYMENTREQUEST_0_NUMBER2=141&L_PAYMENTREQUEST_0_NAME2=Huile+essentielle+Arbre+%C3%A0+th%C3%A9+bio&L_PAYMENTREQUEST_0_DESC2=L%27arbre+%C3%A0+th%C3%A9%2C+ou+Tea+Tree+est+traditionnellement+...&L_PAYMENTREQUEST_0_AMT2=8.3&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=dhaimini.elkbir%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Elkbir+Dhaimini&PAYMENTREQUEST_0_SHIPTOPHONENUM=0699131975&PAYMENTREQUEST_0_SHIPTOSTREET=31+bis+rue+de+la+digue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nancy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1VV373198N858705V&TIMESTAMP=2016%2d07%2d23T22%3a10%3a37Z&CORRELATIONID=83b7ca5e6fbfc&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=120&L_PAYMENTREQUEST_0_NAME0=Savon+recette+d%27Alep%2C+Comptoir+de+l%27Olivier+-+Grand+format&L_PAYMENTREQUEST_0_DESC0=Enti%C3%A8rement+naturel%2C+le+savon+recette+d%27Alep+ne+co...&L_PAYMENTREQUEST_0_AMT0=4.55&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=5&L_PAYMENTREQUEST_0_NUMBER2=141&L_PAYMENTREQUEST_0_NAME2=Huile+essentielle+Arbre+%C3%A0+th%C3%A9+bio&L_PAYMENTREQUEST_0_DESC2=L%27arbre+%C3%A0+th%C3%A9%2C+ou+Tea+Tree+est+traditionnellement+...&L_PAYMENTREQUEST_0_AMT2=8.3&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=dhaimini.elkbir%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Elkbir+Dhaimini&PAYMENTREQUEST_0_SHIPTOPHONENUM=0699131975&PAYMENTREQUEST_0_SHIPTOSTREET=31+bis+rue+de+la+digue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nancy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1VV373198N858705V -Result : TOKEN=EC%2d1VV373198N858705V&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d23T22%3a11%3a04Z&CORRELATIONID=24be357f43298&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=dhaimini%2eelkbir%40yahoo%2efr&PAYERID=MBTZM632GTQKN&PAYERSTATUS=verified&FIRSTNAME=Elkbir&LASTNAME=DHAIMINI&COUNTRYCODE=FR&SHIPTONAME=ELKBIR%20DHAIMINI&SHIPTOSTREET=31%20BIS%20RUE%20DE%20LA%20DIGUE&SHIPTOCITY=NANCY&SHIPTOZIP=54000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0699131975&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=66%2e60&ITEMAMT=66%2e60&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Savon%20recette%20d%27Alep%2c%20Comptoir%20de%20l%27Olivier%20%2d%20Grand%20format&L_NAME1=Gommage%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_NAME2=Huile%20essentielle%20Arbre%20%c3%a0%20th%c3%a9%20bio&L_NUMBER0=120&L_NUMBER1=112&L_NUMBER2=141&L_QTY0=5&L_QTY1=5&L_QTY2=2&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=4%2e55&L_AMT1=5%2e45&L_AMT2=8%2e30&L_DESC0=Enti%c3%a8rement%20naturel%2c%20le%20savon%20recette%20d%27Alep%20ne%20co%2e%2e%2e&L_DESC1=Ce%20gommage%20purifiant%20riche%20en%20argile%20verte%20montmor%2e%2e%2e&L_DESC2=L%27arbre%20%c3%a0%20th%c3%a9%2c%20ou%20Tea%20Tree%20est%20traditionnellement%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=66%2e60&PAYMENTREQUEST_0_ITEMAMT=66%2e60&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=ELKBIR%20DHAIMINI&PAYMENTREQUEST_0_SHIPTOSTREET=31%20BIS%20RUE%20DE%20LA%20DIGUE&PAYMENTREQUEST_0_SHIPTOCITY=NANCY&PAYMENTREQUEST_0_SHIPTOZIP=54000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0699131975&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Savon%20recette%20d%27Alep%2c%20Comptoir%20de%20l%27Olivier%20%2d%20Grand%20format&L_PAYMENTREQUEST_0_NAME1=Gommage%20purifiant%20%c3%a0%20l%27argile%20verte%20Montmorillonite&L_PAYMENTREQUEST_0_NAME2=Huile%20essentielle%20Arbre%20%c3%a0%20th%c3%a9%20bio&L_PAYMENTREQUEST_0_NUMBER0=120&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NUMBER2=141&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_QTY1=5&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=4%2e55&L_PAYMENTREQUEST_0_AMT1=5%2e45&L_PAYMENTREQUEST_0_AMT2=8%2e30&L_PAYMENTREQUEST_0_DESC0=Enti%c3%a8rement%20naturel%2c%20le%20savon%20recette%20d%27Alep%20ne%20co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20gommage%20purifiant%20riche%20en%20argile%20verte%20montmor%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=L%27arbre%20%c3%a0%20th%c3%a9%2c%20ou%20Tea%20Tree%20est%20traditionnellement%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1VV373198N858705V - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1VV373198N858705V&PAYERID=MBTZM632GTQKN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=120&L_PAYMENTREQUEST_0_NAME0=Savon+recette+d%27Alep%2C+Comptoir+de+l%27Olivier+-+Grand+format&L_PAYMENTREQUEST_0_DESC0=Enti%C3%A8rement+naturel%2C+le+savon+recette+d%27Alep+ne+co...&L_PAYMENTREQUEST_0_AMT0=4.55&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=5&L_PAYMENTREQUEST_0_NUMBER2=141&L_PAYMENTREQUEST_0_NAME2=Huile+essentielle+Arbre+%C3%A0+th%C3%A9+bio&L_PAYMENTREQUEST_0_DESC2=L%27arbre+%C3%A0+th%C3%A9%2C+ou+Tea+Tree+est+traditionnellement+...&L_PAYMENTREQUEST_0_AMT2=8.3&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=dhaimini.elkbir%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Elkbir+Dhaimini&PAYMENTREQUEST_0_SHIPTOPHONENUM=0699131975&PAYMENTREQUEST_0_SHIPTOSTREET=31+bis+rue+de+la+digue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nancy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54000 -Result : TOKEN=EC%2d1VV373198N858705V&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d23T22%3a11%3a07Z&CORRELATIONID=4127f0597e569&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4NN54700RG4369039&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d23T22%3a11%3a06Z&PAYMENTINFO_0_AMT=66%2e60&PAYMENTINFO_0_FEEAMT=2%2e51&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1VV373198N858705V&PAYERID=MBTZM632GTQKN&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=120&L_PAYMENTREQUEST_0_NAME0=Savon+recette+d%27Alep%2C+Comptoir+de+l%27Olivier+-+Grand+format&L_PAYMENTREQUEST_0_DESC0=Enti%C3%A8rement+naturel%2C+le+savon+recette+d%27Alep+ne+co...&L_PAYMENTREQUEST_0_AMT0=4.55&L_PAYMENTREQUEST_0_QTY0=5&L_PAYMENTREQUEST_0_NUMBER1=112&L_PAYMENTREQUEST_0_NAME1=Gommage+purifiant+%C3%A0+l%27argile+verte+Montmorillonite&L_PAYMENTREQUEST_0_DESC1=Ce+gommage+purifiant+riche+en+argile+verte+montmor...&L_PAYMENTREQUEST_0_AMT1=5.45&L_PAYMENTREQUEST_0_QTY1=5&L_PAYMENTREQUEST_0_NUMBER2=141&L_PAYMENTREQUEST_0_NAME2=Huile+essentielle+Arbre+%C3%A0+th%C3%A9+bio&L_PAYMENTREQUEST_0_DESC2=L%27arbre+%C3%A0+th%C3%A9%2C+ou+Tea+Tree+est+traditionnellement+...&L_PAYMENTREQUEST_0_AMT2=8.3&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=66.6&PAYMENTREQUEST_0_AMT=66.60&ADDROVERRIDE=1&EMAIL=dhaimini.elkbir%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Elkbir+Dhaimini&PAYMENTREQUEST_0_SHIPTOPHONENUM=0699131975&PAYMENTREQUEST_0_SHIPTOSTREET=31+bis+rue+de+la+digue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Nancy&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=lychristophe01%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Thomas+Orth&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781247158&PAYMENTREQUEST_0_SHIPTOSTREET=46+boulevard+du+11+novembre+1918&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villeurbanne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7EN28105HA886291E&TIMESTAMP=2016%2d07%2d24T04%3a08%3a28Z&CORRELATIONID=853e637ec9aee&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=lychristophe01%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Thomas+Orth&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781247158&PAYMENTREQUEST_0_SHIPTOSTREET=46+boulevard+du+11+novembre+1918&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villeurbanne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=209&L_PAYMENTREQUEST_0_NAME0=Spray+anti+cafards+pour+int%C3%A9rieurs+750+ml&L_PAYMENTREQUEST_0_DESC0=L%27Anti-cafards+DEGY+LAQUE+est+un+insecticide+en%C2%A0sp...&L_PAYMENTREQUEST_0_AMT0=18.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lychristophe01%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Thomas+Orth&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781247158&PAYMENTREQUEST_0_SHIPTOSTREET=46+boulevard+du+11+novembre+1918&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villeurbanne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d99P19381UR199040E&TIMESTAMP=2016%2d07%2d24T04%3a22%3a01Z&CORRELATIONID=c10e7c8432b6f&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=209&L_PAYMENTREQUEST_0_NAME0=Spray+anti+cafards+pour+int%C3%A9rieurs+750+ml&L_PAYMENTREQUEST_0_DESC0=L%27Anti-cafards+DEGY+LAQUE+est+un+insecticide+en%C2%A0sp...&L_PAYMENTREQUEST_0_AMT0=18.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.1&PAYMENTREQUEST_0_AMT=24.10&ADDROVERRIDE=1&EMAIL=lychristophe01%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Thomas+Orth&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781247158&PAYMENTREQUEST_0_SHIPTOSTREET=46+boulevard+du+11+novembre+1918&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villeurbanne&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.5&PAYMENTREQUEST_0_AMT=24.50&ADDROVERRIDE=1&EMAIL=clairebourgin%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Claire+Bourgin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686186716&PAYMENTREQUEST_0_SHIPTOSTREET=8B+Avenue+Gaston+Roupnel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Beaune&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2U329180K85239320&TIMESTAMP=2016%2d07%2d24T12%3a01%3a16Z&CORRELATIONID=9ccd279cab57b&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.5&PAYMENTREQUEST_0_AMT=24.50&ADDROVERRIDE=1&EMAIL=clairebourgin%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Claire+Bourgin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686186716&PAYMENTREQUEST_0_SHIPTOSTREET=8B+Avenue+Gaston+Roupnel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Beaune&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2U329180K85239320 -Result : TOKEN=EC%2d2U329180K85239320&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d24T12%3a01%3a38Z&CORRELATIONID=2c9f64d2103eb&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=clairebourgin%40gmail%2ecom&PAYERID=HU5P89UR6RK28&PAYERSTATUS=verified&BUSINESS=Hotel%20Dionisio%20Inn&FIRSTNAME=Claire&LASTNAME=Bourgin&COUNTRYCODE=FR&SHIPTONAME=Claire%20Bourgin&SHIPTOSTREET=8B%20Avenue%20Gaston%20Roupnel&SHIPTOCITY=BEAUNE&SHIPTOZIP=21200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0686186716&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=24%2e50&ITEMAMT=18%2e50&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NAME1=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NUMBER0=204&L_NUMBER1=165&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=15%2e20&L_AMT1=3%2e30&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&L_DESC1=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=24%2e50&PAYMENTREQUEST_0_ITEMAMT=18%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Claire%20Bourgin&PAYMENTREQUEST_0_SHIPTOSTREET=8B%20Avenue%20Gaston%20Roupnel&PAYMENTREQUEST_0_SHIPTOCITY=BEAUNE&PAYMENTREQUEST_0_SHIPTOZIP=21200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686186716&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NAME1=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_AMT1=3%2e30&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2U329180K85239320 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2U329180K85239320&PAYERID=HU5P89UR6RK28&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.5&PAYMENTREQUEST_0_AMT=24.50&ADDROVERRIDE=1&EMAIL=clairebourgin%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Claire+Bourgin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686186716&PAYMENTREQUEST_0_SHIPTOSTREET=8B+Avenue+Gaston+Roupnel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Beaune&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21200 -Result : TOKEN=EC%2d2U329180K85239320&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d24T12%3a01%3a40Z&CORRELATIONID=f365df922e0cb&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=33M81476P49059635&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d24T12%3a01%3a39Z&PAYMENTINFO_0_AMT=24%2e50&PAYMENTINFO_0_FEEAMT=1%2e08&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2U329180K85239320&PAYERID=HU5P89UR6RK28&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.3&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.5&PAYMENTREQUEST_0_AMT=24.50&ADDROVERRIDE=1&EMAIL=clairebourgin%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Claire+Bourgin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686186716&PAYMENTREQUEST_0_SHIPTOSTREET=8B+Avenue+Gaston+Roupnel&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Beaune&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=21200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=143&L_PAYMENTREQUEST_0_NAME3=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC3=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT3=6.1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.4&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=32.8&PAYMENTREQUEST_0_AMT=35.80&ADDROVERRIDE=1&EMAIL=deplus.veronique%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+DEPLUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684242838&PAYMENTREQUEST_0_SHIPTOSTREET=4+Rue+Michy&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=M%C3%A9zi%C3%A8res-sur-Oise&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=02240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5GN50605X96002637&TIMESTAMP=2016%2d07%2d24T15%3a38%3a33Z&CORRELATIONID=ac86248076cd3&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=143&L_PAYMENTREQUEST_0_NAME3=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC3=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT3=6.1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.4&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=32.8&PAYMENTREQUEST_0_AMT=35.80&ADDROVERRIDE=1&EMAIL=deplus.veronique%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+DEPLUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684242838&PAYMENTREQUEST_0_SHIPTOSTREET=4+Rue+Michy&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=M%C3%A9zi%C3%A8res-sur-Oise&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=02240&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5GN50605X96002637 -Result : TOKEN=EC%2d5GN50605X96002637&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d24T15%3a38%3a57Z&CORRELATIONID=7638ef50a7b59&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=deplus%2everonique%40orange%2efr&PAYERID=G8RLRGHDM6NU8&PAYERSTATUS=verified&FIRSTNAME=Veronique&LASTNAME=Deplus&COUNTRYCODE=FR&SHIPTONAME=VERONIQUE%20DEPLUS&SHIPTOSTREET=4%20Rue%20Michy&SHIPTOCITY=M%c3%a9zi%c3%a8res%2dsur%2dOise&SHIPTOZIP=02240&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0684242838&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=35%2e80&ITEMAMT=32%2e80&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME3=Huile%20essentielle%20Citronnelle%20bio&L_NAME4=Soin%20des%20pieds%20cr%c3%a8me%20r%c3%a9paratrice%20CATTIER%2075ml&L_NUMBER0=157&L_NUMBER1=155&L_NUMBER2=160&L_NUMBER3=143&L_NUMBER4=304&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=7%2e40&L_AMT1=5%2e95&L_AMT2=5%2e95&L_AMT3=6%2e10&L_AMT4=7%2e40&L_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_DESC2=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC3=La%20feuille%20de%20citronnelle%20est%20reconnue%20pour%20%c3%a9loign%2e%2e%2e&L_DESC4=Une%20texture%20douce%20et%20onctueuse%20pour%20r%c3%a9parer%2c%20nourr%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=35%2e80&PAYMENTREQUEST_0_ITEMAMT=32%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE%20DEPLUS&PAYMENTREQUEST_0_SHIPTOSTREET=4%20Rue%20Michy&PAYMENTREQUEST_0_SHIPTOCITY=M%c3%a9zi%c3%a8res%2dsur%2dOise&PAYMENTREQUEST_0_SHIPTOZIP=02240&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684242838&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20massage%20baume%20chinois%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME3=Huile%20essentielle%20Citronnelle%20bio&L_PAYMENTREQUEST_0_NAME4=Soin%20des%20pieds%20cr%c3%a8me%20r%c3%a9paratrice%20CATTIER%2075ml&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NUMBER3=143&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e40&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=5%2e95&L_PAYMENTREQUEST_0_AMT3=6%2e10&L_PAYMENTREQUEST_0_AMT4=7%2e40&L_PAYMENTREQUEST_0_DESC0=Le%20roll%2don%20de%20massage%20Baume%20Chinois%20puise%20son%20effi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=La%20feuille%20de%20citronnelle%20est%20reconnue%20pour%20%c3%a9loign%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Une%20texture%20douce%20et%20onctueuse%20pour%20r%c3%a9parer%2c%20nourr%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5GN50605X96002637 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5GN50605X96002637&PAYERID=G8RLRGHDM6NU8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=143&L_PAYMENTREQUEST_0_NAME3=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC3=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT3=6.1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.4&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=32.8&PAYMENTREQUEST_0_AMT=35.80&ADDROVERRIDE=1&EMAIL=deplus.veronique%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+DEPLUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684242838&PAYMENTREQUEST_0_SHIPTOSTREET=4+Rue+Michy&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=M%C3%A9zi%C3%A8res-sur-Oise&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=02240 -Result : TOKEN=EC%2d5GN50605X96002637&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d24T15%3a38%3a59Z&CORRELATIONID=5b0b056de938d&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=5M763574AE169311E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d24T15%3a38%3a58Z&PAYMENTINFO_0_AMT=35%2e80&PAYMENTINFO_0_FEEAMT=1%2e47&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5GN50605X96002637&PAYERID=G8RLRGHDM6NU8&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=157&L_PAYMENTREQUEST_0_NAME0=Roll-on+massage+baume+chinois+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Le+roll-on+de+massage+Baume+Chinois+puise+son+effi...&L_PAYMENTREQUEST_0_AMT0=7.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=143&L_PAYMENTREQUEST_0_NAME3=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC3=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT3=6.1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.4&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=32.8&PAYMENTREQUEST_0_AMT=35.80&ADDROVERRIDE=1&EMAIL=deplus.veronique%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+DEPLUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=0684242838&PAYMENTREQUEST_0_SHIPTOSTREET=4+Rue+Michy&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=M%C3%A9zi%C3%A8res-sur-Oise&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=02240 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d08N384726C912881X&TIMESTAMP=2016%2d07%2d25T07%3a29%3a15Z&CORRELATIONID=2d1c6ae2f0e62&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5VV40520HD110520W&TIMESTAMP=2016%2d07%2d25T07%3a29%3a21Z&CORRELATIONID=4d4844541c6ad&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8G725537BP226072W&TIMESTAMP=2016%2d07%2d25T07%3a29%3a24Z&CORRELATIONID=b2137b12b1fa3&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d49P29507M3681425V&TIMESTAMP=2016%2d07%2d25T07%3a29%3a27Z&CORRELATIONID=6a8516977717e&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d40349898BG926260T&TIMESTAMP=2016%2d07%2d25T07%3a29%3a31Z&CORRELATIONID=8cb5810129920&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7P066001F3465370D&TIMESTAMP=2016%2d07%2d25T07%3a29%3a36Z&CORRELATIONID=b45ecf9a4cb01&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1S332245JB296234F&TIMESTAMP=2016%2d07%2d25T07%3a56%3a39Z&CORRELATIONID=fa5a529db1fee&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6F366648YN505823W&TIMESTAMP=2016%2d07%2d25T08%3a21%3a23Z&CORRELATIONID=2da7214763455&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=273&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=newfy%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE+LUCAS&PAYMENTREQUEST_0_SHIPTOPHONENUM=06776988776&PAYMENTREQUEST_0_SHIPTOSTREET=51+allee+de+belledonne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+ismier&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38330&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d58003659AG4696240&TIMESTAMP=2016%2d07%2d25T09%3a01%3a26Z&CORRELATIONID=70866fda39831&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=273&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=newfy%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE+LUCAS&PAYMENTREQUEST_0_SHIPTOPHONENUM=06776988776&PAYMENTREQUEST_0_SHIPTOSTREET=51+allee+de+belledonne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+ismier&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38330&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-58003659AG4696240 -Result : TOKEN=EC%2d58003659AG4696240&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T09%3a02%3a53Z&CORRELATIONID=d171e87bf0210&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=christophe%2elucas10%40wanadoo%2efr&PAYERID=U7QYMQGVUXEVS&PAYERSTATUS=verified&FIRSTNAME=christophe&LASTNAME=lucas&COUNTRYCODE=FR&SHIPTONAME=CHRISTOPHE%20LUCAS&SHIPTOSTREET=51%20allee%20de%20belledonne&SHIPTOCITY=saint%20ismier&SHIPTOZIP=38330&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=06776988776&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=109%2e80&ITEMAMT=109%2e80&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Alb%c3%a2tre%2012Kg&L_NUMBER0=273&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=54%2e90&L_DESC0=Magic%e2%80%99Pierre%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=109%2e80&PAYMENTREQUEST_0_ITEMAMT=109%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE%20LUCAS&PAYMENTREQUEST_0_SHIPTOSTREET=51%20allee%20de%20belledonne&PAYMENTREQUEST_0_SHIPTOCITY=saint%20ismier&PAYMENTREQUEST_0_SHIPTOZIP=38330&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=06776988776&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Alb%c3%a2tre%2012Kg&L_PAYMENTREQUEST_0_NUMBER0=273&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99Pierre%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-58003659AG4696240 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-58003659AG4696240&PAYERID=U7QYMQGVUXEVS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=273&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=newfy%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE+LUCAS&PAYMENTREQUEST_0_SHIPTOPHONENUM=06776988776&PAYMENTREQUEST_0_SHIPTOSTREET=51+allee+de+belledonne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+ismier&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38330 -Result : TOKEN=EC%2d58003659AG4696240&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T09%3a02%3a56Z&CORRELATIONID=a1a5f9522c129&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=37E74018N80513424&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T09%3a02%3a54Z&PAYMENTINFO_0_AMT=109%2e80&PAYMENTINFO_0_FEEAMT=3%2e98&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-58003659AG4696240&PAYERID=U7QYMQGVUXEVS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=273&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=109.8&PAYMENTREQUEST_0_AMT=109.80&ADDROVERRIDE=1&EMAIL=newfy%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=CHRISTOPHE+LUCAS&PAYMENTREQUEST_0_SHIPTOPHONENUM=06776988776&PAYMENTREQUEST_0_SHIPTOSTREET=51+allee+de+belledonne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=saint+ismier&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38330 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=48&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=273&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT2=54.9&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=angeliquemorelli%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A9lique+M&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685533612&PAYMENTREQUEST_0_SHIPTOSTREET=4%2Croute+d%27audun+le+tiche+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VILLERUPT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54190&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d54W91707V5087382J&TIMESTAMP=2016%2d07%2d25T09%3a08%3a55Z&CORRELATIONID=237ca9576ba7f&ACK=Success&VERSION=106&BUILD=23642192 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=48&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=273&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT2=54.9&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=angeliquemorelli%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A9lique+M&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685533612&PAYMENTREQUEST_0_SHIPTOSTREET=4%2Croute+d%27audun+le+tiche+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VILLERUPT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54190&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-54W91707V5087382J -Result : TOKEN=EC%2d54W91707V5087382J&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T09%3a09%3a37Z&CORRELATIONID=9a8b1d078c470&ACK=Success&VERSION=106&BUILD=23642192&EMAIL=angeliquemorelli%40aol%2ecom&PAYERID=BZRQNRFRYF2ZQ&PAYERSTATUS=verified&FIRSTNAME=Ang%c3%a9lique&LASTNAME=GIORDANO&COUNTRYCODE=FR&SHIPTONAME=Ang%c3%a9lique%20M&SHIPTOSTREET=4%2croute%20d%27audun%20le%20tiche&SHIPTOCITY=VILLERUPT&SHIPTOZIP=54190&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0685533612&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=134%2e70&ITEMAMT=134%2e70&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Magic%27Protect%201L%20%2d%20Renforcement%20des%20mati%c3%a8res%20Magic%27D%c3%a9co&L_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Lin%2012kg&L_NAME2=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Alb%c3%a2tre%2012Kg&L_NUMBER0=284&L_NUMBER1=48&L_NUMBER2=273&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=24%2e90&L_AMT1=54%2e90&L_AMT2=54%2e90&L_DESC0=Renforce%20la%20protection%20de%20toutes%20vos%20mati%c3%a8res%20MAGI%2e%2e%2e&L_DESC1=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_DESC2=Magic%e2%80%99Pierre%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=134%2e70&PAYMENTREQUEST_0_ITEMAMT=134%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ang%c3%a9lique%20M&PAYMENTREQUEST_0_SHIPTOSTREET=4%2croute%20d%27audun%20le%20tiche&PAYMENTREQUEST_0_SHIPTOCITY=VILLERUPT&PAYMENTREQUEST_0_SHIPTOZIP=54190&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685533612&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect%201L%20%2d%20Renforcement%20des%20mati%c3%a8res%20Magic%27D%c3%a9co&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Lin%2012kg&L_PAYMENTREQUEST_0_NAME2=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Alb%c3%a2tre%2012Kg&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NUMBER1=48&L_PAYMENTREQUEST_0_NUMBER2=273&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=24%2e90&L_PAYMENTREQUEST_0_AMT1=54%2e90&L_PAYMENTREQUEST_0_AMT2=54%2e90&L_PAYMENTREQUEST_0_DESC0=Renforce%20la%20protection%20de%20toutes%20vos%20mati%c3%a8res%20MAGI%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Magic%e2%80%99Pierre%c2%a0est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-54W91707V5087382J - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-54W91707V5087382J&PAYERID=BZRQNRFRYF2ZQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=48&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=273&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT2=54.9&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=angeliquemorelli%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A9lique+M&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685533612&PAYMENTREQUEST_0_SHIPTOSTREET=4%2Croute+d%27audun+le+tiche+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VILLERUPT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54190 -Result : TOKEN=EC%2d54W91707V5087382J&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T09%3a09%3a40Z&CORRELATIONID=90ea7b41b85cb&ACK=Success&VERSION=106&BUILD=23642192&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8KW26692E49731058&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T09%3a09%3a39Z&PAYMENTINFO_0_AMT=134%2e70&PAYMENTINFO_0_FEEAMT=4%2e83&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-54W91707V5087382J&PAYERID=BZRQNRFRYF2ZQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=284&L_PAYMENTREQUEST_0_NAME0=Magic%27Protect+1L+-+Renforcement+des+mati%C3%A8res+Magic%27D%C3%A9co&L_PAYMENTREQUEST_0_DESC0=Renforce+la+protection+de+toutes+vos+mati%C3%A8res+MAGI...&L_PAYMENTREQUEST_0_AMT0=24.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=48&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC1=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT1=54.9&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=273&L_PAYMENTREQUEST_0_NAME2=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Alb%C3%A2tre+12Kg&L_PAYMENTREQUEST_0_DESC2=Magic%E2%80%99Pierre%C2%A0est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT2=54.9&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=angeliquemorelli%40aol.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A9lique+M&PAYMENTREQUEST_0_SHIPTOPHONENUM=0685533612&PAYMENTREQUEST_0_SHIPTOSTREET=4%2Croute+d%27audun+le+tiche+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=VILLERUPT&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=54190 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2WB014576G180790E&TIMESTAMP=2016%2d07%2d25T09%3a46%3a32Z&CORRELATIONID=61019d7a5f12&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3L137512XX5188508&TIMESTAMP=2016%2d07%2d25T09%3a46%3a38Z&CORRELATIONID=4f54f8d5c5387&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9UR12744TU738192L&TIMESTAMP=2016%2d07%2d25T09%3a46%3a40Z&CORRELATIONID=ff240039e2695&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9KC24950S6835952K&TIMESTAMP=2016%2d07%2d25T11%3a45%3a39Z&CORRELATIONID=782525764f777&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2K879604MX929432E&TIMESTAMP=2016%2d07%2d25T11%3a45%3a44Z&CORRELATIONID=a4fd395253fef&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=49&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration-+Kit+de+d%C3%A9coration+Magic%27Outils&L_PAYMENTREQUEST_0_DESC1=Le+kit+d%27enduit+de+d%C3%A9coration%C2%A0Magic%27Outils+est+sp%C3%A9...&L_PAYMENTREQUEST_0_AMT1=24.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=nathalieverney%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Nathalie+verney&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612479649&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+Farcy&PAYMENTREQUEST_0_SHIPTOSTREET2=B%C3%A2t+A+-+Etage+1&PAYMENTREQUEST_0_SHIPTOCITY=MELUN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d69688810X83968825&TIMESTAMP=2016%2d07%2d25T12%3a02%3a25Z&CORRELATIONID=9a3962806f6b6&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=49&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration-+Kit+de+d%C3%A9coration+Magic%27Outils&L_PAYMENTREQUEST_0_DESC1=Le+kit+d%27enduit+de+d%C3%A9coration%C2%A0Magic%27Outils+est+sp%C3%A9...&L_PAYMENTREQUEST_0_AMT1=24.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=nathalieverney%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Nathalie+verney&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612479649&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+Farcy&PAYMENTREQUEST_0_SHIPTOSTREET2=B%C3%A2t+A+-+Etage+1&PAYMENTREQUEST_0_SHIPTOCITY=MELUN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-69688810X83968825 -Result : TOKEN=EC%2d69688810X83968825&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T12%3a02%3a51Z&CORRELATIONID=3563dc9849705&ACK=Success&VERSION=106&BUILD=000000&EMAIL=nathalieverney%40yahoo%2efr&PAYERID=SH35U67M4EXAC&PAYERSTATUS=unverified&FIRSTNAME=Nathalie&LASTNAME=Verney&COUNTRYCODE=FR&SHIPTONAME=Nathalie%20verney&SHIPTOSTREET=11%20rue%20de%20Farcy&SHIPTOSTREET2=B%c3%a2t%20A%20%2d%20Etage%201&SHIPTOCITY=MELUN&SHIPTOZIP=77000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0612479649&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=134%2e70&ITEMAMT=134%2e70&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_NAME1=Enduit%20de%20d%c3%a9coration%2d%20Kit%20de%20d%c3%a9coration%20Magic%27Outils&L_NUMBER0=46&L_NUMBER1=49&L_QTY0=2&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=54%2e90&L_AMT1=24%2e90&L_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_DESC1=Le%20kit%20d%27enduit%20de%20d%c3%a9coration%c2%a0Magic%27Outils%20est%20sp%c3%a9%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=134%2e70&PAYMENTREQUEST_0_ITEMAMT=134%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Nathalie%20verney&PAYMENTREQUEST_0_SHIPTOSTREET=11%20rue%20de%20Farcy&PAYMENTREQUEST_0_SHIPTOSTREET2=B%c3%a2t%20A%20%2d%20Etage%201&PAYMENTREQUEST_0_SHIPTOCITY=MELUN&PAYMENTREQUEST_0_SHIPTOZIP=77000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612479649&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27B%c3%a9ton%20coloris%20Acier%2015kg&L_PAYMENTREQUEST_0_NAME1=Enduit%20de%20d%c3%a9coration%2d%20Kit%20de%20d%c3%a9coration%20Magic%27Outils&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NUMBER1=49&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_AMT1=24%2e90&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99B%c3%a9ton%20est%20un%c2%a0enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%c2%a0%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20kit%20d%27enduit%20de%20d%c3%a9coration%c2%a0Magic%27Outils%20est%20sp%c3%a9%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-69688810X83968825 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-69688810X83968825&PAYERID=SH35U67M4EXAC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=49&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration-+Kit+de+d%C3%A9coration+Magic%27Outils&L_PAYMENTREQUEST_0_DESC1=Le+kit+d%27enduit+de+d%C3%A9coration%C2%A0Magic%27Outils+est+sp%C3%A9...&L_PAYMENTREQUEST_0_AMT1=24.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=nathalieverney%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Nathalie+verney&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612479649&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+Farcy&PAYMENTREQUEST_0_SHIPTOSTREET2=B%C3%A2t+A+-+Etage+1&PAYMENTREQUEST_0_SHIPTOCITY=MELUN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77000 -Result : TOKEN=EC%2d69688810X83968825&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T12%3a02%3a54Z&CORRELATIONID=eb1ad1be60ac9&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3NP29079DY388192B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T12%3a02%3a52Z&PAYMENTINFO_0_AMT=134%2e70&PAYMENTINFO_0_FEEAMT=4%2e83&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-69688810X83968825&PAYERID=SH35U67M4EXAC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=46&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27B%C3%A9ton+coloris+Acier+15kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99B%C3%A9ton+est+un%C2%A0enduit+de+d%C3%A9coration+int%C3%A9rieur%C2%A0...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=49&L_PAYMENTREQUEST_0_NAME1=Enduit+de+d%C3%A9coration-+Kit+de+d%C3%A9coration+Magic%27Outils&L_PAYMENTREQUEST_0_DESC1=Le+kit+d%27enduit+de+d%C3%A9coration%C2%A0Magic%27Outils+est+sp%C3%A9...&L_PAYMENTREQUEST_0_AMT1=24.9&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=134.7&PAYMENTREQUEST_0_AMT=134.70&ADDROVERRIDE=1&EMAIL=nathalieverney%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Nathalie+verney&PAYMENTREQUEST_0_SHIPTOPHONENUM=0612479649&PAYMENTREQUEST_0_SHIPTOSTREET=11+rue+de+Farcy&PAYMENTREQUEST_0_SHIPTOSTREET2=B%C3%A2t+A+-+Etage+1&PAYMENTREQUEST_0_SHIPTOCITY=MELUN&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=77000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1HW61148WX443971P&TIMESTAMP=2016%2d07%2d25T13%3a22%3a49Z&CORRELATIONID=eedafe41bf42d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1HR85358R1288223K&TIMESTAMP=2016%2d07%2d25T13%3a45%3a22Z&CORRELATIONID=24300e7662017&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=5&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=42.45&PAYMENTREQUEST_0_AMT=48.45&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d01816109H4144134T&TIMESTAMP=2016%2d07%2d25T13%3a54%3a44Z&CORRELATIONID=9ade1332761a7&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=5&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=42.45&PAYMENTREQUEST_0_AMT=48.45&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=nanou0x%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=pascal+canneti&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686865778&PAYMENTREQUEST_0_SHIPTOSTREET=115+rt+des+vespins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+LAURENT+DU+VAR&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06700&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5SU721714Y686122N&TIMESTAMP=2016%2d07%2d25T14%3a11%3a32Z&CORRELATIONID=9cb6fe773d4a8&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=nanou0x%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=pascal+canneti&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686865778&PAYMENTREQUEST_0_SHIPTOSTREET=115+rt+des+vespins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+LAURENT+DU+VAR&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06700&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5SU721714Y686122N -Result : TOKEN=EC%2d5SU721714Y686122N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T14%3a12%3a06Z&CORRELATIONID=3db77da13fbf&ACK=Success&VERSION=106&BUILD=000000&EMAIL=nanou0x%40gmail%2ecom&PAYERID=4647Z8E32MD78&PAYERSTATUS=verified&FIRSTNAME=virginia&LASTNAME=mafray&COUNTRYCODE=FR&SHIPTONAME=pascal%20canneti&SHIPTOSTREET=115%20rt%20des%20vespins&SHIPTOCITY=SAINT%20LAURENT%20DU%20VAR&SHIPTOZIP=06700&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0686865778&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=33%2e40&ITEMAMT=30%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=33%2e40&PAYMENTREQUEST_0_ITEMAMT=30%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=pascal%20canneti&PAYMENTREQUEST_0_SHIPTOSTREET=115%20rt%20des%20vespins&PAYMENTREQUEST_0_SHIPTOCITY=SAINT%20LAURENT%20DU%20VAR&PAYMENTREQUEST_0_SHIPTOZIP=06700&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686865778&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5SU721714Y686122N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5SU721714Y686122N&PAYERID=4647Z8E32MD78&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=nanou0x%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=pascal+canneti&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686865778&PAYMENTREQUEST_0_SHIPTOSTREET=115+rt+des+vespins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+LAURENT+DU+VAR&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06700 -Result : TOKEN=EC%2d5SU721714Y686122N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T14%3a12%3a09Z&CORRELATIONID=7fe8e76331c0a&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=9J259771K59470339&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T14%3a12%3a07Z&PAYMENTINFO_0_AMT=33%2e40&PAYMENTINFO_0_FEEAMT=1%2e39&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5SU721714Y686122N&PAYERID=4647Z8E32MD78&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=nanou0x%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=pascal+canneti&PAYMENTREQUEST_0_SHIPTOPHONENUM=0686865778&PAYMENTREQUEST_0_SHIPTOSTREET=115+rt+des+vespins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+LAURENT+DU+VAR&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06700 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7LJ956825H8162204&TIMESTAMP=2016%2d07%2d25T15%3a19%3a03Z&CORRELATIONID=aeedfcfa7029c&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=242&L_PAYMENTREQUEST_0_NAME0=Anti+Punaises+de+Lits++curatif+-+forte+pr%C3%A9sence&L_PAYMENTREQUEST_0_DESC0=L%E2%80%99insecticide+v%C3%A9g%C3%A9tal%C2%A0ANTI+PUNAISES+de+LITS+VERLIN...&L_PAYMENTREQUEST_0_AMT0=27.55&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.1&PAYMENTREQUEST_0_AMT=55.10&ADDROVERRIDE=1&EMAIL=dolegoupil%40cegetel.net&PAYMENTREQUEST_0_SHIPTONAME=dominique+le+goupil&PAYMENTREQUEST_0_SHIPTOPHONENUM=0679514614&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+de+la+Vilaine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sainte-marie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=35600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9BA13293AL851893W&TIMESTAMP=2016%2d07%2d25T19%3a18%3a14Z&CORRELATIONID=2508d27923eb&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=242&L_PAYMENTREQUEST_0_NAME0=Anti+Punaises+de+Lits++curatif+-+forte+pr%C3%A9sence&L_PAYMENTREQUEST_0_DESC0=L%E2%80%99insecticide+v%C3%A9g%C3%A9tal%C2%A0ANTI+PUNAISES+de+LITS+VERLIN...&L_PAYMENTREQUEST_0_AMT0=27.55&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.1&PAYMENTREQUEST_0_AMT=55.10&ADDROVERRIDE=1&EMAIL=dolegoupil%40cegetel.net&PAYMENTREQUEST_0_SHIPTONAME=dominique+le+goupil&PAYMENTREQUEST_0_SHIPTOPHONENUM=0679514614&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+de+la+Vilaine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sainte-marie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=35600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9BA13293AL851893W -Result : TOKEN=EC%2d9BA13293AL851893W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T19%3a18%3a58Z&CORRELATIONID=9ea027a343ca7&ACK=Success&VERSION=106&BUILD=000000&EMAIL=dolegoupil%40cegetel%2enet&PAYERID=KH3UYJBWV4LZG&PAYERSTATUS=verified&FIRSTNAME=dominique&LASTNAME=LE%20GOUPIL&COUNTRYCODE=FR&SHIPTONAME=dominique%20LE%20GOUPIL&SHIPTOSTREET=13%20rue%20de%20la%20Vilaine&SHIPTOCITY=sainte%20marie&SHIPTOSTATE=sainte%20marie&SHIPTOZIP=35600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0679514614&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=55%2e10&ITEMAMT=55%2e10&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Anti%20Punaises%20de%20Lits%20%20curatif%20%2d%20forte%20pr%c3%a9sence&L_NUMBER0=242&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=27%2e55&L_DESC0=L%e2%80%99insecticide%20v%c3%a9g%c3%a9tal%c2%a0ANTI%20PUNAISES%20de%20LITS%20VERLIN%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=55%2e10&PAYMENTREQUEST_0_ITEMAMT=55%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=dominique%20LE%20GOUPIL&PAYMENTREQUEST_0_SHIPTOSTREET=13%20rue%20de%20la%20Vilaine&PAYMENTREQUEST_0_SHIPTOCITY=sainte%20marie&PAYMENTREQUEST_0_SHIPTOSTATE=sainte%20marie&PAYMENTREQUEST_0_SHIPTOZIP=35600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0679514614&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Anti%20Punaises%20de%20Lits%20%20curatif%20%2d%20forte%20pr%c3%a9sence&L_PAYMENTREQUEST_0_NUMBER0=242&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=27%2e55&L_PAYMENTREQUEST_0_DESC0=L%e2%80%99insecticide%20v%c3%a9g%c3%a9tal%c2%a0ANTI%20PUNAISES%20de%20LITS%20VERLIN%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9BA13293AL851893W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9BA13293AL851893W&PAYERID=KH3UYJBWV4LZG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=242&L_PAYMENTREQUEST_0_NAME0=Anti+Punaises+de+Lits++curatif+-+forte+pr%C3%A9sence&L_PAYMENTREQUEST_0_DESC0=L%E2%80%99insecticide+v%C3%A9g%C3%A9tal%C2%A0ANTI+PUNAISES+de+LITS+VERLIN...&L_PAYMENTREQUEST_0_AMT0=27.55&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.1&PAYMENTREQUEST_0_AMT=55.10&ADDROVERRIDE=1&EMAIL=dolegoupil%40cegetel.net&PAYMENTREQUEST_0_SHIPTONAME=dominique+le+goupil&PAYMENTREQUEST_0_SHIPTOPHONENUM=0679514614&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+de+la+Vilaine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sainte-marie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=35600 -Result : TOKEN=EC%2d9BA13293AL851893W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T19%3a19%3a01Z&CORRELATIONID=d5b81096846bc&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3T131398P1220911L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T19%3a19%3a00Z&PAYMENTINFO_0_AMT=55%2e10&PAYMENTINFO_0_FEEAMT=2%2e12&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9BA13293AL851893W&PAYERID=KH3UYJBWV4LZG&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=242&L_PAYMENTREQUEST_0_NAME0=Anti+Punaises+de+Lits++curatif+-+forte+pr%C3%A9sence&L_PAYMENTREQUEST_0_DESC0=L%E2%80%99insecticide+v%C3%A9g%C3%A9tal%C2%A0ANTI+PUNAISES+de+LITS+VERLIN...&L_PAYMENTREQUEST_0_AMT0=27.55&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.1&PAYMENTREQUEST_0_AMT=55.10&ADDROVERRIDE=1&EMAIL=dolegoupil%40cegetel.net&PAYMENTREQUEST_0_SHIPTONAME=dominique+le+goupil&PAYMENTREQUEST_0_SHIPTOPHONENUM=0679514614&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+de+la+Vilaine&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=sainte-marie&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=35600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Coralie.chanu%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=Coralie++Chanu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650772500&PAYMENTREQUEST_0_SHIPTOSTREET=61+rue+henri+regnault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris+La+D%C3%A9fense&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92975&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0B027162HF292222S&TIMESTAMP=2016%2d07%2d25T19%3a44%3a52Z&CORRELATIONID=8c4d967874273&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Coralie.chanu%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=Coralie++Chanu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650772500&PAYMENTREQUEST_0_SHIPTOSTREET=61+rue+henri+regnault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris+La+D%C3%A9fense&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92975&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0B027162HF292222S -Result : TOKEN=EC%2d0B027162HF292222S&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T19%3a45%3a23Z&CORRELATIONID=a0ba804ee92b3&ACK=Success&VERSION=106&BUILD=000000&EMAIL=coralie%2echanu%40laposte%2enet&PAYERID=NTC2FEHXA5E9W&PAYERSTATUS=verified&FIRSTNAME=chanu&LASTNAME=coralie&COUNTRYCODE=FR&SHIPTONAME=Coralie%20%20Chanu&SHIPTOSTREET=61%20rue%20henri%20regnault&SHIPTOCITY=Paris%20La%20D%c3%a9fense&SHIPTOZIP=92975&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0650772500&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Coralie%20%20Chanu&PAYMENTREQUEST_0_SHIPTOSTREET=61%20rue%20henri%20regnault&PAYMENTREQUEST_0_SHIPTOCITY=Paris%20La%20D%c3%a9fense&PAYMENTREQUEST_0_SHIPTOZIP=92975&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650772500&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0B027162HF292222S - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0B027162HF292222S&PAYERID=NTC2FEHXA5E9W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Coralie.chanu%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=Coralie++Chanu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650772500&PAYMENTREQUEST_0_SHIPTOSTREET=61+rue+henri+regnault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris+La+D%C3%A9fense&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92975 -Result : TOKEN=EC%2d0B027162HF292222S&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T19%3a45%3a26Z&CORRELATIONID=4f4cde1d2c2&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0B027162HF292222S&PAYERID=NTC2FEHXA5E9W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=Coralie.chanu%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=Coralie++Chanu&PAYMENTREQUEST_0_SHIPTOPHONENUM=0650772500&PAYMENTREQUEST_0_SHIPTOSTREET=61+rue+henri+regnault&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Paris+La+D%C3%A9fense&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92975 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=marc.sonaglia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marc+Sonaglia&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+51+93+36+54&PAYMENTREQUEST_0_SHIPTOSTREET=185+A+chemin+Jean+Baptiste+Calviera&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Levens&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06670&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6BN67347S4641894G&TIMESTAMP=2016%2d07%2d25T19%3a55%3a26Z&CORRELATIONID=31bbbd42a5ed9&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=marc.sonaglia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marc+Sonaglia&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+51+93+36+54&PAYMENTREQUEST_0_SHIPTOSTREET=185+A+chemin+Jean+Baptiste+Calviera&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Levens&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06670&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6BN67347S4641894G -Result : TOKEN=EC%2d6BN67347S4641894G&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T19%3a56%3a07Z&CORRELATIONID=d61e1eca18d90&ACK=Success&VERSION=106&BUILD=000000&EMAIL=marc%2esonaglia%40gmail%2ecom&PAYERID=3BVQBH28HBNBA&PAYERSTATUS=verified&FIRSTNAME=Marc&LASTNAME=Sonaglia&COUNTRYCODE=FR&SHIPTONAME=MARC%20SONAGLIA&SHIPTOSTREET=185%20A%20CHEMIN%20JEAN%20BAPTISTE%20CALVIERA&SHIPTOCITY=LEVENS&SHIPTOZIP=06670&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=06%2051%2093%2036%2054&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=26%2e40&ITEMAMT=23%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_NUMBER0=300&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=23%2e40&L_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=26%2e40&PAYMENTREQUEST_0_ITEMAMT=23%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=MARC%20SONAGLIA&PAYMENTREQUEST_0_SHIPTOSTREET=185%20A%20CHEMIN%20JEAN%20BAPTISTE%20CALVIERA&PAYMENTREQUEST_0_SHIPTOCITY=LEVENS&PAYMENTREQUEST_0_SHIPTOZIP=06670&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=06%2051%2093%2036%2054&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=23%2e40&L_PAYMENTREQUEST_0_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6BN67347S4641894G - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6BN67347S4641894G&PAYERID=3BVQBH28HBNBA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=marc.sonaglia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marc+Sonaglia&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+51+93+36+54&PAYMENTREQUEST_0_SHIPTOSTREET=185+A+chemin+Jean+Baptiste+Calviera&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Levens&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06670 -Result : TOKEN=EC%2d6BN67347S4641894G&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T19%3a56%3a10Z&CORRELATIONID=200a15eb43357&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6P3919052N8118839&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T19%3a56%3a08Z&PAYMENTINFO_0_AMT=26%2e40&PAYMENTINFO_0_FEEAMT=1%2e15&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6BN67347S4641894G&PAYERID=3BVQBH28HBNBA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=23.4&PAYMENTREQUEST_0_AMT=26.40&ADDROVERRIDE=1&EMAIL=marc.sonaglia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Marc+Sonaglia&PAYMENTREQUEST_0_SHIPTOPHONENUM=06+51+93+36+54&PAYMENTREQUEST_0_SHIPTOSTREET=185+A+chemin+Jean+Baptiste+Calviera&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Levens&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06670 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=299&L_PAYMENTREQUEST_0_NAME1=Eucalyptus+bio&L_PAYMENTREQUEST_0_DESC1=Feuilles+d%27eucalyptus+Jardin%27Bio...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=80&L_PAYMENTREQUEST_0_NAME2=Lait+corps+soyeux+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+conserver+souplesse+et+confort%2C+la+peau+a+...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.65&PAYMENTREQUEST_0_AMT=21.65&ADDROVERRIDE=1&EMAIL=Sylv3rsan%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Sylvain+Grebent&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33611753812&PAYMENTREQUEST_0_SHIPTOSTREET=6+Bis+Rue+Du+Tremois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Blagny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08110&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d6K919249SD175520M&TIMESTAMP=2016%2d07%2d25T22%3a35%3a46Z&CORRELATIONID=d40e445912adf&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=299&L_PAYMENTREQUEST_0_NAME1=Eucalyptus+bio&L_PAYMENTREQUEST_0_DESC1=Feuilles+d%27eucalyptus+Jardin%27Bio...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=80&L_PAYMENTREQUEST_0_NAME2=Lait+corps+soyeux+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+conserver+souplesse+et+confort%2C+la+peau+a+...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.65&PAYMENTREQUEST_0_AMT=21.65&ADDROVERRIDE=1&EMAIL=Sylv3rsan%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Sylvain+Grebent&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33611753812&PAYMENTREQUEST_0_SHIPTOSTREET=6+Bis+Rue+Du+Tremois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Blagny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08110&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6K919249SD175520M -Result : TOKEN=EC%2d6K919249SD175520M&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d25T22%3a37%3a08Z&CORRELATIONID=1dd7259873ba9&ACK=Success&VERSION=106&BUILD=000000&EMAIL=sylvaing%40club%2dinternet%2efr&PAYERID=GYS9D23SLH3SQ&PAYERSTATUS=verified&FIRSTNAME=sylvain&LASTNAME=grebent&COUNTRYCODE=FR&SHIPTONAME=Sylvain%20Grebent&SHIPTOSTREET=6%20Bis%20Rue%20Du%20Tremois&SHIPTOCITY=Blagny&SHIPTOZIP=08110&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33611753812&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e65&ITEMAMT=15%2e65&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Eucalyptus%20bio&L_NAME2=Lait%20corps%20soyeux%20au%20lait%20d%27%c3%a2nesse%20bio&L_NUMBER0=160&L_NUMBER1=299&L_NUMBER2=80&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e95&L_AMT1=2%2e30&L_AMT2=7%2e40&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Feuilles%20d%27eucalyptus%20Jardin%27Bio%2e%2e%2e&L_DESC2=Afin%20de%20conserver%20souplesse%20et%20confort%2c%20la%20peau%20a%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e65&PAYMENTREQUEST_0_ITEMAMT=15%2e65&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Sylvain%20Grebent&PAYMENTREQUEST_0_SHIPTOSTREET=6%20Bis%20Rue%20Du%20Tremois&PAYMENTREQUEST_0_SHIPTOCITY=Blagny&PAYMENTREQUEST_0_SHIPTOZIP=08110&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33611753812&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Eucalyptus%20bio&L_PAYMENTREQUEST_0_NAME2=Lait%20corps%20soyeux%20au%20lait%20d%27%c3%a2nesse%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=299&L_PAYMENTREQUEST_0_NUMBER2=80&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=2%2e30&L_PAYMENTREQUEST_0_AMT2=7%2e40&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Feuilles%20d%27eucalyptus%20Jardin%27Bio%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Afin%20de%20conserver%20souplesse%20et%20confort%2c%20la%20peau%20a%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6K919249SD175520M - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6K919249SD175520M&PAYERID=GYS9D23SLH3SQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=299&L_PAYMENTREQUEST_0_NAME1=Eucalyptus+bio&L_PAYMENTREQUEST_0_DESC1=Feuilles+d%27eucalyptus+Jardin%27Bio...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=80&L_PAYMENTREQUEST_0_NAME2=Lait+corps+soyeux+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+conserver+souplesse+et+confort%2C+la+peau+a+...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.65&PAYMENTREQUEST_0_AMT=21.65&ADDROVERRIDE=1&EMAIL=Sylv3rsan%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Sylvain+Grebent&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33611753812&PAYMENTREQUEST_0_SHIPTOSTREET=6+Bis+Rue+Du+Tremois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Blagny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08110 -Result : TOKEN=EC%2d6K919249SD175520M&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d25T22%3a37%3a11Z&CORRELATIONID=fd907fe193e52&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=00B61007NX3351314&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d25T22%3a37%3a10Z&PAYMENTINFO_0_AMT=21%2e65&PAYMENTINFO_0_FEEAMT=0%2e99&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-6K919249SD175520M&PAYERID=GYS9D23SLH3SQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=299&L_PAYMENTREQUEST_0_NAME1=Eucalyptus+bio&L_PAYMENTREQUEST_0_DESC1=Feuilles+d%27eucalyptus+Jardin%27Bio...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=80&L_PAYMENTREQUEST_0_NAME2=Lait+corps+soyeux+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC2=Afin+de+conserver+souplesse+et+confort%2C+la+peau+a+...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.65&PAYMENTREQUEST_0_AMT=21.65&ADDROVERRIDE=1&EMAIL=Sylv3rsan%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Sylvain+Grebent&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33611753812&PAYMENTREQUEST_0_SHIPTOSTREET=6+Bis+Rue+Du+Tremois&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Blagny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=08110 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9JK33057W6085763K&TIMESTAMP=2016%2d07%2d26T05%3a49%3a10Z&CORRELATIONID=8b4a5b7a4f3ad&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=4&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=33.96&PAYMENTREQUEST_0_AMT=39.96&ADDROVERRIDE=1&EMAIL=bruno.beauperin0557%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=B%C3%A9atrice+BEAUPERIN&PAYMENTREQUEST_0_SHIPTOPHONENUM=0240724001&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+du+mont+juillet+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=les+touches&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=44390&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=cvro%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+LLINARES&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607082210&PAYMENTREQUEST_0_SHIPTOSTREET=1145+rue+du+Malbousquet&PAYMENTREQUEST_0_SHIPTOSTREET2=Le+Jujubier+6&PAYMENTREQUEST_0_SHIPTOCITY=FREJUS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d39M09815RF9989842&TIMESTAMP=2016%2d07%2d26T06%3a21%3a25Z&CORRELATIONID=996cc5dcdf716&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=cvro%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+LLINARES&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607082210&PAYMENTREQUEST_0_SHIPTOSTREET=1145+rue+du+Malbousquet&PAYMENTREQUEST_0_SHIPTOSTREET2=Le+Jujubier+6&PAYMENTREQUEST_0_SHIPTOCITY=FREJUS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-39M09815RF9989842 -Result : TOKEN=EC%2d39M09815RF9989842&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T06%3a21%3a53Z&CORRELATIONID=ede803822a45f&ACK=Success&VERSION=106&BUILD=000000&EMAIL=cvro%40free%2efr&PAYERID=R6DXTSE6KWYU4&PAYERSTATUS=verified&FIRSTNAME=V%c3%a9ronique&LASTNAME=LLINARES&COUNTRYCODE=FR&SHIPTONAME=Veronique%20Llinares&SHIPTOSTREET=1145%20Rue%20Du%20Malbousquet%20Le%20Jujubier%206&SHIPTOCITY=Frejus&SHIPTOZIP=83600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0607082210&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Veronique%20Llinares&PAYMENTREQUEST_0_SHIPTOSTREET=1145%20Rue%20Du%20Malbousquet%20Le%20Jujubier%206&PAYMENTREQUEST_0_SHIPTOCITY=Frejus&PAYMENTREQUEST_0_SHIPTOZIP=83600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607082210&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-39M09815RF9989842 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-39M09815RF9989842&PAYERID=R6DXTSE6KWYU4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=cvro%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+LLINARES&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607082210&PAYMENTREQUEST_0_SHIPTOSTREET=1145+rue+du+Malbousquet&PAYMENTREQUEST_0_SHIPTOSTREET2=Le+Jujubier+6&PAYMENTREQUEST_0_SHIPTOCITY=FREJUS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83600 -Result : TOKEN=EC%2d39M09815RF9989842&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T06%3a21%3a56Z&CORRELATIONID=2decc00c5fcff&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=57N51687SA650573V&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T06%3a21%3a55Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-39M09815RF9989842&PAYERID=R6DXTSE6KWYU4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=cvro%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=VERONIQUE+LLINARES&PAYMENTREQUEST_0_SHIPTOPHONENUM=0607082210&PAYMENTREQUEST_0_SHIPTOSTREET=1145+rue+du+Malbousquet&PAYMENTREQUEST_0_SHIPTOSTREET2=Le+Jujubier+6&PAYMENTREQUEST_0_SHIPTOCITY=FREJUS&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=83600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=8.49&PAYMENTREQUEST_0_AMT=14.49&ADDROVERRIDE=1&EMAIL=famille.pitat%40dartybox.com&PAYMENTREQUEST_0_SHIPTONAME=corinne+pitat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0134741854&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+des+alouettes&PAYMENTREQUEST_0_SHIPTOSTREET2=3&PAYMENTREQUEST_0_SHIPTOCITY=meulan+en+yvelines&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0EJ01311DC379251D&TIMESTAMP=2016%2d07%2d26T08%3a07%3a32Z&CORRELATIONID=ea6b2d7790d83&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=8.49&PAYMENTREQUEST_0_AMT=14.49&ADDROVERRIDE=1&EMAIL=famille.pitat%40dartybox.com&PAYMENTREQUEST_0_SHIPTONAME=corinne+pitat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0134741854&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+des+alouettes&PAYMENTREQUEST_0_SHIPTOSTREET2=3&PAYMENTREQUEST_0_SHIPTOCITY=meulan+en+yvelines&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78180&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0EJ01311DC379251D -Result : TOKEN=EC%2d0EJ01311DC379251D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T08%3a08%3a30Z&CORRELATIONID=4f7eef57f2e76&ACK=Success&VERSION=106&BUILD=000000&EMAIL=famille%2epitat%40dartybox%2ecom&PAYERID=QAMFG2NNSABEU&PAYERSTATUS=verified&FIRSTNAME=corinne&LASTNAME=pitat&COUNTRYCODE=FR&SHIPTONAME=corinne%20pitat&SHIPTOSTREET=34%20rue%20des%20alouettes&SHIPTOSTREET2=3&SHIPTOCITY=meulan%20en%20yvelines&SHIPTOZIP=78180&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0134741854&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=14%2e49&ITEMAMT=8%2e49&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_NUMBER0=174&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e49&L_DESC0=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=14%2e49&PAYMENTREQUEST_0_ITEMAMT=8%2e49&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=corinne%20pitat&PAYMENTREQUEST_0_SHIPTOSTREET=34%20rue%20des%20alouettes&PAYMENTREQUEST_0_SHIPTOSTREET2=3&PAYMENTREQUEST_0_SHIPTOCITY=meulan%20en%20yvelines&PAYMENTREQUEST_0_SHIPTOZIP=78180&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0134741854&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e49&L_PAYMENTREQUEST_0_DESC0=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0EJ01311DC379251D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0EJ01311DC379251D&PAYERID=QAMFG2NNSABEU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=8.49&PAYMENTREQUEST_0_AMT=14.49&ADDROVERRIDE=1&EMAIL=famille.pitat%40dartybox.com&PAYMENTREQUEST_0_SHIPTONAME=corinne+pitat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0134741854&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+des+alouettes&PAYMENTREQUEST_0_SHIPTOSTREET2=3&PAYMENTREQUEST_0_SHIPTOCITY=meulan+en+yvelines&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78180 -Result : TOKEN=EC%2d0EJ01311DC379251D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T08%3a08%3a34Z&CORRELATIONID=801621a041485&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=01F896833R782971X&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T08%3a08%3a32Z&PAYMENTINFO_0_AMT=14%2e49&PAYMENTINFO_0_FEEAMT=0%2e74&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0EJ01311DC379251D&PAYERID=QAMFG2NNSABEU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=174&L_PAYMENTREQUEST_0_NAME0=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC0=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT0=8.49&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=8.49&PAYMENTREQUEST_0_AMT=14.49&ADDROVERRIDE=1&EMAIL=famille.pitat%40dartybox.com&PAYMENTREQUEST_0_SHIPTONAME=corinne+pitat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0134741854&PAYMENTREQUEST_0_SHIPTOSTREET=34+rue+des+alouettes&PAYMENTREQUEST_0_SHIPTOSTREET2=3&PAYMENTREQUEST_0_SHIPTOCITY=meulan+en+yvelines&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78180 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=245&L_PAYMENTREQUEST_0_NAME1=Th%C3%A9+Tuocha+%2B+7+plantes+Kilos+tenaces+%2F+Saveur+vanille&L_PAYMENTREQUEST_0_DESC1=Retrouvez+la+puissance+des+plantes+minceur+au+coeu...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=6.7&PAYMENTREQUEST_0_AMT=9.70&ADDROVERRIDE=1&EMAIL=Ravacheagnes%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Agnes+Nury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781306278&PAYMENTREQUEST_0_SHIPTOSTREET=Chez+mr+lenoir+D.&PAYMENTREQUEST_0_SHIPTOSTREET2=104+ave+paul+santy&PAYMENTREQUEST_0_SHIPTOCITY=Lyon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69008&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8LU27796AF5481227&TIMESTAMP=2016%2d07%2d26T09%3a49%3a13Z&CORRELATIONID=bb21b2ef8f59e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=245&L_PAYMENTREQUEST_0_NAME1=Th%C3%A9+Tuocha+%2B+7+plantes+Kilos+tenaces+%2F+Saveur+vanille&L_PAYMENTREQUEST_0_DESC1=Retrouvez+la+puissance+des+plantes+minceur+au+coeu...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=6.7&PAYMENTREQUEST_0_AMT=9.70&ADDROVERRIDE=1&EMAIL=Ravacheagnes%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Agnes+Nury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781306278&PAYMENTREQUEST_0_SHIPTOSTREET=Chez+mr+lenoir+D.&PAYMENTREQUEST_0_SHIPTOSTREET2=104+ave+paul+santy&PAYMENTREQUEST_0_SHIPTOCITY=Lyon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69008&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8LU27796AF5481227 -Result : TOKEN=EC%2d8LU27796AF5481227&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T09%3a49%3a32Z&CORRELATIONID=32814d674c063&ACK=Success&VERSION=106&BUILD=000000&EMAIL=agnes%2enury%40free%2efr&PAYERID=HFS9W82FTA8XY&PAYERSTATUS=verified&FIRSTNAME=agnes&LASTNAME=nury&COUNTRYCODE=FR&SHIPTONAME=Agnes%20Nury&SHIPTOSTREET=Chez%20mr%20lenoir%20D%2e&SHIPTOSTREET2=104%20ave%20paul%20santy&SHIPTOCITY=Lyon&SHIPTOZIP=69008&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0781306278&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=9%2e70&ITEMAMT=6%2e70&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_NAME1=Th%c3%a9%20Tuocha%20%2b%207%20plantes%20Kilos%20tenaces%20%2f%20Saveur%20vanille&L_NUMBER0=170&L_NUMBER1=245&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=3%2e51&L_AMT1=3%2e19&L_DESC0=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&L_DESC1=Retrouvez%20la%20puissance%20des%20plantes%20minceur%20au%20coeu%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=9%2e70&PAYMENTREQUEST_0_ITEMAMT=6%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Agnes%20Nury&PAYMENTREQUEST_0_SHIPTOSTREET=Chez%20mr%20lenoir%20D%2e&PAYMENTREQUEST_0_SHIPTOSTREET2=104%20ave%20paul%20santy&PAYMENTREQUEST_0_SHIPTOCITY=Lyon&PAYMENTREQUEST_0_SHIPTOZIP=69008&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781306278&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Infusion%20Ventre%20plat%20%26%20Digestion%2c%20Menthe%20%2f%20Fucus%20%2f%20R%c3%a9glisses&L_PAYMENTREQUEST_0_NAME1=Th%c3%a9%20Tuocha%20%2b%207%20plantes%20Kilos%20tenaces%20%2f%20Saveur%20vanille&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NUMBER1=245&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e51&L_PAYMENTREQUEST_0_AMT1=3%2e19&L_PAYMENTREQUEST_0_DESC0=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20digestion%20au%20co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Retrouvez%20la%20puissance%20des%20plantes%20minceur%20au%20coeu%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8LU27796AF5481227 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8LU27796AF5481227&PAYERID=HFS9W82FTA8XY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=245&L_PAYMENTREQUEST_0_NAME1=Th%C3%A9+Tuocha+%2B+7+plantes+Kilos+tenaces+%2F+Saveur+vanille&L_PAYMENTREQUEST_0_DESC1=Retrouvez+la+puissance+des+plantes+minceur+au+coeu...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=6.7&PAYMENTREQUEST_0_AMT=9.70&ADDROVERRIDE=1&EMAIL=Ravacheagnes%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Agnes+Nury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781306278&PAYMENTREQUEST_0_SHIPTOSTREET=Chez+mr+lenoir+D.&PAYMENTREQUEST_0_SHIPTOSTREET2=104+ave+paul+santy&PAYMENTREQUEST_0_SHIPTOCITY=Lyon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69008 -Result : TOKEN=EC%2d8LU27796AF5481227&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T09%3a49%3a35Z&CORRELATIONID=c6c86af467698&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=94K79964DL6493601&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T09%3a49%3a34Z&PAYMENTINFO_0_AMT=9%2e70&PAYMENTINFO_0_FEEAMT=0%2e58&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8LU27796AF5481227&PAYERID=HFS9W82FTA8XY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=170&L_PAYMENTREQUEST_0_NAME0=Infusion+Ventre+plat+%26+Digestion%2C+Menthe+%2F+Fucus+%2F+R%C3%A9glisses&L_PAYMENTREQUEST_0_DESC0=Retrouvez+l%27efficacit%C3%A9+des+plantes+digestion+au+co...&L_PAYMENTREQUEST_0_AMT0=3.51&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=245&L_PAYMENTREQUEST_0_NAME1=Th%C3%A9+Tuocha+%2B+7+plantes+Kilos+tenaces+%2F+Saveur+vanille&L_PAYMENTREQUEST_0_DESC1=Retrouvez+la+puissance+des+plantes+minceur+au+coeu...&L_PAYMENTREQUEST_0_AMT1=3.19&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=6.7&PAYMENTREQUEST_0_AMT=9.70&ADDROVERRIDE=1&EMAIL=Ravacheagnes%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Agnes+Nury&PAYMENTREQUEST_0_SHIPTOPHONENUM=0781306278&PAYMENTREQUEST_0_SHIPTOSTREET=Chez+mr+lenoir+D.&PAYMENTREQUEST_0_SHIPTOSTREET2=104+ave+paul+santy&PAYMENTREQUEST_0_SHIPTOCITY=Lyon&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69008 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25&PAYMENTREQUEST_0_AMT=28.00&ADDROVERRIDE=1&EMAIL=patricia.bauduin%40bbox.fr&PAYMENTREQUEST_0_SHIPTONAME=patricia+bauduin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668567932&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+anne+marie+ponrouch+petit&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ouveillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11590&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7GA55462XX356483N&TIMESTAMP=2016%2d07%2d26T09%3a54%3a50Z&CORRELATIONID=102b24c6d7d7c&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25&PAYMENTREQUEST_0_AMT=28.00&ADDROVERRIDE=1&EMAIL=patricia.bauduin%40bbox.fr&PAYMENTREQUEST_0_SHIPTONAME=patricia+bauduin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668567932&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+anne+marie+ponrouch+petit&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ouveillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11590&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7GA55462XX356483N -Result : TOKEN=EC%2d7GA55462XX356483N&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T09%3a55%3a31Z&CORRELATIONID=774dcdc62db1a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=patricia%2ebauduin%40bbox%2efr&PAYERID=X2AKFU9LA8V88&PAYERSTATUS=unverified&FIRSTNAME=patricia&LASTNAME=bauduin&COUNTRYCODE=FR&SHIPTONAME=patricia%20bauduin&SHIPTOSTREET=10%20rue%20anne%20marie%20ponrouch%20petit&SHIPTOCITY=OUVEILLAN&SHIPTOSTATE=Languedoc%2dRoussillon&SHIPTOZIP=11590&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0668567932&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=28%2e00&ITEMAMT=25%2e00&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_NAME1=R%c3%a9duction%20newsletter&L_NUMBER0=208&L_NUMBER1=644&L_QTY0=2&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=17%2e50&L_AMT1=%2d10%2e00&L_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&L_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=28%2e00&PAYMENTREQUEST_0_ITEMAMT=25%2e00&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=patricia%20bauduin&PAYMENTREQUEST_0_SHIPTOSTREET=10%20rue%20anne%20marie%20ponrouch%20petit&PAYMENTREQUEST_0_SHIPTOCITY=OUVEILLAN&PAYMENTREQUEST_0_SHIPTOSTATE=Languedoc%2dRoussillon&PAYMENTREQUEST_0_SHIPTOZIP=11590&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668567932&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_PAYMENTREQUEST_0_NAME1=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e50&L_PAYMENTREQUEST_0_AMT1=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7GA55462XX356483N - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7GA55462XX356483N&PAYERID=X2AKFU9LA8V88&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25&PAYMENTREQUEST_0_AMT=28.00&ADDROVERRIDE=1&EMAIL=patricia.bauduin%40bbox.fr&PAYMENTREQUEST_0_SHIPTONAME=patricia+bauduin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668567932&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+anne+marie+ponrouch+petit&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ouveillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11590 -Result : TOKEN=EC%2d7GA55462XX356483N&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T09%3a55%3a35Z&CORRELATIONID=34958ee986040&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8TS50624F1329670L&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T09%3a55%3a33Z&PAYMENTINFO_0_AMT=28%2e00&PAYMENTINFO_0_FEEAMT=1%2e20&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7GA55462XX356483N&PAYERID=X2AKFU9LA8V88&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=644&L_PAYMENTREQUEST_0_NAME1=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC1=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT1=-10&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=25&PAYMENTREQUEST_0_AMT=28.00&ADDROVERRIDE=1&EMAIL=patricia.bauduin%40bbox.fr&PAYMENTREQUEST_0_SHIPTONAME=patricia+bauduin&PAYMENTREQUEST_0_SHIPTOPHONENUM=0668567932&PAYMENTREQUEST_0_SHIPTOSTREET=10+rue+anne+marie+ponrouch+petit&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ouveillan&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=11590 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=8.06&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=104&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+Carotte&L_PAYMENTREQUEST_0_DESC1=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+de+carotte+pour...&L_PAYMENTREQUEST_0_AMT1=5.65&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=102&L_PAYMENTREQUEST_0_NAME2=Huile+100+%25+naturelle+Amande+douce&L_PAYMENTREQUEST_0_DESC2=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+amande+douce%2C+t...&L_PAYMENTREQUEST_0_AMT2=3.33&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.37&PAYMENTREQUEST_0_AMT=26.42&ADDROVERRIDE=1&EMAIL=decoster.caroline%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Caroline+de+Coster&PAYMENTREQUEST_0_SHIPTOPHONENUM=32472730834&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Grand+Rue+2&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=C%C3%A9roux-Mousty&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1341&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d42305636FN675451A&TIMESTAMP=2016%2d07%2d26T10%3a07%3a29Z&CORRELATIONID=92512411afd5f&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=189&L_PAYMENTREQUEST_0_NAME0=Capsule+Onagre+bourrache+Eclat+de+la+peau+-+Maxi+format&L_PAYMENTREQUEST_0_DESC0=Expert+des+bienfaits+de+la+nature+et+des+plantes%2C+...&L_PAYMENTREQUEST_0_AMT0=8.06&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=104&L_PAYMENTREQUEST_0_NAME1=Huile+100+%25+naturelle+Carotte&L_PAYMENTREQUEST_0_DESC1=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+de+carotte+pour...&L_PAYMENTREQUEST_0_AMT1=5.65&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=102&L_PAYMENTREQUEST_0_NAME2=Huile+100+%25+naturelle+Amande+douce&L_PAYMENTREQUEST_0_DESC2=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+amande+douce%2C+t...&L_PAYMENTREQUEST_0_AMT2=3.33&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.05&PAYMENTREQUEST_0_ITEMAMT=20.37&PAYMENTREQUEST_0_AMT=26.42&ADDROVERRIDE=1&EMAIL=decoster.caroline%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Caroline+de+Coster&PAYMENTREQUEST_0_SHIPTOPHONENUM=32472730834&PAYMENTREQUEST_0_SHIPTOSTREET=Rue+Grand+Rue+2&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=C%C3%A9roux-Mousty&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1341&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=364&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+Sp%C3%A9cial+Fa%C3%A7ades+-+ImperGuard+SF&L_PAYMENTREQUEST_0_DESC0=Produit+imperm%C3%A9abilisant%C2%A0Anti-infiltrations+d%27eau+...&L_PAYMENTREQUEST_0_AMT0=39.75&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=18&L_PAYMENTREQUEST_0_NAME1=Anti+mousses+pour+sols+murs+et+toitures+-+Antimousses+Guard+5L&L_PAYMENTREQUEST_0_DESC1=Anti+mousses+pour+sols%2C+murs+et+toituresStop+%C3%A0+la+...&L_PAYMENTREQUEST_0_AMT1=18.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=77.55&PAYMENTREQUEST_0_AMT=77.55&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5ST956084A329730U&TIMESTAMP=2016%2d07%2d26T11%3a51%3a09Z&CORRELATIONID=5d751f2b5f28f&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=364&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+Sp%C3%A9cial+Fa%C3%A7ades+-+ImperGuard+SF&L_PAYMENTREQUEST_0_DESC0=Produit+imperm%C3%A9abilisant%C2%A0Anti-infiltrations+d%27eau+...&L_PAYMENTREQUEST_0_AMT0=39.75&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=18&L_PAYMENTREQUEST_0_NAME1=Anti+mousses+pour+sols+murs+et+toitures+-+Antimousses+Guard+5L&L_PAYMENTREQUEST_0_DESC1=Anti+mousses+pour+sols%2C+murs+et+toituresStop+%C3%A0+la+...&L_PAYMENTREQUEST_0_AMT1=18.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=77.55&PAYMENTREQUEST_0_AMT=77.55&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5ST956084A329730U -Result : TOKEN=EC%2d5ST956084A329730U&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T11%3a52%3a03Z&CORRELATIONID=e70c861f438e3&ACK=Success&VERSION=106&BUILD=000000&EMAIL=lebel%2ejerome%40orange%2efr&PAYERID=TUT76QR3B66PL&PAYERSTATUS=verified&FIRSTNAME=Jerome&LASTNAME=LEBEL&COUNTRYCODE=FR&SHIPTONAME=humbert%20patricia&SHIPTOSTREET=7%20hameau%20thiron&SHIPTOCITY=breval&SHIPTOZIP=78980&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0682874778&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=77%2e55&ITEMAMT=77%2e55&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20Sp%c3%a9cial%20Fa%c3%a7ades%20%2d%20ImperGuard%20SF&L_NAME1=Anti%20mousses%20pour%20sols%20murs%20et%20toitures%20%2d%20Antimousses%20Guard%205L&L_NUMBER0=364&L_NUMBER1=18&L_QTY0=1&L_QTY1=2&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=39%2e75&L_AMT1=18%2e90&L_DESC0=Produit%20imperm%c3%a9abilisant%c2%a0Anti%2dinfiltrations%20d%27eau%20%2e%2e%2e&L_DESC1=Anti%20mousses%20pour%20sols%2c%20murs%20et%20toituresStop%20%c3%a0%20la%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=77%2e55&PAYMENTREQUEST_0_ITEMAMT=77%2e55&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=humbert%20patricia&PAYMENTREQUEST_0_SHIPTOSTREET=7%20hameau%20thiron&PAYMENTREQUEST_0_SHIPTOCITY=breval&PAYMENTREQUEST_0_SHIPTOZIP=78980&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20Sp%c3%a9cial%20Fa%c3%a7ades%20%2d%20ImperGuard%20SF&L_PAYMENTREQUEST_0_NAME1=Anti%20mousses%20pour%20sols%20murs%20et%20toitures%20%2d%20Antimousses%20Guard%205L&L_PAYMENTREQUEST_0_NUMBER0=364&L_PAYMENTREQUEST_0_NUMBER1=18&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=39%2e75&L_PAYMENTREQUEST_0_AMT1=18%2e90&L_PAYMENTREQUEST_0_DESC0=Produit%20imperm%c3%a9abilisant%c2%a0Anti%2dinfiltrations%20d%27eau%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Anti%20mousses%20pour%20sols%2c%20murs%20et%20toituresStop%20%c3%a0%20la%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5ST956084A329730U - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5ST956084A329730U&PAYERID=TUT76QR3B66PL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=364&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+Sp%C3%A9cial+Fa%C3%A7ades+-+ImperGuard+SF&L_PAYMENTREQUEST_0_DESC0=Produit+imperm%C3%A9abilisant%C2%A0Anti-infiltrations+d%27eau+...&L_PAYMENTREQUEST_0_AMT0=39.75&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=18&L_PAYMENTREQUEST_0_NAME1=Anti+mousses+pour+sols+murs+et+toitures+-+Antimousses+Guard+5L&L_PAYMENTREQUEST_0_DESC1=Anti+mousses+pour+sols%2C+murs+et+toituresStop+%C3%A0+la+...&L_PAYMENTREQUEST_0_AMT1=18.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=77.55&PAYMENTREQUEST_0_AMT=77.55&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980 -Result : TOKEN=EC%2d5ST956084A329730U&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T11%3a52%3a06Z&CORRELATIONID=e670124d8d71d&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=37R58674AK062780R&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T11%3a52%3a05Z&PAYMENTINFO_0_AMT=77%2e55&PAYMENTINFO_0_FEEAMT=2%2e89&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5ST956084A329730U&PAYERID=TUT76QR3B66PL&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=364&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+Sp%C3%A9cial+Fa%C3%A7ades+-+ImperGuard+SF&L_PAYMENTREQUEST_0_DESC0=Produit+imperm%C3%A9abilisant%C2%A0Anti-infiltrations+d%27eau+...&L_PAYMENTREQUEST_0_AMT0=39.75&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=18&L_PAYMENTREQUEST_0_NAME1=Anti+mousses+pour+sols+murs+et+toitures+-+Antimousses+Guard+5L&L_PAYMENTREQUEST_0_DESC1=Anti+mousses+pour+sols%2C+murs+et+toituresStop+%C3%A0+la+...&L_PAYMENTREQUEST_0_AMT1=18.9&L_PAYMENTREQUEST_0_QTY1=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=77.55&PAYMENTREQUEST_0_AMT=77.55&ADDROVERRIDE=1&EMAIL=humbertpatricia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=humbert+patricia&PAYMENTREQUEST_0_SHIPTOPHONENUM=0682874778&PAYMENTREQUEST_0_SHIPTOSTREET=7+hameau+thiron&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Breval&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=78980 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=31&L_PAYMENTREQUEST_0_NAME0=Nettoyant+d%C3%A9graissant+multi+surfaces+-+NetGuard+spray+750ml&L_PAYMENTREQUEST_0_DESC0=NetGuard+est+un+super+nettoyant+d%C3%A9graissant+multi+...&L_PAYMENTREQUEST_0_AMT0=11.93&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=255&L_PAYMENTREQUEST_0_NAME1=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC1=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT1=8.07&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=338&L_PAYMENTREQUEST_0_NAME2=Masque+Argile+Jaune+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC2=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT2=4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=138&L_PAYMENTREQUEST_0_NAME3=Rouge+%C3%A0+l%C3%A8vres%2C+Couleur+et+soin+-+01+Rouge+baiser&L_PAYMENTREQUEST_0_DESC3=%22Pour+des+l%C3%A8vres+%C3%A0+croquer+%21%22+Le+Rouge+%C3%A0+L%C3%A8vres+Co...&L_PAYMENTREQUEST_0_AMT3=10.8&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.8&PAYMENTREQUEST_0_AMT=40.80&ADDROVERRIDE=1&EMAIL=momadurand%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=DURAND+MONIQUE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33169780882&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+barguins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=morigny-champigny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91150&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2XH99215DV6422144&TIMESTAMP=2016%2d07%2d26T13%3a26%3a19Z&CORRELATIONID=1b7776e59bd2b&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=31&L_PAYMENTREQUEST_0_NAME0=Nettoyant+d%C3%A9graissant+multi+surfaces+-+NetGuard+spray+750ml&L_PAYMENTREQUEST_0_DESC0=NetGuard+est+un+super+nettoyant+d%C3%A9graissant+multi+...&L_PAYMENTREQUEST_0_AMT0=11.93&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=255&L_PAYMENTREQUEST_0_NAME1=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC1=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT1=8.07&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=338&L_PAYMENTREQUEST_0_NAME2=Masque+Argile+Jaune+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC2=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT2=4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=138&L_PAYMENTREQUEST_0_NAME3=Rouge+%C3%A0+l%C3%A8vres%2C+Couleur+et+soin+-+01+Rouge+baiser&L_PAYMENTREQUEST_0_DESC3=%22Pour+des+l%C3%A8vres+%C3%A0+croquer+%21%22+Le+Rouge+%C3%A0+L%C3%A8vres+Co...&L_PAYMENTREQUEST_0_AMT3=10.8&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.8&PAYMENTREQUEST_0_AMT=40.80&ADDROVERRIDE=1&EMAIL=momadurand%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=DURAND+MONIQUE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33169780882&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+barguins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=morigny-champigny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91150&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XH99215DV6422144 -Result : TOKEN=EC%2d2XH99215DV6422144&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T13%3a26%3a47Z&CORRELATIONID=efadc81e6e02a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=momadurand%40laposte%2enet&PAYERID=NZG2AJ7PVRY4W&PAYERSTATUS=verified&FIRSTNAME=monique&LASTNAME=durand&COUNTRYCODE=FR&SHIPTONAME=DURAND%20MONIQUE&SHIPTOSTREET=9%20RUE%20DES%20BARGUINS&SHIPTOCITY=MORIGNY%2dCHAMPIGNY&SHIPTOSTATE=MORIGNY%2dCHAMPIGNY&SHIPTOZIP=91150&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33169780882&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=40%2e80&ITEMAMT=34%2e80&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Nettoyant%20d%c3%a9graissant%20multi%20surfaces%20%2d%20NetGuard%20spray%20750ml&L_NAME1=Nettoyant%20gel%20WC%20Romarin%20x3&L_NAME2=Masque%20Argile%20Jaune%20CATTIER%20100ml&L_NAME3=Rouge%20%c3%a0%20l%c3%a8vres%2c%20Couleur%20et%20soin%20%2d%2001%20Rouge%20baiser&L_NUMBER0=31&L_NUMBER1=255&L_NUMBER2=338&L_NUMBER3=138&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_AMT0=11%2e93&L_AMT1=8%2e07&L_AMT2=4%2e00&L_AMT3=10%2e80&L_DESC0=NetGuard%20est%20un%20super%20nettoyant%20d%c3%a9graissant%20multi%20%2e%2e%2e&L_DESC1=Le%20gel%20WC%2c%20nettoyant%20et%20d%c3%a9tartrant%20%c3%a9cologique%20cert%2e%2e%2e&L_DESC2=Apaisant%20et%20remin%c3%a9ralisant%2c%20le%20masque%20Argile%20Jaune%2e%2e%2e&L_DESC3=%22Pour%20des%20l%c3%a8vres%20%c3%a0%20croquer%20%21%22%20Le%20Rouge%20%c3%a0%20L%c3%a8vres%20Co%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=40%2e80&PAYMENTREQUEST_0_ITEMAMT=34%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=DURAND%20MONIQUE&PAYMENTREQUEST_0_SHIPTOSTREET=9%20RUE%20DES%20BARGUINS&PAYMENTREQUEST_0_SHIPTOCITY=MORIGNY%2dCHAMPIGNY&PAYMENTREQUEST_0_SHIPTOSTATE=MORIGNY%2dCHAMPIGNY&PAYMENTREQUEST_0_SHIPTOZIP=91150&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33169780882&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Nettoyant%20d%c3%a9graissant%20multi%20surfaces%20%2d%20NetGuard%20spray%20750ml&L_PAYMENTREQUEST_0_NAME1=Nettoyant%20gel%20WC%20Romarin%20x3&L_PAYMENTREQUEST_0_NAME2=Masque%20Argile%20Jaune%20CATTIER%20100ml&L_PAYMENTREQUEST_0_NAME3=Rouge%20%c3%a0%20l%c3%a8vres%2c%20Couleur%20et%20soin%20%2d%2001%20Rouge%20baiser&L_PAYMENTREQUEST_0_NUMBER0=31&L_PAYMENTREQUEST_0_NUMBER1=255&L_PAYMENTREQUEST_0_NUMBER2=338&L_PAYMENTREQUEST_0_NUMBER3=138&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_AMT0=11%2e93&L_PAYMENTREQUEST_0_AMT1=8%2e07&L_PAYMENTREQUEST_0_AMT2=4%2e00&L_PAYMENTREQUEST_0_AMT3=10%2e80&L_PAYMENTREQUEST_0_DESC0=NetGuard%20est%20un%20super%20nettoyant%20d%c3%a9graissant%20multi%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20gel%20WC%2c%20nettoyant%20et%20d%c3%a9tartrant%20%c3%a9cologique%20cert%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Apaisant%20et%20remin%c3%a9ralisant%2c%20le%20masque%20Argile%20Jaune%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=%22Pour%20des%20l%c3%a8vres%20%c3%a0%20croquer%20%21%22%20Le%20Rouge%20%c3%a0%20L%c3%a8vres%20Co%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XH99215DV6422144 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XH99215DV6422144&PAYERID=NZG2AJ7PVRY4W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=31&L_PAYMENTREQUEST_0_NAME0=Nettoyant+d%C3%A9graissant+multi+surfaces+-+NetGuard+spray+750ml&L_PAYMENTREQUEST_0_DESC0=NetGuard+est+un+super+nettoyant+d%C3%A9graissant+multi+...&L_PAYMENTREQUEST_0_AMT0=11.93&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=255&L_PAYMENTREQUEST_0_NAME1=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC1=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT1=8.07&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=338&L_PAYMENTREQUEST_0_NAME2=Masque+Argile+Jaune+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC2=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT2=4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=138&L_PAYMENTREQUEST_0_NAME3=Rouge+%C3%A0+l%C3%A8vres%2C+Couleur+et+soin+-+01+Rouge+baiser&L_PAYMENTREQUEST_0_DESC3=%22Pour+des+l%C3%A8vres+%C3%A0+croquer+%21%22+Le+Rouge+%C3%A0+L%C3%A8vres+Co...&L_PAYMENTREQUEST_0_AMT3=10.8&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.8&PAYMENTREQUEST_0_AMT=40.80&ADDROVERRIDE=1&EMAIL=momadurand%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=DURAND+MONIQUE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33169780882&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+barguins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=morigny-champigny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91150 -Result : TOKEN=EC%2d2XH99215DV6422144&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T13%3a26%3a52Z&CORRELATIONID=d9daea6599e4e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7SM441811J7649121&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T13%3a26%3a50Z&PAYMENTINFO_0_AMT=40%2e80&PAYMENTINFO_0_FEEAMT=1%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2XH99215DV6422144&PAYERID=NZG2AJ7PVRY4W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=31&L_PAYMENTREQUEST_0_NAME0=Nettoyant+d%C3%A9graissant+multi+surfaces+-+NetGuard+spray+750ml&L_PAYMENTREQUEST_0_DESC0=NetGuard+est+un+super+nettoyant+d%C3%A9graissant+multi+...&L_PAYMENTREQUEST_0_AMT0=11.93&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=255&L_PAYMENTREQUEST_0_NAME1=Nettoyant+gel+WC+Romarin+x3&L_PAYMENTREQUEST_0_DESC1=Le+gel+WC%2C+nettoyant+et+d%C3%A9tartrant+%C3%A9cologique+cert...&L_PAYMENTREQUEST_0_AMT1=8.07&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=338&L_PAYMENTREQUEST_0_NAME2=Masque+Argile+Jaune+CATTIER+100ml&L_PAYMENTREQUEST_0_DESC2=Apaisant+et+remin%C3%A9ralisant%2C+le+masque+Argile+Jaune...&L_PAYMENTREQUEST_0_AMT2=4&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=138&L_PAYMENTREQUEST_0_NAME3=Rouge+%C3%A0+l%C3%A8vres%2C+Couleur+et+soin+-+01+Rouge+baiser&L_PAYMENTREQUEST_0_DESC3=%22Pour+des+l%C3%A8vres+%C3%A0+croquer+%21%22+Le+Rouge+%C3%A0+L%C3%A8vres+Co...&L_PAYMENTREQUEST_0_AMT3=10.8&L_PAYMENTREQUEST_0_QTY3=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=34.8&PAYMENTREQUEST_0_AMT=40.80&ADDROVERRIDE=1&EMAIL=momadurand%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=DURAND+MONIQUE&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33169780882&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+des+barguins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=morigny-champigny&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91150 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=309&L_PAYMENTREQUEST_0_NAME0=Dentifrice+Dentargile+Propolis&L_PAYMENTREQUEST_0_DESC0=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT0=5.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=310&L_PAYMENTREQUEST_0_NAME1=Dentifrice+Dentargile+Citron&L_PAYMENTREQUEST_0_DESC1=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT1=5.1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=306&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC2=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT2=7.5&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=croixcroisette%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=MARIE-LAURE+GALICHET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0546043540&PAYMENTREQUEST_0_SHIPTOSTREET=LE+GRAND+MAINE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MONTGUYON0546043540&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=17270&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4U2148607K166454D&TIMESTAMP=2016%2d07%2d26T19%3a13%3a48Z&CORRELATIONID=3d9643d71ca27&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=309&L_PAYMENTREQUEST_0_NAME0=Dentifrice+Dentargile+Propolis&L_PAYMENTREQUEST_0_DESC0=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT0=5.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=310&L_PAYMENTREQUEST_0_NAME1=Dentifrice+Dentargile+Citron&L_PAYMENTREQUEST_0_DESC1=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT1=5.1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=306&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC2=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT2=7.5&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=croixcroisette%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=MARIE-LAURE+GALICHET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0546043540&PAYMENTREQUEST_0_SHIPTOSTREET=LE+GRAND+MAINE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MONTGUYON0546043540&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=17270&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4U2148607K166454D -Result : TOKEN=EC%2d4U2148607K166454D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T19%3a15%3a25Z&CORRELATIONID=c572922e319c2&ACK=Success&VERSION=106&BUILD=000000&EMAIL=galichet%2ejean%2dvincent%40neuf%2efr&PAYERID=K6ZABN3SNRUL6&PAYERSTATUS=verified&FIRSTNAME=JEAN&LASTNAME=VINCENT%20GALICHET&COUNTRYCODE=FR&SHIPTONAME=%20MARIE%2dLAURE%20GALICHET&SHIPTOSTREET=LE%20GRAND%20MAINE&SHIPTOCITY=MONTGUYON&SHIPTOSTATE=FR&SHIPTOZIP=17270&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0546043540&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=20%2e70&ITEMAMT=17%2e70&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Dentifrice%20Dentargile%20Propolis&L_NAME1=Dentifrice%20Dentargile%20Citron&L_NAME2=Cr%c3%a8me%20mains%20anti%2dt%c3%a2ches%20%2d%20anti%20%c3%a2ge%20CATTIER%2075ml&L_NUMBER0=309&L_NUMBER1=310&L_NUMBER2=306&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e10&L_AMT1=5%2e10&L_AMT2=7%2e50&L_DESC0=Dentifrice%20%c3%a0%20l%27argile%20Certifi%c3%a9%20BioProtection%20quoti%2e%2e%2e&L_DESC1=Dentifrice%20%c3%a0%20l%27argile%20Certifi%c3%a9%20BioProtection%20quoti%2e%2e%2e&L_DESC2=Cr%c3%a8me%20mains%20att%c3%a9nuant%20les%20t%c3%a2ches%20et%20les%20signes%20de%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e70&PAYMENTREQUEST_0_ITEMAMT=17%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20MARIE%2dLAURE%20GALICHET&PAYMENTREQUEST_0_SHIPTOSTREET=LE%20GRAND%20MAINE&PAYMENTREQUEST_0_SHIPTOCITY=MONTGUYON&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=17270&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0546043540&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Dentifrice%20Dentargile%20Propolis&L_PAYMENTREQUEST_0_NAME1=Dentifrice%20Dentargile%20Citron&L_PAYMENTREQUEST_0_NAME2=Cr%c3%a8me%20mains%20anti%2dt%c3%a2ches%20%2d%20anti%20%c3%a2ge%20CATTIER%2075ml&L_PAYMENTREQUEST_0_NUMBER0=309&L_PAYMENTREQUEST_0_NUMBER1=310&L_PAYMENTREQUEST_0_NUMBER2=306&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e10&L_PAYMENTREQUEST_0_AMT1=5%2e10&L_PAYMENTREQUEST_0_AMT2=7%2e50&L_PAYMENTREQUEST_0_DESC0=Dentifrice%20%c3%a0%20l%27argile%20Certifi%c3%a9%20BioProtection%20quoti%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Dentifrice%20%c3%a0%20l%27argile%20Certifi%c3%a9%20BioProtection%20quoti%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Cr%c3%a8me%20mains%20att%c3%a9nuant%20les%20t%c3%a2ches%20et%20les%20signes%20de%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4U2148607K166454D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4U2148607K166454D&PAYERID=K6ZABN3SNRUL6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=309&L_PAYMENTREQUEST_0_NAME0=Dentifrice+Dentargile+Propolis&L_PAYMENTREQUEST_0_DESC0=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT0=5.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=310&L_PAYMENTREQUEST_0_NAME1=Dentifrice+Dentargile+Citron&L_PAYMENTREQUEST_0_DESC1=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT1=5.1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=306&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC2=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT2=7.5&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=croixcroisette%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=MARIE-LAURE+GALICHET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0546043540&PAYMENTREQUEST_0_SHIPTOSTREET=LE+GRAND+MAINE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MONTGUYON0546043540&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=17270 -Result : TOKEN=EC%2d4U2148607K166454D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T19%3a15%3a29Z&CORRELATIONID=8055a5125aec3&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1RE18113HP531984K&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d26T19%3a15%3a27Z&PAYMENTINFO_0_AMT=20%2e70&PAYMENTINFO_0_FEEAMT=0%2e95&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4U2148607K166454D&PAYERID=K6ZABN3SNRUL6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=309&L_PAYMENTREQUEST_0_NAME0=Dentifrice+Dentargile+Propolis&L_PAYMENTREQUEST_0_DESC0=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT0=5.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=310&L_PAYMENTREQUEST_0_NAME1=Dentifrice+Dentargile+Citron&L_PAYMENTREQUEST_0_DESC1=Dentifrice+%C3%A0+l%27argile+Certifi%C3%A9+BioProtection+quoti...&L_PAYMENTREQUEST_0_AMT1=5.1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=306&L_PAYMENTREQUEST_0_NAME2=Cr%C3%A8me+mains+anti-t%C3%A2ches+-+anti+%C3%A2ge+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC2=Cr%C3%A8me+mains+att%C3%A9nuant+les+t%C3%A2ches+et+les+signes+de+...&L_PAYMENTREQUEST_0_AMT2=7.5&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=croixcroisette%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=MARIE-LAURE+GALICHET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0546043540&PAYMENTREQUEST_0_SHIPTOSTREET=LE+GRAND+MAINE&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=MONTGUYON0546043540&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=17270 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=cindy.ho%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=cindy+ho&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652427072&PAYMENTREQUEST_0_SHIPTOSTREET=32+rue+de+Boutelaygue+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=cazeres+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=31220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d0A5437360J595822W&TIMESTAMP=2016%2d07%2d26T23%3a33%3a15Z&CORRELATIONID=8f098c147db9b&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=cindy.ho%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=cindy+ho&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652427072&PAYMENTREQUEST_0_SHIPTOSTREET=32+rue+de+Boutelaygue+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=cazeres+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=31220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0A5437360J595822W -Result : TOKEN=EC%2d0A5437360J595822W&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d26T23%3a34%3a39Z&CORRELATIONID=80fbf7f2ee3c6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=cindy%2eho%40laposte%2enet&PAYERID=A8YYDDHEVTC62&PAYERSTATUS=unverified&FIRSTNAME=cindy&LASTNAME=ho&COUNTRYCODE=FR&SHIPTONAME=cindy%20ho&SHIPTOSTREET=32%20rue%20de%20Boutelaygue&SHIPTOCITY=cazeres&SHIPTOZIP=31220&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0652427072&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=33%2e40&ITEMAMT=30%2e40&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=33%2e40&PAYMENTREQUEST_0_ITEMAMT=30%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=cindy%20ho&PAYMENTREQUEST_0_SHIPTOSTREET=32%20rue%20de%20Boutelaygue&PAYMENTREQUEST_0_SHIPTOCITY=cazeres&PAYMENTREQUEST_0_SHIPTOZIP=31220&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652427072&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0A5437360J595822W - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0A5437360J595822W&PAYERID=A8YYDDHEVTC62&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=cindy.ho%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=cindy+ho&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652427072&PAYMENTREQUEST_0_SHIPTOSTREET=32+rue+de+Boutelaygue+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=cazeres+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=31220 -Result : TOKEN=EC%2d0A5437360J595822W&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d26T23%3a34%3a42Z&CORRELATIONID=61d29a9218f18&ACK=Failure&VERSION=106&BUILD=000000&L_ERRORCODE0=10486&L_SHORTMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e&L_LONGMESSAGE0=This%20transaction%20couldn%27t%20be%20completed%2e%20Please%20redirect%20your%20customer%20to%20PayPal%2e&L_SEVERITYCODE0=Error -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-0A5437360J595822W&PAYERID=A8YYDDHEVTC62&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=30.4&PAYMENTREQUEST_0_AMT=33.40&ADDROVERRIDE=1&EMAIL=cindy.ho%40laposte.net&PAYMENTREQUEST_0_SHIPTONAME=cindy+ho&PAYMENTREQUEST_0_SHIPTOPHONENUM=0652427072&PAYMENTREQUEST_0_SHIPTOSTREET=32+rue+de+Boutelaygue+&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=cazeres+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=31220 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.38&PAYMENTREQUEST_0_AMT=54.38&ADDROVERRIDE=1&EMAIL=chantalterver1057%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+TERVER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608613077&PAYMENTREQUEST_0_SHIPTOSTREET=17+RUE+DU+BERGER&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=THIONVILLE+GARCHE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8CX02987WA902401R&TIMESTAMP=2016%2d07%2d27T13%3a04%3a59Z&CORRELATIONID=8d874f797618d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.38&PAYMENTREQUEST_0_AMT=54.38&ADDROVERRIDE=1&EMAIL=chantalterver1057%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+TERVER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608613077&PAYMENTREQUEST_0_SHIPTOSTREET=17+RUE+DU+BERGER&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=THIONVILLE+GARCHE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8CX02987WA902401R -Result : TOKEN=EC%2d8CX02987WA902401R&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d27T13%3a05%3a28Z&CORRELATIONID=dca8207443ee6&ACK=Success&VERSION=106&BUILD=000000&EMAIL=chantalterver1057%40orange%2efr&PAYERID=XY7UVD22YRFJA&PAYERSTATUS=verified&FIRSTNAME=Chantal&LASTNAME=TERVER&COUNTRYCODE=FR&SHIPTONAME=Chantal%20TERVER&SHIPTOSTREET=17%20RUE%20DU%20BERGER&SHIPTOCITY=THIONVILLE%20GARCHE&SHIPTOZIP=57100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0608613077&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=54%2e38&ITEMAMT=54%2e38&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_NAME1=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_NAME2=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=300&L_NUMBER1=6&L_NUMBER2=160&L_QTY0=1&L_QTY1=1&L_QTY2=2&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=23%2e40&L_AMT1=19%2e08&L_AMT2=5%2e95&L_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&L_DESC1=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_DESC2=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=54%2e38&PAYMENTREQUEST_0_ITEMAMT=54%2e38&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Chantal%20TERVER&PAYMENTREQUEST_0_SHIPTOSTREET=17%20RUE%20DU%20BERGER&PAYMENTREQUEST_0_SHIPTOCITY=THIONVILLE%20GARCHE&PAYMENTREQUEST_0_SHIPTOZIP=57100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608613077&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gomme%20magique%20%2d%20Super%27Gom%20Guard&L_PAYMENTREQUEST_0_NAME1=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_PAYMENTREQUEST_0_NAME2=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=23%2e40&L_PAYMENTREQUEST_0_AMT1=19%2e08&L_PAYMENTREQUEST_0_AMT2=5%2e95&L_PAYMENTREQUEST_0_DESC0=10%20%c3%a9ponges%20magiques%20professionnelles%20pour%20tout%20net%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8CX02987WA902401R - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8CX02987WA902401R&PAYERID=XY7UVD22YRFJA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.38&PAYMENTREQUEST_0_AMT=54.38&ADDROVERRIDE=1&EMAIL=chantalterver1057%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+TERVER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608613077&PAYMENTREQUEST_0_SHIPTOSTREET=17+RUE+DU+BERGER&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=THIONVILLE+GARCHE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57100 -Result : TOKEN=EC%2d8CX02987WA902401R&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d27T13%3a05%3a32Z&CORRELATIONID=163f044b6a28f&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=65S26233X91561203&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d27T13%3a05%3a30Z&PAYMENTINFO_0_AMT=54%2e38&PAYMENTINFO_0_FEEAMT=2%2e10&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8CX02987WA902401R&PAYERID=XY7UVD22YRFJA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=300&L_PAYMENTREQUEST_0_NAME0=Gomme+magique+-+Super%27Gom+Guard&L_PAYMENTREQUEST_0_DESC0=10+%C3%A9ponges+magiques+professionnelles+pour+tout+net...&L_PAYMENTREQUEST_0_AMT0=23.4&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=160&L_PAYMENTREQUEST_0_NAME2=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT2=5.95&L_PAYMENTREQUEST_0_QTY2=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.38&PAYMENTREQUEST_0_AMT=54.38&ADDROVERRIDE=1&EMAIL=chantalterver1057%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Chantal+TERVER&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608613077&PAYMENTREQUEST_0_SHIPTOSTREET=17+RUE+DU+BERGER&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=THIONVILLE+GARCHE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.18&PAYMENTREQUEST_0_AMT=30.18&ADDROVERRIDE=1&EMAIL=malikavinot%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Malika+VINOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659442728&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+morsang&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=savigny+sur+orge&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3W6441268N5939404&TIMESTAMP=2016%2d07%2d27T13%3a52%3a49Z&CORRELATIONID=43533c7e63919&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.18&PAYMENTREQUEST_0_AMT=30.18&ADDROVERRIDE=1&EMAIL=malikavinot%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Malika+VINOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659442728&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+morsang&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=savigny+sur+orge&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91600&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3W6441268N5939404 -Result : TOKEN=EC%2d3W6441268N5939404&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d27T13%3a54%3a14Z&CORRELATIONID=be4338e93a60&ACK=Success&VERSION=106&BUILD=000000&EMAIL=mvinot%40ntymail%2ecom&PAYERID=LUY7LB5FRHEDC&PAYERSTATUS=unverified&FIRSTNAME=M&LASTNAME=VINOT&COUNTRYCODE=FR&SHIPTONAME=Malika%20VINOT&SHIPTOSTREET=12%20rue%20de%20morsang&SHIPTOCITY=savigny%20sur%20orge&SHIPTOZIP=91600&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0659442728&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=30%2e18&ITEMAMT=24%2e18&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NAME1=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_NAME2=R%c3%a9duction%20newsletter&L_NUMBER0=207&L_NUMBER1=6&L_NUMBER2=644&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=15%2e10&L_AMT1=19%2e08&L_AMT2=%2d10%2e00&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_DESC1=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_DESC2=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=30%2e18&PAYMENTREQUEST_0_ITEMAMT=24%2e18&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Malika%20VINOT&PAYMENTREQUEST_0_SHIPTOSTREET=12%20rue%20de%20morsang&PAYMENTREQUEST_0_SHIPTOCITY=savigny%20sur%20orge&PAYMENTREQUEST_0_SHIPTOZIP=91600&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659442728&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NAME1=D%c3%a9tachant%20taches%20de%20graisse%20sur%20textile%20%2d%20Texclean%20TG%20750ml&L_PAYMENTREQUEST_0_NAME2=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_AMT1=19%2e08&L_PAYMENTREQUEST_0_AMT2=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Comment%20enlever%20une%20tache%20de%20gras%20%3fLe%20d%c3%a9tachant%20ta%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3W6441268N5939404 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3W6441268N5939404&PAYERID=LUY7LB5FRHEDC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.18&PAYMENTREQUEST_0_AMT=30.18&ADDROVERRIDE=1&EMAIL=malikavinot%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Malika+VINOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659442728&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+morsang&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=savigny+sur+orge&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91600 -Result : TOKEN=EC%2d3W6441268N5939404&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d27T13%3a54%3a20Z&CORRELATIONID=226aede620e3e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=167352850S231562W&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d27T13%3a54%3a18Z&PAYMENTINFO_0_AMT=30%2e18&PAYMENTINFO_0_FEEAMT=1%2e28&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3W6441268N5939404&PAYERID=LUY7LB5FRHEDC&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=6&L_PAYMENTREQUEST_0_NAME1=D%C3%A9tachant+taches+de+graisse+sur+textile+-+Texclean+TG+750ml&L_PAYMENTREQUEST_0_DESC1=Comment+enlever+une+tache+de+gras+%3FLe+d%C3%A9tachant+ta...&L_PAYMENTREQUEST_0_AMT1=19.08&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=644&L_PAYMENTREQUEST_0_NAME2=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC2=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT2=-10&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=24.18&PAYMENTREQUEST_0_AMT=30.18&ADDROVERRIDE=1&EMAIL=malikavinot%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=Malika+VINOT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659442728&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+morsang&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=savigny+sur+orge&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=91600 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=ddld91%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florian+Desmaris&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626790475&PAYMENTREQUEST_0_SHIPTOSTREET=2147+grand%27route&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Manziat&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=01570&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d73W30720U81017311&TIMESTAMP=2016%2d07%2d27T21%3a35%3a58Z&CORRELATIONID=1406387e505a4&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=ddld91%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florian+Desmaris&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626790475&PAYMENTREQUEST_0_SHIPTOSTREET=2147+grand%27route&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Manziat&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=01570&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-73W30720U81017311 -Result : TOKEN=EC%2d73W30720U81017311&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d27T21%3a36%3a15Z&CORRELATIONID=32a4f150bbd0e&ACK=Success&VERSION=106&BUILD=000000&EMAIL=desmaris%2eflorian%40laposte%2enet&PAYERID=HUYCP86BR3S64&PAYERSTATUS=verified&FIRSTNAME=FLORIAN&LASTNAME=DESMARIS&COUNTRYCODE=FR&SHIPTONAME=FLORIAN%20DESMARIS&SHIPTOSTREET=2147%20GRAND%27ROUTE&SHIPTOCITY=MANZIAT&SHIPTOSTATE=Rh%c3%b4ne%2dAlpes&SHIPTOZIP=01570&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0626790475&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=14%2e90&ITEMAMT=11%2e90&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=160&L_NUMBER1=155&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=14%2e90&PAYMENTREQUEST_0_ITEMAMT=11%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=FLORIAN%20DESMARIS&PAYMENTREQUEST_0_SHIPTOSTREET=2147%20GRAND%27ROUTE&PAYMENTREQUEST_0_SHIPTOCITY=MANZIAT&PAYMENTREQUEST_0_SHIPTOSTATE=Rh%c3%b4ne%2dAlpes&PAYMENTREQUEST_0_SHIPTOZIP=01570&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626790475&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-73W30720U81017311 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-73W30720U81017311&PAYERID=HUYCP86BR3S64&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=ddld91%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florian+Desmaris&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626790475&PAYMENTREQUEST_0_SHIPTOSTREET=2147+grand%27route&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Manziat&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=01570 -Result : TOKEN=EC%2d73W30720U81017311&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d27T21%3a36%3a18Z&CORRELATIONID=da5378fff0666&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2YS321280E2156649&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d27T21%3a36%3a17Z&PAYMENTINFO_0_AMT=14%2e90&PAYMENTINFO_0_FEEAMT=0%2e76&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-73W30720U81017311&PAYERID=HUYCP86BR3S64&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=11.9&PAYMENTREQUEST_0_AMT=14.90&ADDROVERRIDE=1&EMAIL=ddld91%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Florian+Desmaris&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626790475&PAYMENTREQUEST_0_SHIPTOSTREET=2147+grand%27route&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Manziat&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=01570 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=lulumarchesseau%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Lucienne++Marchesseau+&PAYMENTREQUEST_0_SHIPTOPHONENUM=33609524860&PAYMENTREQUEST_0_SHIPTOSTREET=816+chemin+des+cabrieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mougins&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d26G20317SH6979905&TIMESTAMP=2016%2d07%2d28T03%3a49%3a12Z&CORRELATIONID=a4ed8739cd71f&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=lulumarchesseau%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Lucienne++Marchesseau+&PAYMENTREQUEST_0_SHIPTOPHONENUM=33609524860&PAYMENTREQUEST_0_SHIPTOSTREET=816+chemin+des+cabrieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mougins&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-26G20317SH6979905 -Result : TOKEN=EC%2d26G20317SH6979905&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d28T03%3a49%3a57Z&CORRELATIONID=253270dbbb21a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=lulumarchesseau%40gmail%2ecom&PAYERID=493MY6953NQPS&PAYERSTATUS=verified&FIRSTNAME=claude&LASTNAME=marchesseau&COUNTRYCODE=FR&SHIPTONAME=LUCIENNE%20MARCHESSEAU&SHIPTOSTREET=816%20Chemin%20Des%20Cabrieres&SHIPTOCITY=Mougins&SHIPTOZIP=06250&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=33609524860&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=41%2e90&ITEMAMT=35%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_NUMBER0=222&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=17%2e95&L_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=41%2e90&PAYMENTREQUEST_0_ITEMAMT=35%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=LUCIENNE%20MARCHESSEAU&PAYMENTREQUEST_0_SHIPTOSTREET=816%20Chemin%20Des%20Cabrieres&PAYMENTREQUEST_0_SHIPTOCITY=Mougins&PAYMENTREQUEST_0_SHIPTOZIP=06250&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=33609524860&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0ext%c3%a9rieur%c2%a0%c2%bb&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e95&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20repousser%20les%20chiens%20des%20endroits%20o%c3%b9%20ils%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-26G20317SH6979905 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-26G20317SH6979905&PAYERID=493MY6953NQPS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=lulumarchesseau%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Lucienne++Marchesseau+&PAYMENTREQUEST_0_SHIPTOPHONENUM=33609524860&PAYMENTREQUEST_0_SHIPTOSTREET=816+chemin+des+cabrieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mougins&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06250 -Result : TOKEN=EC%2d26G20317SH6979905&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d28T03%3a50%3a01Z&CORRELATIONID=18bbd9b1dd877&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=6V5131629E593933D&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d28T03%3a50%3a00Z&PAYMENTINFO_0_AMT=41%2e90&PAYMENTINFO_0_FEEAMT=1%2e67&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-26G20317SH6979905&PAYERID=493MY6953NQPS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=222&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0ext%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+repousser+les+chiens+des+endroits+o%C3%B9+ils...&L_PAYMENTREQUEST_0_AMT0=17.95&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=35.9&PAYMENTREQUEST_0_AMT=41.90&ADDROVERRIDE=1&EMAIL=lulumarchesseau%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Lucienne++Marchesseau+&PAYMENTREQUEST_0_SHIPTOPHONENUM=33609524860&PAYMENTREQUEST_0_SHIPTOSTREET=816+chemin+des+cabrieres&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mougins&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06250 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=169&L_PAYMENTREQUEST_0_NAME2=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT2=5.5&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=354&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+alimentaire+-+Sali%C3%A8re&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%2C+l%27ingr%C3%A9dient+magique+de+t...&L_PAYMENTREQUEST_0_AMT3=2.75&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=146&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC4=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT4=5&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=172&L_PAYMENTREQUEST_0_NAME5=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC5=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT5=3.73&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=199&L_PAYMENTREQUEST_0_NAME6=Soupe+Coupe-faim+au+konjac&L_PAYMENTREQUEST_0_DESC6=Fringales+et+grignotages+vous+emp%C3%AAchent+de+tenir+v...&L_PAYMENTREQUEST_0_AMT6=9.89&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=107&L_PAYMENTREQUEST_0_NAME7=Huiles+100%25+naturelles+Coco+et+Mono%C3%AF&L_PAYMENTREQUEST_0_DESC7=Floressance%C2%AE%C2%A0+a+s%C3%A9lectionn%C3%A9+les+huiles+de+Coco+et+...&L_PAYMENTREQUEST_0_AMT7=9.1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=721&L_PAYMENTREQUEST_0_NAME8=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC8=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT8=-0&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=730&L_PAYMENTREQUEST_0_NAME9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT9=-0&L_PAYMENTREQUEST_0_QTY9=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.82&PAYMENTREQUEST_0_AMT=55.82&ADDROVERRIDE=1&EMAIL=koryn92%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=CORINNE+CAMUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33683437712&PAYMENTREQUEST_0_SHIPTOSTREET=32+AVENUE+DE+L%27ARCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=APP+36&PAYMENTREQUEST_0_SHIPTOCITY=COURBEVOIE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d61P033858F375633F&TIMESTAMP=2016%2d07%2d28T06%3a41%3a00Z&CORRELATIONID=d5e5f1c878448&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=169&L_PAYMENTREQUEST_0_NAME2=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT2=5.5&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=354&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+alimentaire+-+Sali%C3%A8re&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%2C+l%27ingr%C3%A9dient+magique+de+t...&L_PAYMENTREQUEST_0_AMT3=2.75&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=146&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC4=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT4=5&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=172&L_PAYMENTREQUEST_0_NAME5=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC5=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT5=3.73&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=199&L_PAYMENTREQUEST_0_NAME6=Soupe+Coupe-faim+au+konjac&L_PAYMENTREQUEST_0_DESC6=Fringales+et+grignotages+vous+emp%C3%AAchent+de+tenir+v...&L_PAYMENTREQUEST_0_AMT6=9.89&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=107&L_PAYMENTREQUEST_0_NAME7=Huiles+100%25+naturelles+Coco+et+Mono%C3%AF&L_PAYMENTREQUEST_0_DESC7=Floressance%C2%AE%C2%A0+a+s%C3%A9lectionn%C3%A9+les+huiles+de+Coco+et+...&L_PAYMENTREQUEST_0_AMT7=9.1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=721&L_PAYMENTREQUEST_0_NAME8=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC8=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT8=-0&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=730&L_PAYMENTREQUEST_0_NAME9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT9=-0&L_PAYMENTREQUEST_0_QTY9=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.82&PAYMENTREQUEST_0_AMT=55.82&ADDROVERRIDE=1&EMAIL=koryn92%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=CORINNE+CAMUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33683437712&PAYMENTREQUEST_0_SHIPTOSTREET=32+AVENUE+DE+L%27ARCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=APP+36&PAYMENTREQUEST_0_SHIPTOCITY=COURBEVOIE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-61P033858F375633F -Result : TOKEN=EC%2d61P033858F375633F&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d28T06%3a43%3a33Z&CORRELATIONID=c63f7f87c508&ACK=Success&VERSION=106&BUILD=000000&EMAIL=corinne%2ecamus73%40gmail%2ecom&PAYERID=GR3X3YFUEAY6E&PAYERSTATUS=verified&FIRSTNAME=koryn&LASTNAME=camus&COUNTRYCODE=FR&SHIPTONAME=%20corinne%20CAMUS&SHIPTOSTREET=32%20AVENUE%20DE%20L%27ARCHE%20APP%2036&SHIPTOCITY=COURBEVOIE&SHIPTOSTATE=FR&SHIPTOZIP=92400&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33683437712&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=55%2e82&ITEMAMT=55%2e82&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_NAME2=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_NAME3=Bicarbonate%20de%20soude%20alimentaire%20%2d%20Sali%c3%a8re&L_NAME4=Huile%20essentielle%20Lavandin%20bio&L_NAME5=Th%c3%a9%20Br%c3%bble%20graisse%2c%20Th%c3%a9%20vert%20%2f%20Mat%c3%a9%20%2f%20Guarana%20%2f%20Caf%c3%a9%20vert%2f%20Kola%20ar%c3%b4me%20menthe&L_NAME6=Soupe%20Coupe%2dfaim%20au%20konjac&L_NAME7=Huiles%20100%25%20naturelles%20Coco%20et%20Mono%c3%af&L_NAME8=Pack%20Peindre%20sur%20du%20papier%20peint&L_NAME9=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_NUMBER0=163&L_NUMBER1=166&L_NUMBER2=169&L_NUMBER3=354&L_NUMBER4=146&L_NUMBER5=172&L_NUMBER6=199&L_NUMBER7=107&L_NUMBER8=721&L_NUMBER9=730&L_QTY0=2&L_QTY1=2&L_QTY2=2&L_QTY3=2&L_QTY4=1&L_QTY5=1&L_QTY6=1&L_QTY7=1&L_QTY8=1&L_QTY9=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_TAXAMT6=0%2e00&L_TAXAMT7=0%2e00&L_TAXAMT8=0%2e00&L_TAXAMT9=0%2e00&L_AMT0=3%2e50&L_AMT1=2%2e30&L_AMT2=5%2e50&L_AMT3=2%2e75&L_AMT4=5%2e00&L_AMT5=3%2e73&L_AMT6=9%2e89&L_AMT7=9%2e10&L_AMT8=0%2e00&L_AMT9=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_DESC2=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_DESC3=Le%20bicarbonate%20de%20soude%2c%20l%27ingr%c3%a9dient%20magique%20de%20t%2e%2e%2e&L_DESC4=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&L_DESC5=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20br%c3%bbleur%20au%20c%c5%93ur%2e%2e%2e&L_DESC6=Fringales%20et%20grignotages%20vous%20emp%c3%aachent%20de%20tenir%20v%2e%2e%2e&L_DESC7=Floressance%c2%ae%c2%a0%20a%20s%c3%a9lectionn%c3%a9%20les%20huiles%20de%20Coco%20et%20%2e%2e%2e&L_DESC8=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_DESC9=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=55%2e82&PAYMENTREQUEST_0_ITEMAMT=55%2e82&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20corinne%20CAMUS&PAYMENTREQUEST_0_SHIPTOSTREET=32%20AVENUE%20DE%20L%27ARCHE%20APP%2036&PAYMENTREQUEST_0_SHIPTOCITY=COURBEVOIE&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92400&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33683437712&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Vinaigre%20blanc%20forte%20concentration%2012%c2%b0%2d%20Nettoyant%20m%c3%a9nager%20%c3%a9cologique%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Acide%20citrique%20naturel%20concentr%c3%a9%20%2d%20d%c3%a9tartrant%20multi%2dusages%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Bicarbonate%20de%20soude%20alimentaire%20%2d%20Sali%c3%a8re&L_PAYMENTREQUEST_0_NAME4=Huile%20essentielle%20Lavandin%20bio&L_PAYMENTREQUEST_0_NAME5=Th%c3%a9%20Br%c3%bble%20graisse%2c%20Th%c3%a9%20vert%20%2f%20Mat%c3%a9%20%2f%20Guarana%20%2f%20Caf%c3%a9%20vert%2f%20Kola%20ar%c3%b4me%20menthe&L_PAYMENTREQUEST_0_NAME6=Soupe%20Coupe%2dfaim%20au%20konjac&L_PAYMENTREQUEST_0_NAME7=Huiles%20100%25%20naturelles%20Coco%20et%20Mono%c3%af&L_PAYMENTREQUEST_0_NAME8=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NAME9=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NUMBER2=169&L_PAYMENTREQUEST_0_NUMBER3=354&L_PAYMENTREQUEST_0_NUMBER4=146&L_PAYMENTREQUEST_0_NUMBER5=172&L_PAYMENTREQUEST_0_NUMBER6=199&L_PAYMENTREQUEST_0_NUMBER7=107&L_PAYMENTREQUEST_0_NUMBER8=721&L_PAYMENTREQUEST_0_NUMBER9=730&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_TAXAMT6=0%2e00&L_PAYMENTREQUEST_0_TAXAMT7=0%2e00&L_PAYMENTREQUEST_0_TAXAMT8=0%2e00&L_PAYMENTREQUEST_0_TAXAMT9=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e50&L_PAYMENTREQUEST_0_AMT1=2%2e30&L_PAYMENTREQUEST_0_AMT2=5%2e50&L_PAYMENTREQUEST_0_AMT3=2%2e75&L_PAYMENTREQUEST_0_AMT4=5%2e00&L_PAYMENTREQUEST_0_AMT5=3%2e73&L_PAYMENTREQUEST_0_AMT6=9%2e89&L_PAYMENTREQUEST_0_AMT7=9%2e10&L_PAYMENTREQUEST_0_AMT8=0%2e00&L_PAYMENTREQUEST_0_AMT9=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20vinaigre%20blanc%20m%c3%a9nager%20forte%20concentration%2012%c2%b0%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Super%c2%a0d%c3%a9tartrant%20multi%2dusages%20pour%20maisonMulti%2dusa%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Le%20bicarbonate%20de%20soude%2c%20l%27ingr%c3%a9dient%20magique%20de%20t%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Le%20lavandin%20est%20traditionnellement%20reconnu%20pour%20se%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20br%c3%bbleur%20au%20c%c5%93ur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC6=Fringales%20et%20grignotages%20vous%20emp%c3%aachent%20de%20tenir%20v%2e%2e%2e&L_PAYMENTREQUEST_0_DESC7=Floressance%c2%ae%c2%a0%20a%20s%c3%a9lectionn%c3%a9%20les%20huiles%20de%20Coco%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC8=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&L_PAYMENTREQUEST_0_DESC9=pack%20Nettoyer%20un%20moule%20%c3%a0%20gateau%20en%20m%c3%a9tal%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-61P033858F375633F - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-61P033858F375633F&PAYERID=GR3X3YFUEAY6E&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=169&L_PAYMENTREQUEST_0_NAME2=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT2=5.5&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=354&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+alimentaire+-+Sali%C3%A8re&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%2C+l%27ingr%C3%A9dient+magique+de+t...&L_PAYMENTREQUEST_0_AMT3=2.75&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=146&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC4=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT4=5&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=172&L_PAYMENTREQUEST_0_NAME5=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC5=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT5=3.73&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=199&L_PAYMENTREQUEST_0_NAME6=Soupe+Coupe-faim+au+konjac&L_PAYMENTREQUEST_0_DESC6=Fringales+et+grignotages+vous+emp%C3%AAchent+de+tenir+v...&L_PAYMENTREQUEST_0_AMT6=9.89&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=107&L_PAYMENTREQUEST_0_NAME7=Huiles+100%25+naturelles+Coco+et+Mono%C3%AF&L_PAYMENTREQUEST_0_DESC7=Floressance%C2%AE%C2%A0+a+s%C3%A9lectionn%C3%A9+les+huiles+de+Coco+et+...&L_PAYMENTREQUEST_0_AMT7=9.1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=721&L_PAYMENTREQUEST_0_NAME8=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC8=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT8=-0&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=730&L_PAYMENTREQUEST_0_NAME9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT9=-0&L_PAYMENTREQUEST_0_QTY9=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.82&PAYMENTREQUEST_0_AMT=55.82&ADDROVERRIDE=1&EMAIL=koryn92%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=CORINNE+CAMUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33683437712&PAYMENTREQUEST_0_SHIPTOSTREET=32+AVENUE+DE+L%27ARCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=APP+36&PAYMENTREQUEST_0_SHIPTOCITY=COURBEVOIE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92400 -Result : TOKEN=EC%2d61P033858F375633F&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d28T06%3a43%3a37Z&CORRELATIONID=3ab58d2995086&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4HG9096535870771J&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d28T06%3a43%3a36Z&PAYMENTINFO_0_AMT=55%2e82&PAYMENTINFO_0_FEEAMT=2%2e15&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-61P033858F375633F&PAYERID=GR3X3YFUEAY6E&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=166&L_PAYMENTREQUEST_0_NAME1=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT1=2.3&L_PAYMENTREQUEST_0_QTY1=2&L_PAYMENTREQUEST_0_NUMBER2=169&L_PAYMENTREQUEST_0_NAME2=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT2=5.5&L_PAYMENTREQUEST_0_QTY2=2&L_PAYMENTREQUEST_0_NUMBER3=354&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+alimentaire+-+Sali%C3%A8re&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%2C+l%27ingr%C3%A9dient+magique+de+t...&L_PAYMENTREQUEST_0_AMT3=2.75&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=146&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Lavandin+bio&L_PAYMENTREQUEST_0_DESC4=Le+lavandin+est+traditionnellement+reconnu+pour+se...&L_PAYMENTREQUEST_0_AMT4=5&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=172&L_PAYMENTREQUEST_0_NAME5=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC5=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT5=3.73&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=199&L_PAYMENTREQUEST_0_NAME6=Soupe+Coupe-faim+au+konjac&L_PAYMENTREQUEST_0_DESC6=Fringales+et+grignotages+vous+emp%C3%AAchent+de+tenir+v...&L_PAYMENTREQUEST_0_AMT6=9.89&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=107&L_PAYMENTREQUEST_0_NAME7=Huiles+100%25+naturelles+Coco+et+Mono%C3%AF&L_PAYMENTREQUEST_0_DESC7=Floressance%C2%AE%C2%A0+a+s%C3%A9lectionn%C3%A9+les+huiles+de+Coco+et+...&L_PAYMENTREQUEST_0_AMT7=9.1&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=721&L_PAYMENTREQUEST_0_NAME8=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC8=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT8=-0&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=730&L_PAYMENTREQUEST_0_NAME9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC9=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT9=-0&L_PAYMENTREQUEST_0_QTY9=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=55.82&PAYMENTREQUEST_0_AMT=55.82&ADDROVERRIDE=1&EMAIL=koryn92%40yahoo.fr&PAYMENTREQUEST_0_SHIPTONAME=CORINNE+CAMUS&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33683437712&PAYMENTREQUEST_0_SHIPTOSTREET=32+AVENUE+DE+L%27ARCHE&PAYMENTREQUEST_0_SHIPTOSTREET2=APP+36&PAYMENTREQUEST_0_SHIPTOCITY=COURBEVOIE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92400 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=tujek.marion%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+tujek&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626386825&PAYMENTREQUEST_0_SHIPTOSTREET=44+rue+de+galfingue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d71W39489R4138934E&TIMESTAMP=2016%2d07%2d28T08%3a18%3a03Z&CORRELATIONID=3ce94d875b117&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=tujek.marion%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+tujek&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626386825&PAYMENTREQUEST_0_SHIPTOSTREET=44+rue+de+galfingue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-71W39489R4138934E -Result : TOKEN=EC%2d71W39489R4138934E&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d28T08%3a18%3a12Z&CORRELATIONID=a6fddb827e935&ACK=Success&VERSION=106&BUILD=000000&EMAIL=tujek%2emarion%40free%2efr&PAYERID=HV5GZW646DN5S&PAYERSTATUS=verified&FIRSTNAME=marion&LASTNAME=tujek&COUNTRYCODE=FR&SHIPTONAME=%20marion%20tujek&SHIPTOSTREET=44%20rue%20de%20galfingue&SHIPTOCITY=mulhouse&SHIPTOSTATE=FR&SHIPTOZIP=68200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0626386825&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e10&ITEMAMT=15%2e10&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=207&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e10&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e10&PAYMENTREQUEST_0_ITEMAMT=15%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20marion%20tujek&PAYMENTREQUEST_0_SHIPTOSTREET=44%20rue%20de%20galfingue&PAYMENTREQUEST_0_SHIPTOCITY=mulhouse&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626386825&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-71W39489R4138934E - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-71W39489R4138934E&PAYERID=HV5GZW646DN5S&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=tujek.marion%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+tujek&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626386825&PAYMENTREQUEST_0_SHIPTOSTREET=44+rue+de+galfingue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68200 -Result : TOKEN=EC%2d71W39489R4138934E&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d28T08%3a18%3a16Z&CORRELATIONID=3c022594d84ec&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1EG501118A071384B&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d28T08%3a18%3a15Z&PAYMENTINFO_0_AMT=21%2e10&PAYMENTINFO_0_FEEAMT=0%2e97&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-71W39489R4138934E&PAYERID=HV5GZW646DN5S&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=tujek.marion%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=marion+tujek&PAYMENTREQUEST_0_SHIPTOPHONENUM=0626386825&PAYMENTREQUEST_0_SHIPTOSTREET=44+rue+de+galfingue&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7KX950542K850993R&TIMESTAMP=2016%2d07%2d28T12%3a25%3a07Z&CORRELATIONID=948ae486c7923&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7W849828GT9031334&TIMESTAMP=2016%2d07%2d28T12%3a25%3a07Z&CORRELATIONID=f3c37a1746c0e&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7W849828GT9031334 -Result : TOKEN=EC%2d7W849828GT9031334&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d28T12%3a25%3a50Z&CORRELATIONID=8451881764068&ACK=Success&VERSION=106&BUILD=000000&EMAIL=angele%2efund%40gmail%2ecom&PAYERID=LXL7GJD6U2XRS&PAYERSTATUS=verified&FIRSTNAME=Ang%c3%a8le&LASTNAME=Fund&COUNTRYCODE=FR&SHIPTONAME=Ang%c3%a8le%20Fund&SHIPTOSTREET=12%20rue%20de%20l%27abbaye&SHIPTOCITY=Amn%c3%a9ville&SHIPTOZIP=57360&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0678525409&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=50%2e18&ITEMAMT=50%2e18&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pipettes%20insectifuges%20Verlina%20%2d%20Chats&L_NAME1=Shampooing%20Sec%20chats%20%2d%20Protection%20Insectifuge%20%28poudre%29&L_NAME2=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME3=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME4=Th%c3%a9%20Br%c3%bble%20graisse%2c%20Th%c3%a9%20vert%20%2f%20Mat%c3%a9%20%2f%20Guarana%20%2f%20Caf%c3%a9%20vert%2f%20Kola%20ar%c3%b4me%20menthe&L_NAME5=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=232&L_NUMBER1=220&L_NUMBER2=163&L_NUMBER3=165&L_NUMBER4=172&L_NUMBER5=721&L_QTY0=3&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=7%2e55&L_AMT1=17%2e00&L_AMT2=3%2e50&L_AMT3=3%2e30&L_AMT4=3%2e73&L_AMT5=0%2e00&L_DESC0=Permet%20de%20prot%c3%a9ger%20le%20chat%20contre%20%3a%2d%20les%20puces%2d%20le%2e%2e%2e&L_DESC1=Le%20Shampooing%20Insectifuge%2c%20sans%20rin%c3%a7age%2c%20pour%20chat%2e%2e%2e&L_DESC2=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC3=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC4=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20br%c3%bbleur%20au%20c%c5%93ur%2e%2e%2e&L_DESC5=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=50%2e18&PAYMENTREQUEST_0_ITEMAMT=50%2e18&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Ang%c3%a8le%20Fund&PAYMENTREQUEST_0_SHIPTOSTREET=12%20rue%20de%20l%27abbaye&PAYMENTREQUEST_0_SHIPTOCITY=Amn%c3%a9ville&PAYMENTREQUEST_0_SHIPTOZIP=57360&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pipettes%20insectifuges%20Verlina%20%2d%20Chats&L_PAYMENTREQUEST_0_NAME1=Shampooing%20Sec%20chats%20%2d%20Protection%20Insectifuge%20%28poudre%29&L_PAYMENTREQUEST_0_NAME2=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME3=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME4=Th%c3%a9%20Br%c3%bble%20graisse%2c%20Th%c3%a9%20vert%20%2f%20Mat%c3%a9%20%2f%20Guarana%20%2f%20Caf%c3%a9%20vert%2f%20Kola%20ar%c3%b4me%20menthe&L_PAYMENTREQUEST_0_NAME5=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e55&L_PAYMENTREQUEST_0_AMT1=17%2e00&L_PAYMENTREQUEST_0_AMT2=3%2e50&L_PAYMENTREQUEST_0_AMT3=3%2e30&L_PAYMENTREQUEST_0_AMT4=3%2e73&L_PAYMENTREQUEST_0_AMT5=0%2e00&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20prot%c3%a9ger%20le%20chat%20contre%20%3a%2d%20les%20puces%2d%20le%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Le%20Shampooing%20Insectifuge%2c%20sans%20rin%c3%a7age%2c%20pour%20chat%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Retrouvez%20l%27efficacit%c3%a9%20des%20plantes%20br%c3%bbleur%20au%20c%c5%93ur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7W849828GT9031334 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7W849828GT9031334&PAYERID=LXL7GJD6U2XRS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360 -Result : TOKEN=EC%2d7W849828GT9031334&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d28T12%3a25%3a54Z&CORRELATIONID=e1c1d66777ba4&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2AS45011DF488601E&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d28T12%3a25%3a52Z&PAYMENTINFO_0_AMT=50%2e18&PAYMENTINFO_0_FEEAMT=1%2e96&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7W849828GT9031334&PAYERID=LXL7GJD6U2XRS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=232&L_PAYMENTREQUEST_0_NAME0=Pipettes+insectifuges+Verlina+-+Chats&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+le+chat+contre+%3A-+les+puces-+le...&L_PAYMENTREQUEST_0_AMT0=7.55&L_PAYMENTREQUEST_0_QTY0=3&L_PAYMENTREQUEST_0_NUMBER1=220&L_PAYMENTREQUEST_0_NAME1=Shampooing+Sec+chats+-+Protection+Insectifuge+%28poudre%29&L_PAYMENTREQUEST_0_DESC1=Le+Shampooing+Insectifuge%2C+sans+rin%C3%A7age%2C+pour+chat...&L_PAYMENTREQUEST_0_AMT1=17&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=163&L_PAYMENTREQUEST_0_NAME2=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT2=3.5&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=165&L_PAYMENTREQUEST_0_NAME3=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC3=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT3=3.3&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=172&L_PAYMENTREQUEST_0_NAME4=Th%C3%A9+Br%C3%BBle+graisse%2C+Th%C3%A9+vert+%2F+Mat%C3%A9+%2F+Guarana+%2F+Caf%C3%A9+vert%2F+Kola+ar%C3%B4me+menthe&L_PAYMENTREQUEST_0_DESC4=Retrouvez+l%27efficacit%C3%A9+des+plantes+br%C3%BBleur+au+c%C5%93ur...&L_PAYMENTREQUEST_0_AMT4=3.73&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=721&L_PAYMENTREQUEST_0_NAME5=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC5=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT5=-0&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=50.18&PAYMENTREQUEST_0_AMT=50.18&ADDROVERRIDE=1&EMAIL=angele.fund%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Ang%C3%A8le+Fund&PAYMENTREQUEST_0_SHIPTOPHONENUM=0678525409&PAYMENTREQUEST_0_SHIPTOSTREET=12+rue+de+l%27abbaye&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Amn%C3%A9ville&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57360 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=223&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0Int%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+l%27int%C3%A9rieur+de+la+maison+%28mobil...&L_PAYMENTREQUEST_0_AMT0=18.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.8&PAYMENTREQUEST_0_AMT=24.80&ADDROVERRIDE=1&EMAIL=rita.hafizou%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rita+Hafizou&PAYMENTREQUEST_0_SHIPTOPHONENUM=0297606285&PAYMENTREQUEST_0_SHIPTOSTREET=26+Parc-Hayo&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint-Av%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56890&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d90054311K76213101&TIMESTAMP=2016%2d07%2d28T18%3a06%3a25Z&CORRELATIONID=fcaf154396fcd&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=223&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0Int%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+l%27int%C3%A9rieur+de+la+maison+%28mobil...&L_PAYMENTREQUEST_0_AMT0=18.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.8&PAYMENTREQUEST_0_AMT=24.80&ADDROVERRIDE=1&EMAIL=rita.hafizou%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rita+Hafizou&PAYMENTREQUEST_0_SHIPTOPHONENUM=0297606285&PAYMENTREQUEST_0_SHIPTOSTREET=26+Parc-Hayo&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint-Av%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56890&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-90054311K76213101 -Result : TOKEN=EC%2d90054311K76213101&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d28T18%3a06%3a54Z&CORRELATIONID=5a2477b9973f3&ACK=Success&VERSION=106&BUILD=000000&EMAIL=rita%2ehafizou%40gmail%2ecom&PAYERID=8U5D8XWJPT8ZY&PAYERSTATUS=verified&FIRSTNAME=Rita&LASTNAME=Hafizou&COUNTRYCODE=FR&SHIPTONAME=%20Rita%20Hafizou&SHIPTOSTREET=26%20Parc%2dHayo&SHIPTOCITY=Saint%2dAv%c3%a9&SHIPTOSTATE=FR&SHIPTOZIP=56890&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0297606285&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=24%2e80&ITEMAMT=18%2e80&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0Int%c3%a9rieur%c2%a0%c2%bb&L_NUMBER0=223&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=18%2e80&L_DESC0=Permet%20de%20prot%c3%a9ger%20l%27int%c3%a9rieur%20de%20la%20maison%20%28mobil%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=24%2e80&PAYMENTREQUEST_0_ITEMAMT=18%2e80&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Rita%20Hafizou&PAYMENTREQUEST_0_SHIPTOSTREET=26%20Parc%2dHayo&PAYMENTREQUEST_0_SHIPTOCITY=Saint%2dAv%c3%a9&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56890&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0297606285&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=R%c3%a9pulsif%20Chiens%20%c2%ab%c2%a0Int%c3%a9rieur%c2%a0%c2%bb&L_PAYMENTREQUEST_0_NUMBER0=223&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=18%2e80&L_PAYMENTREQUEST_0_DESC0=Permet%20de%20prot%c3%a9ger%20l%27int%c3%a9rieur%20de%20la%20maison%20%28mobil%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-90054311K76213101 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-90054311K76213101&PAYERID=8U5D8XWJPT8ZY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=223&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0Int%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+l%27int%C3%A9rieur+de+la+maison+%28mobil...&L_PAYMENTREQUEST_0_AMT0=18.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.8&PAYMENTREQUEST_0_AMT=24.80&ADDROVERRIDE=1&EMAIL=rita.hafizou%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rita+Hafizou&PAYMENTREQUEST_0_SHIPTOPHONENUM=0297606285&PAYMENTREQUEST_0_SHIPTOSTREET=26+Parc-Hayo&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint-Av%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56890 -Result : TOKEN=EC%2d90054311K76213101&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d28T18%3a06%3a58Z&CORRELATIONID=7396406ca8f29&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3GL65755VE025822M&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d28T18%3a06%3a56Z&PAYMENTINFO_0_AMT=24%2e80&PAYMENTINFO_0_FEEAMT=1%2e09&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-90054311K76213101&PAYERID=8U5D8XWJPT8ZY&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=223&L_PAYMENTREQUEST_0_NAME0=R%C3%A9pulsif+Chiens+%C2%AB%C2%A0Int%C3%A9rieur%C2%A0%C2%BB&L_PAYMENTREQUEST_0_DESC0=Permet+de+prot%C3%A9ger+l%27int%C3%A9rieur+de+la+maison+%28mobil...&L_PAYMENTREQUEST_0_AMT0=18.8&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=18.8&PAYMENTREQUEST_0_AMT=24.80&ADDROVERRIDE=1&EMAIL=rita.hafizou%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Rita+Hafizou&PAYMENTREQUEST_0_SHIPTOPHONENUM=0297606285&PAYMENTREQUEST_0_SHIPTOSTREET=26+Parc-Hayo&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Saint-Av%C3%A9&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=56890 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.33&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.32&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=311&L_PAYMENTREQUEST_0_NAME3=Erid%C3%A8ne+poudre+-+Dentifrice+poudre+blanchissant+&L_PAYMENTREQUEST_0_DESC3=Dentifrice+poudre+blanchissant+de+la+marque+CATTIE...&L_PAYMENTREQUEST_0_AMT3=6.55&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.46&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=142&L_PAYMENTREQUEST_0_NAME5=Huile+essentielle+Citron+bio&L_PAYMENTREQUEST_0_DESC5=Le+zeste+de+citron+est+traditionnellement+reconnu+...&L_PAYMENTREQUEST_0_AMT5=6.15&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=160&L_PAYMENTREQUEST_0_NAME6=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC6=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT6=6&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=332&L_PAYMENTREQUEST_0_NAME7=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC7=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT7=3.23&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=103&L_PAYMENTREQUEST_0_NAME8=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC8=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT8=5.65&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=104&L_PAYMENTREQUEST_0_NAME9=Huile+100+%25+naturelle+Carotte&L_PAYMENTREQUEST_0_DESC9=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+de+carotte+pour...&L_PAYMENTREQUEST_0_AMT9=5.65&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=79&L_PAYMENTREQUEST_0_NAME10=Cr%C3%A8me+nettoyante+soyeuse+visage+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC10=Sans+savon+ni+agent+moussant+irritant%2C+sa+texture+...&L_PAYMENTREQUEST_0_AMT10=6.15&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=730&L_PAYMENTREQUEST_0_NAME11=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC11=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.04&PAYMENTREQUEST_0_AMT=58.04&ADDROVERRIDE=1&EMAIL=Auto.christ%40yahoo.be&PAYMENTREQUEST_0_SHIPTONAME=Lambrecht+Taina&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485777325&PAYMENTREQUEST_0_SHIPTOSTREET=Avenue+frans+van+kalken+18+bo%C3%AEte+209++&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Anderlecht+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1070&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9MD82410X4361442M&TIMESTAMP=2016%2d07%2d28T22%3a13%3a40Z&CORRELATIONID=d528ad2029e90&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=169&L_PAYMENTREQUEST_0_NAME0=Acide+citrique+naturel+concentr%C3%A9+-+d%C3%A9tartrant+multi-usages+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super%C2%A0d%C3%A9tartrant+multi-usages+pour+maisonMulti-usa...&L_PAYMENTREQUEST_0_AMT0=5.55&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=165&L_PAYMENTREQUEST_0_NAME1=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT1=3.33&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=166&L_PAYMENTREQUEST_0_NAME2=Vinaigre+blanc+forte+concentration+12%C2%B0-+Nettoyant+m%C3%A9nager+%C3%A9cologique+pour+la+maison&L_PAYMENTREQUEST_0_DESC2=Le+vinaigre+blanc+m%C3%A9nager+forte+concentration+12%C2%B0+...&L_PAYMENTREQUEST_0_AMT2=2.32&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=311&L_PAYMENTREQUEST_0_NAME3=Erid%C3%A8ne+poudre+-+Dentifrice+poudre+blanchissant+&L_PAYMENTREQUEST_0_DESC3=Dentifrice+poudre+blanchissant+de+la+marque+CATTIE...&L_PAYMENTREQUEST_0_AMT3=6.55&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=304&L_PAYMENTREQUEST_0_NAME4=Soin+des+pieds+cr%C3%A8me+r%C3%A9paratrice+CATTIER+75ml&L_PAYMENTREQUEST_0_DESC4=Une+texture+douce+et+onctueuse+pour+r%C3%A9parer%2C+nourr...&L_PAYMENTREQUEST_0_AMT4=7.46&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=142&L_PAYMENTREQUEST_0_NAME5=Huile+essentielle+Citron+bio&L_PAYMENTREQUEST_0_DESC5=Le+zeste+de+citron+est+traditionnellement+reconnu+...&L_PAYMENTREQUEST_0_AMT5=6.15&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_NUMBER6=160&L_PAYMENTREQUEST_0_NAME6=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC6=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT6=6&L_PAYMENTREQUEST_0_QTY6=1&L_PAYMENTREQUEST_0_NUMBER7=332&L_PAYMENTREQUEST_0_NAME7=Soin+des+l%C3%A8vres+-+stick+4g&L_PAYMENTREQUEST_0_DESC7=Un+stick+%C3%A0+l%C3%A8vres+qui+r%C3%A9pare%2C+nourrit+et+prot%C3%A8ge+p...&L_PAYMENTREQUEST_0_AMT7=3.23&L_PAYMENTREQUEST_0_QTY7=1&L_PAYMENTREQUEST_0_NUMBER8=103&L_PAYMENTREQUEST_0_NAME8=Huile+100+%25+naturelle+Ricin&L_PAYMENTREQUEST_0_DESC8=Floressance+par+nature+a+s%C3%A9lectionn%C3%A9+l%27huile+de+ri...&L_PAYMENTREQUEST_0_AMT8=5.65&L_PAYMENTREQUEST_0_QTY8=1&L_PAYMENTREQUEST_0_NUMBER9=104&L_PAYMENTREQUEST_0_NAME9=Huile+100+%25+naturelle+Carotte&L_PAYMENTREQUEST_0_DESC9=Floressance%C2%AE+a+s%C3%A9lectionn%C3%A9+l%27huile+de+carotte+pour...&L_PAYMENTREQUEST_0_AMT9=5.65&L_PAYMENTREQUEST_0_QTY9=1&L_PAYMENTREQUEST_0_NUMBER10=79&L_PAYMENTREQUEST_0_NAME10=Cr%C3%A8me+nettoyante+soyeuse+visage+au+lait+d%27%C3%A2nesse+bio&L_PAYMENTREQUEST_0_DESC10=Sans+savon+ni+agent+moussant+irritant%2C+sa+texture+...&L_PAYMENTREQUEST_0_AMT10=6.15&L_PAYMENTREQUEST_0_QTY10=1&L_PAYMENTREQUEST_0_NUMBER11=730&L_PAYMENTREQUEST_0_NAME11=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal&L_PAYMENTREQUEST_0_DESC11=pack+Nettoyer+un+moule+%C3%A0+gateau+en+m%C3%A9tal...&L_PAYMENTREQUEST_0_AMT11=-0&L_PAYMENTREQUEST_0_QTY11=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=58.04&PAYMENTREQUEST_0_AMT=58.04&ADDROVERRIDE=1&EMAIL=Auto.christ%40yahoo.be&PAYMENTREQUEST_0_SHIPTONAME=Lambrecht+Taina&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485777325&PAYMENTREQUEST_0_SHIPTOSTREET=Avenue+frans+van+kalken+18+bo%C3%AEte+209++&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Anderlecht+&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1070&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7CP976621D937670D&TIMESTAMP=2016%2d07%2d29T08%3a59%3a43Z&CORRELATIONID=239947455764d&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1AY53559H78531125&TIMESTAMP=2016%2d07%2d29T09%3a02%3a00Z&CORRELATIONID=1a5cbdeb65767&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1AY53559H78531125 -Result : TOKEN=EC%2d1AY53559H78531125&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d29T09%3a02%3a29Z&CORRELATIONID=f32de72bb4c8a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=celine%2esauvat%40neuf%2efr&PAYERID=PMTL79Q4EUYG6&PAYERSTATUS=verified&FIRSTNAME=sauvat&LASTNAME=celine&COUNTRYCODE=FR&SHIPTONAME=C%c3%a9line%20SAUVAT&SHIPTOSTREET=9%20rue%20de%20bourgogne&SHIPTOCITY=Clamart&SHIPTOZIP=92140&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0659315220&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=22%2e30&ITEMAMT=19%2e30&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Roll%2don%20massage%20arnica%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=155&L_NUMBER1=152&L_NUMBER2=156&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_AMT2=7%2e40&L_DESC0=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_DESC1=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_DESC2=Le%20roll%2don%20Arnica%20puise%20son%20efficacit%c3%a9%20dans%20la%20syn%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=22%2e30&PAYMENTREQUEST_0_ITEMAMT=19%2e30&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=C%c3%a9line%20SAUVAT&PAYMENTREQUEST_0_SHIPTOSTREET=9%20rue%20de%20bourgogne&PAYMENTREQUEST_0_SHIPTOCITY=Clamart&PAYMENTREQUEST_0_SHIPTOZIP=92140&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dstress%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Roll%2don%20massage%20arnica%20efficacit%c3%a9%20prouv%c3%a9e%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=7%2e40&L_PAYMENTREQUEST_0_DESC0=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20roll%2don%2c%20pratique%20et%20nomade%2c%20est%20compos%c3%a9%20d%27une%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Le%20roll%2don%20Arnica%20puise%20son%20efficacit%c3%a9%20dans%20la%20syn%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1AY53559H78531125 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1AY53559H78531125&PAYERID=PMTL79Q4EUYG6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140 -Result : TOKEN=EC%2d1AY53559H78531125&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d29T09%3a02%3a33Z&CORRELATIONID=c6131ae6cd929&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7E5324135G131191C&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d29T09%3a02%3a32Z&PAYMENTINFO_0_AMT=22%2e30&PAYMENTINFO_0_FEEAMT=1%2e01&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1AY53559H78531125&PAYERID=PMTL79Q4EUYG6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=155&L_PAYMENTREQUEST_0_NAME0=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=152&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-stress%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+roll-on%2C+pratique+et+nomade%2C+est+compos%C3%A9+d%27une+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=156&L_PAYMENTREQUEST_0_NAME2=Roll-on+massage+arnica+efficacit%C3%A9+prouv%C3%A9e%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC2=Le+roll-on+Arnica+puise+son+efficacit%C3%A9+dans+la+syn...&L_PAYMENTREQUEST_0_AMT2=7.4&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=19.3&PAYMENTREQUEST_0_AMT=22.30&ADDROVERRIDE=1&EMAIL=celine.sauvat%40neuf.fr&PAYMENTREQUEST_0_SHIPTONAME=c%C3%A9line+sauvat&PAYMENTREQUEST_0_SHIPTOPHONENUM=0659315220&PAYMENTREQUEST_0_SHIPTOSTREET=9+rue+de+bourgogne&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=clamart&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92140 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=dupuy.erick%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=erick+dupuy&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33474593892&PAYMENTREQUEST_0_SHIPTOSTREET=608%2C+route+de+la+chapelle+d%27Illins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=luzinay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d22S812807P361492K&TIMESTAMP=2016%2d07%2d29T13%3a44%3a26Z&CORRELATIONID=89aecbc82bc48&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=dupuy.erick%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=erick+dupuy&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33474593892&PAYMENTREQUEST_0_SHIPTOSTREET=608%2C+route+de+la+chapelle+d%27Illins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=luzinay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38200&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-22S812807P361492K -Result : TOKEN=EC%2d22S812807P361492K&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d29T13%3a45%3a05Z&CORRELATIONID=72ee3fa51250b&ACK=Success&VERSION=106&BUILD=000000&EMAIL=dupuy%2eerick%40wanadoo%2efr&PAYERID=L5HGBLJ7UFYBJ&PAYERSTATUS=unverified&FIRSTNAME=Erick&LASTNAME=Dupuy&COUNTRYCODE=FR&SHIPTONAME=Erick%20Dupuy&SHIPTOSTREET=608%2c%20Route%20De%20La%20Chapelle%20D%27Illins&SHIPTOCITY=Luzinay&SHIPTOZIP=38200&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=%2b33474593892&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=11%2e36&ITEMAMT=8%2e36&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_NUMBER0=167&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=8%2e36&L_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=11%2e36&PAYMENTREQUEST_0_ITEMAMT=8%2e36&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Erick%20Dupuy&PAYMENTREQUEST_0_SHIPTOSTREET=608%2c%20Route%20De%20La%20Chapelle%20D%27Illins&PAYMENTREQUEST_0_SHIPTOCITY=Luzinay&PAYMENTREQUEST_0_SHIPTOZIP=38200&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2b33474593892&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Pierre%20d%27argile%20%2d%20d%c3%a9tachant%20multi%20usage%20pour%20la%20maison&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=8%2e36&L_PAYMENTREQUEST_0_DESC0=La%20pierre%20d%27argile%20senteur%20naturelle%20de%20citron%20est%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-22S812807P361492K - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-22S812807P361492K&PAYERID=L5HGBLJ7UFYBJ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=dupuy.erick%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=erick+dupuy&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33474593892&PAYMENTREQUEST_0_SHIPTOSTREET=608%2C+route+de+la+chapelle+d%27Illins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=luzinay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38200 -Result : TOKEN=EC%2d22S812807P361492K&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d29T13%3a45%3a10Z&CORRELATIONID=711b4d9522a5d&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7VY39463RM1094017&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d29T13%3a45%3a09Z&PAYMENTINFO_0_AMT=11%2e36&PAYMENTINFO_0_FEEAMT=0%2e64&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-22S812807P361492K&PAYERID=L5HGBLJ7UFYBJ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=167&L_PAYMENTREQUEST_0_NAME0=Pierre+d%27argile+-+d%C3%A9tachant+multi+usage+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=La+pierre+d%27argile+senteur+naturelle+de+citron+est...&L_PAYMENTREQUEST_0_AMT0=8.36&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=8.36&PAYMENTREQUEST_0_AMT=11.36&ADDROVERRIDE=1&EMAIL=dupuy.erick%40wanadoo.fr&PAYMENTREQUEST_0_SHIPTONAME=erick+dupuy&PAYMENTREQUEST_0_SHIPTOPHONENUM=%2B33474593892&PAYMENTREQUEST_0_SHIPTOSTREET=608%2C+route+de+la+chapelle+d%27Illins&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=luzinay&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=38200 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=305&L_PAYMENTREQUEST_0_NAME0=Poudre+absorbante+-+d%C3%A9odorant+pieds+65g&L_PAYMENTREQUEST_0_DESC0=Avec+la+poudre+absorbante+sp%C3%A9cialement+formul%C3%A9e+po...&L_PAYMENTREQUEST_0_AMT0=7.31&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=7.31&PAYMENTREQUEST_0_AMT=10.34&ADDROVERRIDE=1&EMAIL=seufiane10%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Soufiane+Al+haroche&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485055007&PAYMENTREQUEST_0_SHIPTOSTREET=boulevard+leopold+II%2C+82&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1080&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d1NF91160HW623630F&TIMESTAMP=2016%2d07%2d29T15%3a40%3a32Z&CORRELATIONID=3e55a605214eb&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=305&L_PAYMENTREQUEST_0_NAME0=Poudre+absorbante+-+d%C3%A9odorant+pieds+65g&L_PAYMENTREQUEST_0_DESC0=Avec+la+poudre+absorbante+sp%C3%A9cialement+formul%C3%A9e+po...&L_PAYMENTREQUEST_0_AMT0=7.31&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=7.31&PAYMENTREQUEST_0_AMT=10.34&ADDROVERRIDE=1&EMAIL=seufiane10%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Soufiane+Al+haroche&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485055007&PAYMENTREQUEST_0_SHIPTOSTREET=boulevard+leopold+II%2C+82&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1080&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NF91160HW623630F -Result : TOKEN=EC%2d1NF91160HW623630F&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d29T15%3a40%3a55Z&CORRELATIONID=1ed3e47e13396&ACK=Success&VERSION=106&BUILD=000000&EMAIL=seufiane10%40hotmail%2ecom&PAYERID=CGC8DRENR7A6W&PAYERSTATUS=verified&FIRSTNAME=Soufiane&LASTNAME=AL%20Haroche&COUNTRYCODE=BE&SHIPTONAME=Soufiane%20Al%20haroche&SHIPTOSTREET=boulevard%20leopold%20II%2c%2082&SHIPTOCITY=Bruxelles&SHIPTOZIP=1080&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0485055007&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=10%2e34&ITEMAMT=7%2e31&SHIPPINGAMT=3%2e03&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Poudre%20absorbante%20%2d%20d%c3%a9odorant%20pieds%2065g&L_NUMBER0=305&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=7%2e31&L_DESC0=Avec%20la%20poudre%20absorbante%20sp%c3%a9cialement%20formul%c3%a9e%20po%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=10%2e34&PAYMENTREQUEST_0_ITEMAMT=7%2e31&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e03&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Soufiane%20Al%20haroche&PAYMENTREQUEST_0_SHIPTOSTREET=boulevard%20leopold%20II%2c%2082&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOZIP=1080&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485055007&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Poudre%20absorbante%20%2d%20d%c3%a9odorant%20pieds%2065g&L_PAYMENTREQUEST_0_NUMBER0=305&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=7%2e31&L_PAYMENTREQUEST_0_DESC0=Avec%20la%20poudre%20absorbante%20sp%c3%a9cialement%20formul%c3%a9e%20po%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NF91160HW623630F - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NF91160HW623630F&PAYERID=CGC8DRENR7A6W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=305&L_PAYMENTREQUEST_0_NAME0=Poudre+absorbante+-+d%C3%A9odorant+pieds+65g&L_PAYMENTREQUEST_0_DESC0=Avec+la+poudre+absorbante+sp%C3%A9cialement+formul%C3%A9e+po...&L_PAYMENTREQUEST_0_AMT0=7.31&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=7.31&PAYMENTREQUEST_0_AMT=10.34&ADDROVERRIDE=1&EMAIL=seufiane10%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Soufiane+Al+haroche&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485055007&PAYMENTREQUEST_0_SHIPTOSTREET=boulevard+leopold+II%2C+82&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1080 -Result : TOKEN=EC%2d1NF91160HW623630F&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d29T15%3a40%3a58Z&CORRELATIONID=4cd7e0b125df0&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=94A18965VL647305T&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d29T15%3a40%3a57Z&PAYMENTINFO_0_AMT=10%2e34&PAYMENTINFO_0_FEEAMT=0%2e60&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-1NF91160HW623630F&PAYERID=CGC8DRENR7A6W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=305&L_PAYMENTREQUEST_0_NAME0=Poudre+absorbante+-+d%C3%A9odorant+pieds+65g&L_PAYMENTREQUEST_0_DESC0=Avec+la+poudre+absorbante+sp%C3%A9cialement+formul%C3%A9e+po...&L_PAYMENTREQUEST_0_AMT0=7.31&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.03&PAYMENTREQUEST_0_ITEMAMT=7.31&PAYMENTREQUEST_0_AMT=10.34&ADDROVERRIDE=1&EMAIL=seufiane10%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Soufiane+Al+haroche&PAYMENTREQUEST_0_SHIPTOPHONENUM=0485055007&PAYMENTREQUEST_0_SHIPTOSTREET=boulevard+leopold+II%2C+82&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bruxelles&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=1080 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=breter.prescillia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=PRESCILLA++Breter&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667765841&PAYMENTREQUEST_0_SHIPTOSTREET=300+avenue+Aristide+Briand&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bagneux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d21M28059GE6249713&TIMESTAMP=2016%2d07%2d30T13%3a28%3a43Z&CORRELATIONID=1784418af2fa&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=breter.prescillia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=PRESCILLA++Breter&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667765841&PAYMENTREQUEST_0_SHIPTOSTREET=300+avenue+Aristide+Briand&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bagneux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21M28059GE6249713 -Result : TOKEN=EC%2d21M28059GE6249713&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d30T13%3a29%3a09Z&CORRELATIONID=e841a0aab5472&ACK=Success&VERSION=106&BUILD=000000&EMAIL=breter%2eprescillia%40gmail%2ecom&PAYERID=HP4GSVERAKSHW&PAYERSTATUS=verified&FIRSTNAME=prescillia&LASTNAME=breter&COUNTRYCODE=FR&SHIPTONAME=PRESCILLA%20%20Breter&SHIPTOSTREET=300%20avenue%20Aristide%20Briand&SHIPTOCITY=Bagneux&SHIPTOZIP=92220&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0667765841&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=20%2e50&ITEMAMT=17%2e50&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_NUMBER0=208&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=17%2e50&L_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e50&PAYMENTREQUEST_0_ITEMAMT=17%2e50&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=PRESCILLA%20%20Breter&PAYMENTREQUEST_0_SHIPTOSTREET=300%20avenue%20Aristide%20Briand&PAYMENTREQUEST_0_SHIPTOCITY=Bagneux&PAYMENTREQUEST_0_SHIPTOZIP=92220&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667765841&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20fumig%c3%a8ne%20anti%2dinsectes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=17%2e50&L_PAYMENTREQUEST_0_DESC0=Fumig%c3%a8ne%20anti%20insectes%20choc%20avec%20effet%20r%c3%a9manentAgi%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21M28059GE6249713 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21M28059GE6249713&PAYERID=HP4GSVERAKSHW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=breter.prescillia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=PRESCILLA++Breter&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667765841&PAYMENTREQUEST_0_SHIPTOSTREET=300+avenue+Aristide+Briand&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bagneux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92220 -Result : TOKEN=EC%2d21M28059GE6249713&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d30T13%3a29%3a12Z&CORRELATIONID=3860b349e213b&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4E1407889E4778357&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d30T13%3a29%3a12Z&PAYMENTINFO_0_AMT=20%2e50&PAYMENTINFO_0_FEEAMT=0%2e95&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-21M28059GE6249713&PAYERID=HP4GSVERAKSHW&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=208&L_PAYMENTREQUEST_0_NAME0=Produit+fumig%C3%A8ne+anti-insectes+10gr&L_PAYMENTREQUEST_0_DESC0=Fumig%C3%A8ne+anti+insectes+choc+avec+effet+r%C3%A9manentAgi...&L_PAYMENTREQUEST_0_AMT0=17.5&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=17.5&PAYMENTREQUEST_0_AMT=20.50&ADDROVERRIDE=1&EMAIL=breter.prescillia%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=PRESCILLA++Breter&PAYMENTREQUEST_0_SHIPTOPHONENUM=0667765841&PAYMENTREQUEST_0_SHIPTOSTREET=300+avenue+Aristide+Briand&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Bagneux&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=92220 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=marilore669%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=marie-laure+martinez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762512020&PAYMENTREQUEST_0_SHIPTOSTREET=5+ter+rue+Berlioz&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d4H130395D9753884Y&TIMESTAMP=2016%2d07%2d30T13%3a46%3a37Z&CORRELATIONID=81a0dcaba57a4&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=marilore669%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=marie-laure+martinez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762512020&PAYMENTREQUEST_0_SHIPTOSTREET=5+ter+rue+Berlioz&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06000&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4H130395D9753884Y -Result : TOKEN=EC%2d4H130395D9753884Y&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d30T13%3a46%3a58Z&CORRELATIONID=6ee8c899e27a3&ACK=Success&VERSION=106&BUILD=000000&EMAIL=marilore669%40gmail%2ecom&PAYERID=EJZTCKGRCCKB6&PAYERSTATUS=verified&FIRSTNAME=MARIE%2dLAURE&LASTNAME=MARTINEZ&COUNTRYCODE=FR&SHIPTONAME=MARIE%2dLAURE%20MARTINEZ&SHIPTOSTREET=5%20Ter%20Rue%20Berlioz&SHIPTOCITY=Nice&SHIPTOZIP=06000&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0762512020&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=18%2e20&ITEMAMT=15%2e20&SHIPPINGAMT=3%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_NUMBER0=204&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e20&L_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=18%2e20&PAYMENTREQUEST_0_ITEMAMT=15%2e20&PAYMENTREQUEST_0_SHIPPINGAMT=3%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=MARIE%2dLAURE%20MARTINEZ&PAYMENTREQUEST_0_SHIPTOSTREET=5%20Ter%20Rue%20Berlioz&PAYMENTREQUEST_0_SHIPTOCITY=Nice&PAYMENTREQUEST_0_SHIPTOZIP=06000&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762512020&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Gel%20anti%20cafards%20et%20blattes%2010gr&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e20&L_PAYMENTREQUEST_0_DESC0=Ce%20Gel%20anti%20cafards%20et%20blattes%20est%20un%20insecticide%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4H130395D9753884Y - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4H130395D9753884Y&PAYERID=EJZTCKGRCCKB6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=marilore669%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=marie-laure+martinez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762512020&PAYMENTREQUEST_0_SHIPTOSTREET=5+ter+rue+Berlioz&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06000 -Result : TOKEN=EC%2d4H130395D9753884Y&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d30T13%3a47%3a01Z&CORRELATIONID=ae10c44f1f041&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=3X0838328E4929500&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d30T13%3a47%3a00Z&PAYMENTINFO_0_AMT=18%2e20&PAYMENTINFO_0_FEEAMT=0%2e87&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-4H130395D9753884Y&PAYERID=EJZTCKGRCCKB6&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=204&L_PAYMENTREQUEST_0_NAME0=Gel+anti+cafards+et+blattes+10gr&L_PAYMENTREQUEST_0_DESC0=Ce+Gel+anti+cafards+et+blattes+est+un+insecticide+...&L_PAYMENTREQUEST_0_AMT0=15.2&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=3.00&PAYMENTREQUEST_0_ITEMAMT=15.2&PAYMENTREQUEST_0_AMT=18.20&ADDROVERRIDE=1&EMAIL=marilore669%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=marie-laure+martinez&PAYMENTREQUEST_0_SHIPTOPHONENUM=0762512020&PAYMENTREQUEST_0_SHIPTOSTREET=5+ter+rue+Berlioz&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=NICE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=06000 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitance+de+ciment%2C+b%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+traces+blanches+sur+sols+et+murs%C2%A0%21D%C3%A9cap%27L...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.4&PAYMENTREQUEST_0_AMT=89.40&ADDROVERRIDE=1&EMAIL=guismo144%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+renard&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143301946&PAYMENTREQUEST_0_SHIPTOSTREET=27+bd+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GAGNY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d9LL03220YV736392P&TIMESTAMP=2016%2d07%2d30T17%3a27%3a59Z&CORRELATIONID=1f3037ba13918&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitance+de+ciment%2C+b%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+traces+blanches+sur+sols+et+murs%C2%A0%21D%C3%A9cap%27L...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.4&PAYMENTREQUEST_0_AMT=89.40&ADDROVERRIDE=1&EMAIL=guismo144%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+renard&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143301946&PAYMENTREQUEST_0_SHIPTOSTREET=27+bd+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GAGNY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93220&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9LL03220YV736392P -Result : TOKEN=EC%2d9LL03220YV736392P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d30T17%3a28%3a41Z&CORRELATIONID=3c8eb50a3c07&ACK=Success&VERSION=106&BUILD=000000&EMAIL=guismo144%40gmail%2ecom&PAYERID=32CGX967XQV3W&PAYERSTATUS=verified&FIRSTNAME=jp&LASTNAME=renard&COUNTRYCODE=FR&SHIPTONAME=Jean%20Pierre%20Renard&SHIPTOSTREET=27%20bd%20du%20nord&SHIPTOCITY=gagny&SHIPTOZIP=93220&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0143301946&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=89%2e40&ITEMAMT=89%2e40&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Anti%2dlaitance%20de%20ciment%2c%20b%c3%a9ton%2c%20carrelage%20%2d%20D%c3%a9cap%27Laitances%20Guard%20Ecologique%205L&L_NUMBER0=16&L_QTY0=2&L_TAXAMT0=0%2e00&L_AMT0=44%2e70&L_DESC0=Stop%20aux%20traces%20blanches%20sur%20sols%20et%20murs%c2%a0%21D%c3%a9cap%27L%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=89%2e40&PAYMENTREQUEST_0_ITEMAMT=89%2e40&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Jean%20Pierre%20Renard&PAYMENTREQUEST_0_SHIPTOSTREET=27%20bd%20du%20nord&PAYMENTREQUEST_0_SHIPTOCITY=gagny&PAYMENTREQUEST_0_SHIPTOZIP=93220&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143301946&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Anti%2dlaitance%20de%20ciment%2c%20b%c3%a9ton%2c%20carrelage%20%2d%20D%c3%a9cap%27Laitances%20Guard%20Ecologique%205L&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=44%2e70&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20traces%20blanches%20sur%20sols%20et%20murs%c2%a0%21D%c3%a9cap%27L%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9LL03220YV736392P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9LL03220YV736392P&PAYERID=32CGX967XQV3W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitance+de+ciment%2C+b%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+traces+blanches+sur+sols+et+murs%C2%A0%21D%C3%A9cap%27L...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.4&PAYMENTREQUEST_0_AMT=89.40&ADDROVERRIDE=1&EMAIL=guismo144%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+renard&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143301946&PAYMENTREQUEST_0_SHIPTOSTREET=27+bd+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GAGNY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93220 -Result : TOKEN=EC%2d9LL03220YV736392P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d30T17%3a28%3a45Z&CORRELATIONID=62f051a83ba06&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=2RB563341A131840M&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d30T17%3a28%3a43Z&PAYMENTINFO_0_AMT=89%2e40&PAYMENTINFO_0_FEEAMT=3%2e29&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-9LL03220YV736392P&PAYERID=32CGX967XQV3W&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=16&L_PAYMENTREQUEST_0_NAME0=Anti-laitance+de+ciment%2C+b%C3%A9ton%2C+carrelage+-+D%C3%A9cap%27Laitances+Guard+Ecologique+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+traces+blanches+sur+sols+et+murs%C2%A0%21D%C3%A9cap%27L...&L_PAYMENTREQUEST_0_AMT0=44.7&L_PAYMENTREQUEST_0_QTY0=2&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=89.4&PAYMENTREQUEST_0_AMT=89.40&ADDROVERRIDE=1&EMAIL=guismo144%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=jean+pierre+renard&PAYMENTREQUEST_0_SHIPTOPHONENUM=0143301946&PAYMENTREQUEST_0_SHIPTOSTREET=27+bd+du+nord&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=GAGNY&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93220 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=280&L_PAYMENTREQUEST_0_NAME2=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC2=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT2=2.6&L_PAYMENTREQUEST_0_QTY2=3&L_PAYMENTREQUEST_0_NUMBER3=298&L_PAYMENTREQUEST_0_NAME3=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC3=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT3=2.1&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=143&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC4=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT4=6.1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=644&L_PAYMENTREQUEST_0_NAME5=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC5=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT5=-10&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.95&PAYMENTREQUEST_0_AMT=31.95&ADDROVERRIDE=1&EMAIL=unica965%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Maria+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782988452&PAYMENTREQUEST_0_SHIPTOSTREET=535+rue+des+Grillons&PAYMENTREQUEST_0_SHIPTOSTREET2=les+hauts+du+Beaujolais&PAYMENTREQUEST_0_SHIPTOCITY=GLEIZE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5BC63012YD436394P&TIMESTAMP=2016%2d07%2d31T12%3a59%3a47Z&CORRELATIONID=26030c5ab02b2&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=280&L_PAYMENTREQUEST_0_NAME2=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC2=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT2=2.6&L_PAYMENTREQUEST_0_QTY2=3&L_PAYMENTREQUEST_0_NUMBER3=298&L_PAYMENTREQUEST_0_NAME3=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC3=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT3=2.1&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=143&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC4=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT4=6.1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=644&L_PAYMENTREQUEST_0_NAME5=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC5=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT5=-10&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.95&PAYMENTREQUEST_0_AMT=31.95&ADDROVERRIDE=1&EMAIL=unica965%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Maria+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782988452&PAYMENTREQUEST_0_SHIPTOSTREET=535+rue+des+Grillons&PAYMENTREQUEST_0_SHIPTOSTREET2=les+hauts+du+Beaujolais&PAYMENTREQUEST_0_SHIPTOCITY=GLEIZE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69400&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5BC63012YD436394P -Result : TOKEN=EC%2d5BC63012YD436394P&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d31T13%3a01%3a32Z&CORRELATIONID=b5afd83127ec3&ACK=Success&VERSION=106&BUILD=000000&EMAIL=unica965%40hotmail%2efr&PAYERID=38E5KHR3GNULA&PAYERSTATUS=verified&FIRSTNAME=MARIA&LASTNAME=GONZALEZ&COUNTRYCODE=FR&SHIPTONAME=MARIA%20GONZALEZ&SHIPTOSTREET=535%20rue%20des%20Grillons&SHIPTOSTREET2=les%20hauts%20du%20Beaujolais&SHIPTOCITY=GLEIZE&SHIPTOZIP=69400&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0782988452&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=31%2e95&ITEMAMT=25%2e95&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_NAME2=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_NAME3=Romarin%20bio%20%2d%20feuilles&L_NAME4=Huile%20essentielle%20Citronnelle%20bio&L_NAME5=R%c3%a9duction%20newsletter&L_NUMBER0=160&L_NUMBER1=155&L_NUMBER2=280&L_NUMBER3=298&L_NUMBER4=143&L_NUMBER5=644&L_QTY0=2&L_QTY1=1&L_QTY2=3&L_QTY3=2&L_QTY4=1&L_QTY5=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_TAXAMT5=0%2e00&L_AMT0=5%2e95&L_AMT1=5%2e95&L_AMT2=2%2e60&L_AMT3=2%2e10&L_AMT4=6%2e10&L_AMT5=%2d10%2e00&L_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_DESC2=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&L_DESC3=C%27est%20%c3%a0%20sa%20sauvagerie%20et%20%c3%a0%20sa%20libert%c3%a9%20que%20le%20romar%2e%2e%2e&L_DESC4=La%20feuille%20de%20citronnelle%20est%20reconnue%20pour%20%c3%a9loign%2e%2e%2e&L_DESC5=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=31%2e95&PAYMENTREQUEST_0_ITEMAMT=25%2e95&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=MARIA%20GONZALEZ&PAYMENTREQUEST_0_SHIPTOSTREET=535%20rue%20des%20Grillons&PAYMENTREQUEST_0_SHIPTOSTREET2=les%20hauts%20du%20Beaujolais&PAYMENTREQUEST_0_SHIPTOCITY=GLEIZE&PAYMENTREQUEST_0_SHIPTOZIP=69400&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782988452&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME1=Roll%2don%20SOS%20anti%2dpiq%c3%bbres%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Thym%20s%c3%a9ch%c3%a9%20certifi%c3%a9%20Bio&L_PAYMENTREQUEST_0_NAME3=Romarin%20bio%20%2d%20feuilles&L_PAYMENTREQUEST_0_NAME4=Huile%20essentielle%20Citronnelle%20bio&L_PAYMENTREQUEST_0_NAME5=R%c3%a9duction%20newsletter&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NUMBER2=280&L_PAYMENTREQUEST_0_NUMBER3=298&L_PAYMENTREQUEST_0_NUMBER4=143&L_PAYMENTREQUEST_0_NUMBER5=644&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=3&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_QTY5=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_TAXAMT5=0%2e00&L_PAYMENTREQUEST_0_AMT0=5%2e95&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_AMT2=2%2e60&L_PAYMENTREQUEST_0_AMT3=2%2e10&L_PAYMENTREQUEST_0_AMT4=6%2e10&L_PAYMENTREQUEST_0_AMT5=%2d10%2e00&L_PAYMENTREQUEST_0_DESC0=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Un%20insecte%20vous%20a%20piqu%c3%a9%c2%a0%3fCe%20roll%2don%2c%20compos%c3%a9%20d%27une%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Avec%20le%20laurier%20et%20le%20persil%2c%20le%20thym%20est%20l%27un%20des%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=C%27est%20%c3%a0%20sa%20sauvagerie%20et%20%c3%a0%20sa%20libert%c3%a9%20que%20le%20romar%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=La%20feuille%20de%20citronnelle%20est%20reconnue%20pour%20%c3%a9loign%2e%2e%2e&L_PAYMENTREQUEST_0_DESC5=R%c3%a9duction%20newsletter%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5BC63012YD436394P - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5BC63012YD436394P&PAYERID=38E5KHR3GNULA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=280&L_PAYMENTREQUEST_0_NAME2=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC2=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT2=2.6&L_PAYMENTREQUEST_0_QTY2=3&L_PAYMENTREQUEST_0_NUMBER3=298&L_PAYMENTREQUEST_0_NAME3=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC3=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT3=2.1&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=143&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC4=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT4=6.1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=644&L_PAYMENTREQUEST_0_NAME5=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC5=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT5=-10&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.95&PAYMENTREQUEST_0_AMT=31.95&ADDROVERRIDE=1&EMAIL=unica965%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Maria+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782988452&PAYMENTREQUEST_0_SHIPTOSTREET=535+rue+des+Grillons&PAYMENTREQUEST_0_SHIPTOSTREET2=les+hauts+du+Beaujolais&PAYMENTREQUEST_0_SHIPTOCITY=GLEIZE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69400 -Result : TOKEN=EC%2d5BC63012YD436394P&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d31T13%3a01%3a36Z&CORRELATIONID=15f031cb4cd6&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=7BR8099341529794H&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d31T13%3a01%3a34Z&PAYMENTINFO_0_AMT=31%2e95&PAYMENTINFO_0_FEEAMT=1%2e34&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5BC63012YD436394P&PAYERID=38E5KHR3GNULA&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=160&L_PAYMENTREQUEST_0_NAME0=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC0=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT0=5.95&L_PAYMENTREQUEST_0_QTY0=2&L_PAYMENTREQUEST_0_NUMBER1=155&L_PAYMENTREQUEST_0_NAME1=Roll-on+SOS+anti-piq%C3%BBres%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Un+insecte+vous+a+piqu%C3%A9%C2%A0%3FCe+roll-on%2C+compos%C3%A9+d%27une...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=280&L_PAYMENTREQUEST_0_NAME2=Thym+s%C3%A9ch%C3%A9+certifi%C3%A9+Bio&L_PAYMENTREQUEST_0_DESC2=Avec+le+laurier+et+le+persil%2C+le+thym+est+l%27un+des...&L_PAYMENTREQUEST_0_AMT2=2.6&L_PAYMENTREQUEST_0_QTY2=3&L_PAYMENTREQUEST_0_NUMBER3=298&L_PAYMENTREQUEST_0_NAME3=Romarin+bio+-+feuilles&L_PAYMENTREQUEST_0_DESC3=C%27est+%C3%A0+sa+sauvagerie+et+%C3%A0+sa+libert%C3%A9+que+le+romar...&L_PAYMENTREQUEST_0_AMT3=2.1&L_PAYMENTREQUEST_0_QTY3=2&L_PAYMENTREQUEST_0_NUMBER4=143&L_PAYMENTREQUEST_0_NAME4=Huile+essentielle+Citronnelle+bio&L_PAYMENTREQUEST_0_DESC4=La+feuille+de+citronnelle+est+reconnue+pour+%C3%A9loign...&L_PAYMENTREQUEST_0_AMT4=6.1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_NUMBER5=644&L_PAYMENTREQUEST_0_NAME5=R%C3%A9duction+newsletter&L_PAYMENTREQUEST_0_DESC5=R%C3%A9duction+newsletter...&L_PAYMENTREQUEST_0_AMT5=-10&L_PAYMENTREQUEST_0_QTY5=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=25.95&PAYMENTREQUEST_0_AMT=31.95&ADDROVERRIDE=1&EMAIL=unica965%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=Maria+GONZALEZ&PAYMENTREQUEST_0_SHIPTOPHONENUM=0782988452&PAYMENTREQUEST_0_SHIPTOSTREET=535+rue+des+Grillons&PAYMENTREQUEST_0_SHIPTOSTREET2=les+hauts+du+Beaujolais&PAYMENTREQUEST_0_SHIPTOCITY=GLEIZE&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=69400 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=14.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=dylanrollat%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Dylan+ROLLAT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0760212900&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+Halles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d2SN203648U9161217&TIMESTAMP=2016%2d07%2d31T18%3a22%3a39Z&CORRELATIONID=70bfbc6c2f8ad&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=14.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=dylanrollat%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Dylan+ROLLAT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0760212900&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+Halles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68100&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2SN203648U9161217 -Result : TOKEN=EC%2d2SN203648U9161217&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d31T18%3a24%3a28Z&CORRELATIONID=49afcc5c3650c&ACK=Success&VERSION=106&BUILD=000000&EMAIL=dydydu68%40hotmail%2efr&PAYERID=2VAH34TD88L9A&PAYERSTATUS=verified&FIRSTNAME=Dylan&LASTNAME=Rollat&COUNTRYCODE=FR&SHIPTONAME=Dylan%20ROLLAT&SHIPTOSTREET=5%20rue%20des%20Halles&SHIPTOCITY=Mulhouse&SHIPTOSTATE=Alsace&SHIPTOZIP=68100&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0760212900&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=20%2e70&ITEMAMT=14%2e70&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME1=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_NAME2=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=163&L_NUMBER1=159&L_NUMBER2=721&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_AMT0=3%2e50&L_AMT1=11%2e20&L_AMT2=0%2e00&L_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC1=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&L_DESC2=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=20%2e70&PAYMENTREQUEST_0_ITEMAMT=14%2e70&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Dylan%20ROLLAT&PAYMENTREQUEST_0_SHIPTOSTREET=5%20rue%20des%20Halles&PAYMENTREQUEST_0_SHIPTOCITY=Mulhouse&PAYMENTREQUEST_0_SHIPTOSTATE=Alsace&PAYMENTREQUEST_0_SHIPTOZIP=68100&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0760212900&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Spray%20habitat%20purifiant%20et%20assainissant%2c%20aux%2021%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NAME2=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e50&L_PAYMENTREQUEST_0_AMT1=11%2e20&L_PAYMENTREQUEST_0_AMT2=0%2e00&L_PAYMENTREQUEST_0_DESC0=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Ce%20m%c3%a9lange%20de%2021%20huiles%20essentielles%20assainit%2c%20pur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2SN203648U9161217 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2SN203648U9161217&PAYERID=2VAH34TD88L9A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=14.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=dylanrollat%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Dylan+ROLLAT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0760212900&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+Halles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68100 -Result : TOKEN=EC%2d2SN203648U9161217&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d31T18%3a24%3a33Z&CORRELATIONID=8a682837cd0cb&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8W3488558D023634N&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d31T18%3a24%3a30Z&PAYMENTINFO_0_AMT=20%2e70&PAYMENTINFO_0_FEEAMT=0%2e95&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-2SN203648U9161217&PAYERID=2VAH34TD88L9A&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=163&L_PAYMENTREQUEST_0_NAME0=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT0=3.5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=159&L_PAYMENTREQUEST_0_NAME1=Spray+habitat+purifiant+et+assainissant%2C+aux+21+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Ce+m%C3%A9lange+de+21+huiles+essentielles+assainit%2C+pur...&L_PAYMENTREQUEST_0_AMT1=11.2&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=721&L_PAYMENTREQUEST_0_NAME2=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC2=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT2=-0&L_PAYMENTREQUEST_0_QTY2=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=14.7&PAYMENTREQUEST_0_AMT=20.70&ADDROVERRIDE=1&EMAIL=dylanrollat%40gmail.com&PAYMENTREQUEST_0_SHIPTONAME=Dylan+ROLLAT&PAYMENTREQUEST_0_SHIPTOPHONENUM=0760212900&PAYMENTREQUEST_0_SHIPTOSTREET=5+rue+des+Halles&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Mulhouse&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=68100 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=117.37&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=49.37&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.74&PAYMENTREQUEST_0_AMT=166.74&ADDROVERRIDE=1&EMAIL=marc.lec%40skynet.be&PAYMENTREQUEST_0_SHIPTONAME=marc+leclercq&PAYMENTREQUEST_0_SHIPTOPHONENUM=0032495511832&PAYMENTREQUEST_0_SHIPTOSTREET=8+route+de++bavay&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=genly&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d5N881281R1794041Y&TIMESTAMP=2016%2d07%2d31T22%3a23%3a46Z&CORRELATIONID=b2b863dbb521&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=117.37&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=49.37&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.74&PAYMENTREQUEST_0_AMT=166.74&ADDROVERRIDE=1&EMAIL=marc.lec%40skynet.be&PAYMENTREQUEST_0_SHIPTONAME=marc+leclercq&PAYMENTREQUEST_0_SHIPTOPHONENUM=0032495511832&PAYMENTREQUEST_0_SHIPTOSTREET=8+route+de++bavay&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=genly&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7040&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5N881281R1794041Y -Result : TOKEN=EC%2d5N881281R1794041Y&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d07%2d31T22%3a25%3a05Z&CORRELATIONID=24ff423f23b0&ACK=Success&VERSION=106&BUILD=000000&EMAIL=marc%2elec%40skynet%2ebe&PAYERID=G32B73NK5YSJQ&PAYERSTATUS=verified&FIRSTNAME=marc&LASTNAME=leclercq&COUNTRYCODE=BE&SHIPTONAME=marc%20leclercq&SHIPTOSTREET=8%20route%20de%20bavay&SHIPTOCITY=genly&SHIPTOZIP=7040&SHIPTOCOUNTRYCODE=BE&SHIPTOPHONENUM=0032495511832&SHIPTOCOUNTRYNAME=Belgium&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=166%2e74&ITEMAMT=166%2e74&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%20%2d%20ProtectGuard%205L&L_NAME1=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%2d%20ProtectGuard%202L&L_NUMBER0=9&L_NUMBER1=8&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=117%2e37&L_AMT1=49%2e37&L_DESC0=Stop%20aux%20infiltrations%2c%20taches%20et%20salissures%20sur%20u%2e%2e%2e&L_DESC1=Stop%20aux%20infiltrations%20et%20salissures%20sur%20sols%20et%20t%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=166%2e74&PAYMENTREQUEST_0_ITEMAMT=166%2e74&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=marc%20leclercq&PAYMENTREQUEST_0_SHIPTOSTREET=8%20route%20de%20bavay&PAYMENTREQUEST_0_SHIPTOCITY=genly&PAYMENTREQUEST_0_SHIPTOZIP=7040&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOPHONENUM=0032495511832&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=Belgium&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%20%2d%20ProtectGuard%205L&L_PAYMENTREQUEST_0_NAME1=Anti%20taches%20sols%20poreux%2c%20mat%c3%a9riaux%20poreux%2d%20ProtectGuard%202L&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=117%2e37&L_PAYMENTREQUEST_0_AMT1=49%2e37&L_PAYMENTREQUEST_0_DESC0=Stop%20aux%20infiltrations%2c%20taches%20et%20salissures%20sur%20u%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Stop%20aux%20infiltrations%20et%20salissures%20sur%20sols%20et%20t%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5N881281R1794041Y - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5N881281R1794041Y&PAYERID=G32B73NK5YSJQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=117.37&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=49.37&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.74&PAYMENTREQUEST_0_AMT=166.74&ADDROVERRIDE=1&EMAIL=marc.lec%40skynet.be&PAYMENTREQUEST_0_SHIPTONAME=marc+leclercq&PAYMENTREQUEST_0_SHIPTOPHONENUM=0032495511832&PAYMENTREQUEST_0_SHIPTOSTREET=8+route+de++bavay&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=genly&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7040 -Result : TOKEN=EC%2d5N881281R1794041Y&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d07%2d31T22%3a25%3a08Z&CORRELATIONID=81642b22c503&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1GN42892DK428540X&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d07%2d31T22%3a25%3a07Z&PAYMENTINFO_0_AMT=166%2e74&PAYMENTINFO_0_FEEAMT=5%2e92&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-5N881281R1794041Y&PAYERID=G32B73NK5YSJQ&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=9&L_PAYMENTREQUEST_0_NAME0=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux+-+ProtectGuard+5L&L_PAYMENTREQUEST_0_DESC0=Stop+aux+infiltrations%2C+taches+et+salissures+sur+u...&L_PAYMENTREQUEST_0_AMT0=117.37&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=8&L_PAYMENTREQUEST_0_NAME1=Anti+taches+sols+poreux%2C+mat%C3%A9riaux+poreux-+ProtectGuard+2L&L_PAYMENTREQUEST_0_DESC1=Stop+aux+infiltrations+et+salissures+sur+sols+et+t...&L_PAYMENTREQUEST_0_AMT1=49.37&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=166.74&PAYMENTREQUEST_0_AMT=166.74&ADDROVERRIDE=1&EMAIL=marc.lec%40skynet.be&PAYMENTREQUEST_0_SHIPTONAME=marc+leclercq&PAYMENTREQUEST_0_SHIPTOPHONENUM=0032495511832&PAYMENTREQUEST_0_SHIPTOSTREET=8+route+de++bavay&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=genly&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=BE&PAYMENTREQUEST_0_SHIPTOZIP=7040 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=annickallemand%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Annick+ALLEMAND&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608215531&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+Chambr%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+JEAN+D%27ILLAC&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33127&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d57324786TD574263D&TIMESTAMP=2016%2d08%2d01T08%3a27%3a47Z&CORRELATIONID=3157cb9863da3&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=annickallemand%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Annick+ALLEMAND&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608215531&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+Chambr%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+JEAN+D%27ILLAC&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33127&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-57324786TD574263D -Result : TOKEN=EC%2d57324786TD574263D&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d08%2d01T08%3a28%3a42Z&CORRELATIONID=e8adfe248fc6d&ACK=Success&VERSION=106&BUILD=000000&EMAIL=annick%2eallemand%40orange%2efr&PAYERID=CBGQAHRFGB8JS&PAYERSTATUS=verified&FIRSTNAME=Annick&LASTNAME=Allemand&COUNTRYCODE=FR&SHIPTONAME=%20Annick%20ALLEMAND&SHIPTOSTREET=40%20rue%20de%20Chambr%c3%a8re&SHIPTOCITY=SAINT%20JEAN%20D%27ILLAC&SHIPTOSTATE=FR&SHIPTOZIP=33127&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0608215531&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=25%2e90&ITEMAMT=19%2e90&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_NUMBER0=5&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=19%2e90&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=25%2e90&PAYMENTREQUEST_0_ITEMAMT=19%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20Annick%20ALLEMAND&PAYMENTREQUEST_0_SHIPTOSTREET=40%20rue%20de%20Chambr%c3%a8re&PAYMENTREQUEST_0_SHIPTOCITY=SAINT%20JEAN%20D%27ILLAC&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33127&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608215531&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Spray%20anti%20taches%20pour%20tissu%20ou%20cuir%20400ml%20%2d%20TEXGUARD%20A%c3%a9rosol&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=19%2e90&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-57324786TD574263D - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-57324786TD574263D&PAYERID=CBGQAHRFGB8JS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=annickallemand%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Annick+ALLEMAND&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608215531&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+Chambr%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+JEAN+D%27ILLAC&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33127 -Result : TOKEN=EC%2d57324786TD574263D&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d08%2d01T08%3a28%3a46Z&CORRELATIONID=e1263be4af348&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1U129041059753445&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d08%2d01T08%3a28%3a44Z&PAYMENTINFO_0_AMT=25%2e90&PAYMENTINFO_0_FEEAMT=1%2e13&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-57324786TD574263D&PAYERID=CBGQAHRFGB8JS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=5&L_PAYMENTREQUEST_0_NAME0=Spray+anti+taches+pour+tissu+ou+cuir+400ml+-+TEXGUARD+A%C3%A9rosol&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=19.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=19.9&PAYMENTREQUEST_0_AMT=25.90&ADDROVERRIDE=1&EMAIL=annickallemand%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Annick+ALLEMAND&PAYMENTREQUEST_0_SHIPTOPHONENUM=0608215531&PAYMENTREQUEST_0_SHIPTOSTREET=40+rue+de+Chambr%C3%A8re&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=SAINT+JEAN+D%27ILLAC&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=33127 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=176&L_PAYMENTREQUEST_0_NAME3=Comprim%C3%A9+Destructeur+de+graisses&L_PAYMENTREQUEST_0_DESC3=Votre+objectif%C2%A0%3A+attaquer+les+4+signes+visibles+de...&L_PAYMENTREQUEST_0_AMT3=8.49&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.78&PAYMENTREQUEST_0_AMT=29.78&ADDROVERRIDE=1&EMAIL=puci27%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+FOUQUET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635942420&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Jacques+Pr%C3%A9vert&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST-PIERRE+DU+BOSGUERARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=27370&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7AH198882M399972U&TIMESTAMP=2016%2d08%2d01T09%3a05%3a23Z&CORRELATIONID=93e4eb1b6c634&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=176&L_PAYMENTREQUEST_0_NAME3=Comprim%C3%A9+Destructeur+de+graisses&L_PAYMENTREQUEST_0_DESC3=Votre+objectif%C2%A0%3A+attaquer+les+4+signes+visibles+de...&L_PAYMENTREQUEST_0_AMT3=8.49&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.78&PAYMENTREQUEST_0_AMT=29.78&ADDROVERRIDE=1&EMAIL=puci27%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+FOUQUET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635942420&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Jacques+Pr%C3%A9vert&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST-PIERRE+DU+BOSGUERARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=27370&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7AH198882M399972U -Result : TOKEN=EC%2d7AH198882M399972U&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d08%2d01T09%3a05%3a54Z&CORRELATIONID=3d6ccfa668aec&ACK=Success&VERSION=106&BUILD=000000&EMAIL=puci27%40orange%2efr&PAYERID=RDDLCUFX79QXU&PAYERSTATUS=verified&FIRSTNAME=Laurence&LASTNAME=FOUQUET&COUNTRYCODE=FR&SHIPTONAME=Laurence%20FOUQUET&SHIPTOSTREET=13%20rue%20Jacques%20Pr%c3%a9vert&SHIPTOCITY=ST%2dPIERRE%20DU%20BOSGUERARD&SHIPTOZIP=27370&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0635942420&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=29%2e78&ITEMAMT=23%2e78&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_NAME1=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_NAME2=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_NAME3=Comprim%c3%a9%20Destructeur%20de%20graisses&L_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_NUMBER0=165&L_NUMBER1=163&L_NUMBER2=174&L_NUMBER3=176&L_NUMBER4=721&L_QTY0=1&L_QTY1=1&L_QTY2=1&L_QTY3=1&L_QTY4=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_TAXAMT2=0%2e00&L_TAXAMT3=0%2e00&L_TAXAMT4=0%2e00&L_AMT0=3%2e30&L_AMT1=3%2e50&L_AMT2=8%2e49&L_AMT3=8%2e49&L_AMT4=0%2e00&L_DESC0=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_DESC1=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_DESC2=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&L_DESC3=Votre%20objectif%c2%a0%3a%20attaquer%20les%204%20signes%20visibles%20de%2e%2e%2e&L_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=29%2e78&PAYMENTREQUEST_0_ITEMAMT=23%2e78&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Laurence%20FOUQUET&PAYMENTREQUEST_0_SHIPTOSTREET=13%20rue%20Jacques%20Pr%c3%a9vert&PAYMENTREQUEST_0_SHIPTOCITY=ST%2dPIERRE%20DU%20BOSGUERARD&PAYMENTREQUEST_0_SHIPTOZIP=27370&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635942420&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Bicarbonate%20de%20soude%20%2d%20un%20produit%20m%c3%a9nager%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME1=Cristaux%20de%20soude%2c%20d%c3%a9graissant%20et%20nettoyant%20multifonction%20pour%20la%20maison&L_PAYMENTREQUEST_0_NAME2=Cocktail%20Kilos%20Tenaces%c2%ae%207%20jours&L_PAYMENTREQUEST_0_NAME3=Comprim%c3%a9%20Destructeur%20de%20graisses&L_PAYMENTREQUEST_0_NAME4=Pack%20Peindre%20sur%20du%20papier%20peint&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NUMBER3=176&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_QTY4=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_TAXAMT2=0%2e00&L_PAYMENTREQUEST_0_TAXAMT3=0%2e00&L_PAYMENTREQUEST_0_TAXAMT4=0%2e00&L_PAYMENTREQUEST_0_AMT0=3%2e30&L_PAYMENTREQUEST_0_AMT1=3%2e50&L_PAYMENTREQUEST_0_AMT2=8%2e49&L_PAYMENTREQUEST_0_AMT3=8%2e49&L_PAYMENTREQUEST_0_AMT4=0%2e00&L_PAYMENTREQUEST_0_DESC0=Le%20bicarbonate%20de%20soude%c2%a0est%20un%20produit%20m%c3%a9nager%20%c3%a9co%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Super%20nettoyant%20multifonction%c2%a0pour%20maison%20au%20natur%2e%2e%2e&L_PAYMENTREQUEST_0_DESC2=Riposter%20%c3%a9nergiquement%20contre%20vos%20kilos%20incrust%c3%a9s%2c%2e%2e%2e&L_PAYMENTREQUEST_0_DESC3=Votre%20objectif%c2%a0%3a%20attaquer%20les%204%20signes%20visibles%20de%2e%2e%2e&L_PAYMENTREQUEST_0_DESC4=Pack%20Peindre%20sur%20du%20papier%20peint%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7AH198882M399972U - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7AH198882M399972U&PAYERID=RDDLCUFX79QXU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=176&L_PAYMENTREQUEST_0_NAME3=Comprim%C3%A9+Destructeur+de+graisses&L_PAYMENTREQUEST_0_DESC3=Votre+objectif%C2%A0%3A+attaquer+les+4+signes+visibles+de...&L_PAYMENTREQUEST_0_AMT3=8.49&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.78&PAYMENTREQUEST_0_AMT=29.78&ADDROVERRIDE=1&EMAIL=puci27%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+FOUQUET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635942420&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Jacques+Pr%C3%A9vert&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST-PIERRE+DU+BOSGUERARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=27370 -Result : TOKEN=EC%2d7AH198882M399972U&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d08%2d01T09%3a05%3a58Z&CORRELATIONID=baf7d775cfe8e&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=1JG607771D287410V&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d08%2d01T09%3a05%3a57Z&PAYMENTINFO_0_AMT=29%2e78&PAYMENTINFO_0_FEEAMT=1%2e26&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7AH198882M399972U&PAYERID=RDDLCUFX79QXU&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=165&L_PAYMENTREQUEST_0_NAME0=Bicarbonate+de+soude+-+un+produit+m%C3%A9nager+pour+la+maison&L_PAYMENTREQUEST_0_DESC0=Le+bicarbonate+de+soude%C2%A0est+un+produit+m%C3%A9nager+%C3%A9co...&L_PAYMENTREQUEST_0_AMT0=3.3&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=163&L_PAYMENTREQUEST_0_NAME1=Cristaux+de+soude%2C+d%C3%A9graissant+et+nettoyant+multifonction+pour+la+maison&L_PAYMENTREQUEST_0_DESC1=Super+nettoyant+multifonction%C2%A0pour+maison+au+natur...&L_PAYMENTREQUEST_0_AMT1=3.5&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_NUMBER2=174&L_PAYMENTREQUEST_0_NAME2=Cocktail+Kilos+Tenaces%C2%AE+7+jours&L_PAYMENTREQUEST_0_DESC2=Riposter+%C3%A9nergiquement+contre+vos+kilos+incrust%C3%A9s%2C...&L_PAYMENTREQUEST_0_AMT2=8.49&L_PAYMENTREQUEST_0_QTY2=1&L_PAYMENTREQUEST_0_NUMBER3=176&L_PAYMENTREQUEST_0_NAME3=Comprim%C3%A9+Destructeur+de+graisses&L_PAYMENTREQUEST_0_DESC3=Votre+objectif%C2%A0%3A+attaquer+les+4+signes+visibles+de...&L_PAYMENTREQUEST_0_AMT3=8.49&L_PAYMENTREQUEST_0_QTY3=1&L_PAYMENTREQUEST_0_NUMBER4=721&L_PAYMENTREQUEST_0_NAME4=Pack+Peindre+sur+du+papier+peint&L_PAYMENTREQUEST_0_DESC4=Pack+Peindre+sur+du+papier+peint...&L_PAYMENTREQUEST_0_AMT4=-0&L_PAYMENTREQUEST_0_QTY4=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=23.78&PAYMENTREQUEST_0_AMT=29.78&ADDROVERRIDE=1&EMAIL=puci27%40orange.fr&PAYMENTREQUEST_0_SHIPTONAME=Laurence+FOUQUET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0635942420&PAYMENTREQUEST_0_SHIPTOSTREET=13+rue+Jacques+Pr%C3%A9vert&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=ST-PIERRE+DU+BOSGUERARD&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=27370 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=jean.guillon2%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+guillon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0467519653&PAYMENTREQUEST_0_SHIPTOSTREET=81+impasse+la+catalane&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=meze&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d3UL41223K53499314&TIMESTAMP=2016%2d08%2d01T15%3a42%3a24Z&CORRELATIONID=44025021738ca&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=jean.guillon2%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+guillon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0467519653&PAYMENTREQUEST_0_SHIPTOSTREET=81+impasse+la+catalane&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=meze&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34140&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UL41223K53499314 -Result : TOKEN=EC%2d3UL41223K53499314&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d08%2d01T15%3a42%3a56Z&CORRELATIONID=fc2d2bb23997a&ACK=Success&VERSION=106&BUILD=000000&EMAIL=jean%2eguillon2%40free%2efr&PAYERID=Q2R9ASAXA9EDS&PAYERSTATUS=verified&FIRSTNAME=marie%20josephe&LASTNAME=guillon&COUNTRYCODE=FR&SHIPTONAME=%20jean%20guillon&SHIPTOSTREET=81%20impasse%20la%20catalane&SHIPTOCITY=meze&SHIPTOSTATE=FR&SHIPTOZIP=34140&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0467519653&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=21%2e10&ITEMAMT=15%2e10&SHIPPINGAMT=6%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_NUMBER0=207&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=15%2e10&L_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=21%2e10&PAYMENTREQUEST_0_ITEMAMT=15%2e10&PAYMENTREQUEST_0_SHIPPINGAMT=6%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=%20jean%20guillon&PAYMENTREQUEST_0_SHIPTOSTREET=81%20impasse%20la%20catalane&PAYMENTREQUEST_0_SHIPTOCITY=meze&PAYMENTREQUEST_0_SHIPTOSTATE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34140&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0467519653&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Produit%20anti%20insectes%20en%20toute%20saison%20%2d%20Vapo%20m%c3%a9ga%20500ml&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=15%2e10&L_PAYMENTREQUEST_0_DESC0=Produit%20anti%2dinsectes%2c%20insecticide%20efficace%20en%20tou%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UL41223K53499314 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UL41223K53499314&PAYERID=Q2R9ASAXA9EDS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=jean.guillon2%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+guillon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0467519653&PAYMENTREQUEST_0_SHIPTOSTREET=81+impasse+la+catalane&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=meze&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34140 -Result : TOKEN=EC%2d3UL41223K53499314&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d08%2d01T15%3a42%3a59Z&CORRELATIONID=626e169247bd8&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=4BN97900T7978694H&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d08%2d01T15%3a42%3a59Z&PAYMENTINFO_0_AMT=21%2e10&PAYMENTINFO_0_FEEAMT=0%2e97&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-3UL41223K53499314&PAYERID=Q2R9ASAXA9EDS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=207&L_PAYMENTREQUEST_0_NAME0=Produit+anti+insectes+en+toute+saison+-+Vapo+m%C3%A9ga+500ml&L_PAYMENTREQUEST_0_DESC0=Produit+anti-insectes%2C+insecticide+efficace+en+tou...&L_PAYMENTREQUEST_0_AMT0=15.1&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=6.00&PAYMENTREQUEST_0_ITEMAMT=15.1&PAYMENTREQUEST_0_AMT=21.10&ADDROVERRIDE=1&EMAIL=jean.guillon2%40free.fr&PAYMENTREQUEST_0_SHIPTONAME=jean+guillon&PAYMENTREQUEST_0_SHIPTOPHONENUM=0467519653&PAYMENTREQUEST_0_SHIPTOSTREET=81+impasse+la+catalane&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=meze&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=34140 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=160&L_PAYMENTREQUEST_0_NAME1=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.85&PAYMENTREQUEST_0_AMT=51.85&ADDROVERRIDE=1&EMAIL=nouria57190%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=nouria+douida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672621146&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+de+la+pepiniere&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=florange&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57190&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d8M055851YD6784041&TIMESTAMP=2016%2d08%2d01T16%3a14%3a50Z&CORRELATIONID=5b73b0dd96c3b&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=160&L_PAYMENTREQUEST_0_NAME1=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.85&PAYMENTREQUEST_0_AMT=51.85&ADDROVERRIDE=1&EMAIL=nouria57190%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=nouria+douida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672621146&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+de+la+pepiniere&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=florange&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57190&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8M055851YD6784041 -Result : TOKEN=EC%2d8M055851YD6784041&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d08%2d01T16%3a15%3a21Z&CORRELATIONID=1620cf17ad723&ACK=Success&VERSION=106&BUILD=000000&EMAIL=nouria57190%40hotmail%2efr&PAYERID=S83DRXGE4SEU4&PAYERSTATUS=verified&FIRSTNAME=djamel&LASTNAME=douida&COUNTRYCODE=FR&SHIPTONAME=NOURIA%20DOUIDA&SHIPTOSTREET=4%20IMPASSE%20DE%20LA%20PEPINIERE&SHIPTOCITY=FLORANGE&SHIPTOZIP=57190&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0672621146&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=51%2e85&ITEMAMT=51%2e85&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_NAME1=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_NUMBER0=4&L_NUMBER1=160&L_QTY0=1&L_QTY1=1&L_TAXAMT0=0%2e00&L_TAXAMT1=0%2e00&L_AMT0=45%2e90&L_AMT1=5%2e95&L_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_DESC1=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=51%2e85&PAYMENTREQUEST_0_ITEMAMT=51%2e85&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=NOURIA%20DOUIDA&PAYMENTREQUEST_0_SHIPTOSTREET=4%20IMPASSE%20DE%20LA%20PEPINIERE&PAYMENTREQUEST_0_SHIPTOCITY=FLORANGE&PAYMENTREQUEST_0_SHIPTOZIP=57190&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672621146&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Imperm%c3%a9abilisant%20anti%20taches%20tissu%2d%20TEXGUARD%20%2d%20lot%20de%203%20A%c3%a9rosols&L_PAYMENTREQUEST_0_NAME1=Spray%20moustiques%20citronnelle%2c%20aux%207%20huiles%20essentielles%20bio&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NUMBER1=160&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_QTY1=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_TAXAMT1=0%2e00&L_PAYMENTREQUEST_0_AMT0=45%2e90&L_PAYMENTREQUEST_0_AMT1=5%2e95&L_PAYMENTREQUEST_0_DESC0=TexGuard%c2%ae%c2%a0imperm%c3%a9abilise%20et%20prot%c3%a8ge%c2%a0des%20taches%20et%20%2e%2e%2e&L_PAYMENTREQUEST_0_DESC1=Vaporis%c3%a9%20sur%20votre%20corps%20ou%20dans%20l%27atmosph%c3%a8re%2c%20ce%20%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8M055851YD6784041 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8M055851YD6784041&PAYERID=S83DRXGE4SEU4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=160&L_PAYMENTREQUEST_0_NAME1=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.85&PAYMENTREQUEST_0_AMT=51.85&ADDROVERRIDE=1&EMAIL=nouria57190%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=nouria+douida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672621146&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+de+la+pepiniere&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=florange&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57190 -Result : TOKEN=EC%2d8M055851YD6784041&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d08%2d01T16%3a15%3a25Z&CORRELATIONID=591233e7c6bb8&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=8Y244556VD005020U&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d08%2d01T16%3a15%3a24Z&PAYMENTINFO_0_AMT=51%2e85&PAYMENTINFO_0_FEEAMT=2%2e01&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Eligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=ItemNotReceivedEligible%2cUnauthorizedPaymentEligible&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-8M055851YD6784041&PAYERID=S83DRXGE4SEU4&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=4&L_PAYMENTREQUEST_0_NAME0=Imperm%C3%A9abilisant+anti+taches+tissu-+TEXGUARD+-+lot+de+3+A%C3%A9rosols&L_PAYMENTREQUEST_0_DESC0=TexGuard%C2%AE%C2%A0imperm%C3%A9abilise+et+prot%C3%A8ge%C2%A0des+taches+et+...&L_PAYMENTREQUEST_0_AMT0=45.9&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_NUMBER1=160&L_PAYMENTREQUEST_0_NAME1=Spray+moustiques+citronnelle%2C+aux+7+huiles+essentielles+bio&L_PAYMENTREQUEST_0_DESC1=Vaporis%C3%A9+sur+votre+corps+ou+dans+l%27atmosph%C3%A8re%2C+ce+...&L_PAYMENTREQUEST_0_AMT1=5.95&L_PAYMENTREQUEST_0_QTY1=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=51.85&PAYMENTREQUEST_0_AMT=51.85&ADDROVERRIDE=1&EMAIL=nouria57190%40hotmail.fr&PAYMENTREQUEST_0_SHIPTONAME=nouria+douida&PAYMENTREQUEST_0_SHIPTOPHONENUM=0672621146&PAYMENTREQUEST_0_SHIPTOSTREET=4+impasse+de+la+pepiniere&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=florange&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=57190 - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=48&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.9&PAYMENTREQUEST_0_AMT=54.90&ADDROVERRIDE=1&EMAIL=line.poiret%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Line+POIRET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0601016657&PAYMENTREQUEST_0_SHIPTOSTREET=22+rue+circulaire+Henri+Jousseaume&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villemomble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf -Result : TOKEN=EC%2d7JJ53030L5561120A&TIMESTAMP=2016%2d08%2d02T07%3a05%3a50Z&CORRELATIONID=4919a53e48892&ACK=Success&VERSION=106&BUILD=000000 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=SetExpressCheckout&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&CANCELURL=https%3A%2F%2Fwww.toutpratique.com%2Fboutique%2Fcommande%2F%3Fpaypal_ec_canceled%3D1%26step%3Dorder&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=48&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.9&PAYMENTREQUEST_0_AMT=54.90&ADDROVERRIDE=1&EMAIL=line.poiret%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Line+POIRET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0601016657&PAYMENTREQUEST_0_SHIPTOSTREET=22+rue+circulaire+Henri+Jousseaume&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villemomble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93250&SOLUTIONTYPE=Sole&LANDINGPAGE=Login&USER=contact_api1.toutpratique.com&PWD=AXLLCYBCAL4KCCFN&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7JJ53030L5561120A -Result : TOKEN=EC%2d7JJ53030L5561120A&BILLINGAGREEMENTACCEPTEDSTATUS=0&CHECKOUTSTATUS=PaymentActionNotInitiated&TIMESTAMP=2016%2d08%2d02T07%3a08%3a44Z&CORRELATIONID=e08decb469b4&ACK=Success&VERSION=106&BUILD=000000&EMAIL=line%2epoiret%40hotmail%2ecom&PAYERID=SEZBB5W5TH5PS&PAYERSTATUS=unverified&FIRSTNAME=Line&LASTNAME=POIRET&COUNTRYCODE=FR&SHIPTONAME=Line%20POIRET&SHIPTOSTREET=22%20rue%20circulaire%20Henri%20Jousseaume&SHIPTOCITY=Villemomble&SHIPTOZIP=93250&SHIPTOCOUNTRYCODE=FR&SHIPTOPHONENUM=0601016657&SHIPTOCOUNTRYNAME=France&ADDRESSSTATUS=Confirmed&CURRENCYCODE=EUR&AMT=54%2e90&ITEMAMT=54%2e90&SHIPPINGAMT=0%2e00&HANDLINGAMT=0%2e00&TAXAMT=0%2e00&INSURANCEAMT=0%2e00&SHIPDISCAMT=0%2e00&INSURANCEOPTIONOFFERED=false&L_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Lin%2012kg&L_NUMBER0=48&L_QTY0=1&L_TAXAMT0=0%2e00&L_AMT0=54%2e90&L_DESC0=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_AMT=54%2e90&PAYMENTREQUEST_0_ITEMAMT=54%2e90&PAYMENTREQUEST_0_SHIPPINGAMT=0%2e00&PAYMENTREQUEST_0_HANDLINGAMT=0%2e00&PAYMENTREQUEST_0_TAXAMT=0%2e00&PAYMENTREQUEST_0_INSURANCEAMT=0%2e00&PAYMENTREQUEST_0_SHIPDISCAMT=0%2e00&PAYMENTREQUEST_0_SELLERPAYPALACCOUNTID=contact%40toutpratique%2ecom&PAYMENTREQUEST_0_INSURANCEOPTIONOFFERED=false&PAYMENTREQUEST_0_SHIPTONAME=Line%20POIRET&PAYMENTREQUEST_0_SHIPTOSTREET=22%20rue%20circulaire%20Henri%20Jousseaume&PAYMENTREQUEST_0_SHIPTOCITY=Villemomble&PAYMENTREQUEST_0_SHIPTOZIP=93250&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOPHONENUM=0601016657&PAYMENTREQUEST_0_SHIPTOCOUNTRYNAME=France&PAYMENTREQUEST_0_ADDRESSSTATUS=Confirmed&L_PAYMENTREQUEST_0_NAME0=Enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%20Magic%27Pierre%20coloris%20Lin%2012kg&L_PAYMENTREQUEST_0_NUMBER0=48&L_PAYMENTREQUEST_0_QTY0=1&L_PAYMENTREQUEST_0_TAXAMT0=0%2e00&L_PAYMENTREQUEST_0_AMT0=54%2e90&L_PAYMENTREQUEST_0_DESC0=Magic%e2%80%99Pierre%20est%20un%20enduit%20de%20d%c3%a9coration%20int%c3%a9rieur%2e%2e%2e&PAYMENTREQUESTINFO_0_ERRORCODE=0 -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=GetExpressCheckoutDetails&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7JJ53030L5561120A - [4] => Send with CURL method successful -) -Host : api-3t.paypal.com -Request : METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7JJ53030L5561120A&PAYERID=SEZBB5W5TH5PS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=48&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.9&PAYMENTREQUEST_0_AMT=54.90&ADDROVERRIDE=1&EMAIL=line.poiret%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Line+POIRET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0601016657&PAYMENTREQUEST_0_SHIPTOSTREET=22+rue+circulaire+Henri+Jousseaume&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villemomble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93250 -Result : TOKEN=EC%2d7JJ53030L5561120A&SUCCESSPAGEREDIRECTREQUESTED=false&TIMESTAMP=2016%2d08%2d02T07%3a08%3a48Z&CORRELATIONID=c9bd095089b7f&ACK=Success&VERSION=106&BUILD=000000&INSURANCEOPTIONSELECTED=false&SHIPPINGOPTIONISDEFAULT=false&PAYMENTINFO_0_TRANSACTIONID=0BF26437AC981393C&PAYMENTINFO_0_RECEIPTID=4247961151474093&PAYMENTINFO_0_TRANSACTIONTYPE=cart&PAYMENTINFO_0_PAYMENTTYPE=instant&PAYMENTINFO_0_ORDERTIME=2016%2d08%2d02T07%3a08%3a46Z&PAYMENTINFO_0_AMT=54%2e90&PAYMENTINFO_0_FEEAMT=2%2e12&PAYMENTINFO_0_TAXAMT=0%2e00&PAYMENTINFO_0_CURRENCYCODE=EUR&PAYMENTINFO_0_PAYMENTSTATUS=Completed&PAYMENTINFO_0_PENDINGREASON=None&PAYMENTINFO_0_REASONCODE=None&PAYMENTINFO_0_PROTECTIONELIGIBILITY=Ineligible&PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE=None&PAYMENTINFO_0_SECUREMERCHANTACCOUNTID=26HHW3F34EP34&PAYMENTINFO_0_ERRORCODE=0&PAYMENTINFO_0_ACK=Success -Logs : Array -( - [0] => Making new connection to 'api-3t.paypal.com/nvp' - [1] => Connect with CURL method successful - [2] => Sending this params: - [3] => METHOD=DoExpressCheckoutPayment&VERSION=106&PWD=AXLLCYBCAL4KCCFN&USER=contact_api1.toutpratique.com&SIGNATURE=AFcWxV21C7fd0v3bYYYRCpSSRl31AN77TSfMYqymndItFnF.yjQu5ZSf&TOKEN=EC-7JJ53030L5561120A&PAYERID=SEZBB5W5TH5PS&RETURNURL=https%3A%2F%2Fwww.toutpratique.com%2Fmodules%2Fpaypal%2Fexpress_checkout%2Fpayment.php&NOSHIPPING=1&BUTTONSOURCE=PRESTASHOP_EC&L_PAYMENTREQUEST_0_NUMBER0=48&L_PAYMENTREQUEST_0_NAME0=Enduit+de+d%C3%A9coration+int%C3%A9rieur+Magic%27Pierre+coloris+Lin+12kg&L_PAYMENTREQUEST_0_DESC0=Magic%E2%80%99Pierre+est+un+enduit+de+d%C3%A9coration+int%C3%A9rieur...&L_PAYMENTREQUEST_0_AMT0=54.9&L_PAYMENTREQUEST_0_QTY0=1&PAYMENTREQUEST_0_PAYMENTACTION=Sale&PAYMENTREQUEST_0_CURRENCYCODE=EUR&PAYMENTREQUEST_0_SHIPPINGAMT=0.00&PAYMENTREQUEST_0_ITEMAMT=54.9&PAYMENTREQUEST_0_AMT=54.90&ADDROVERRIDE=1&EMAIL=line.poiret%40hotmail.com&PAYMENTREQUEST_0_SHIPTONAME=Line+POIRET&PAYMENTREQUEST_0_SHIPTOPHONENUM=0601016657&PAYMENTREQUEST_0_SHIPTOSTREET=22+rue+circulaire+Henri+Jousseaume&PAYMENTREQUEST_0_SHIPTOSTREET2=&PAYMENTREQUEST_0_SHIPTOCITY=Villemomble&PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE=FR&PAYMENTREQUEST_0_SHIPTOZIP=93250 - [4] => Send with CURL method successful -)