Jump to content

meimeisi

Members
  • Posts

    42
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

meimeisi's Achievements

Newbie

Newbie (1/14)

6

Reputation

  1. i have done the changes below, everything is fine 1.2.1 First change Find the line : @curl_setopt($ch, CURLOPT_SSLVERSION, 3); Remove this line or you could choose to replace this line with this new line below : @curl_setopt($ch,CURLOPT_SSLVERSION, defined(CURL_SSLVERSION_TLSv1) ? CURL_SSLVERSION_TLSv1 : 1);
  2. i found this link that is quite useful. http://nemops.com/prestashop-paypal-modules-will-stop-working/#.VHyCbMkhdK- Apply the fix yourself
  3. one question, how would i find out if my paypal is USA or EUROPE?
  4. hi, am i fine without upgrading the paypal module but i changed my paypal api as follow, @curl_setopt($ch, CURLOPT_POST, true); @curl_setopt($ch, CURLOPT_POSTFIELDS, $body); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @curl_setopt($ch, CURLOPT_HEADER, false); @curl_setopt($ch, CURLOPT_TIMEOUT, 30); @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); @curl_setopt($ch, CURLOPT_SSLVERSION, 1); @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); @curl_setopt($ch, CURLOPT_VERBOSE, true); Please advise.
  5. my modification @curl_setopt($ch, CURLOPT_POST, true); @curl_setopt($ch, CURLOPT_POSTFIELDS, $body); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @curl_setopt($ch, CURLOPT_HEADER, false); @curl_setopt($ch, CURLOPT_TIMEOUT, 30); @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); @curl_setopt($ch, CURLOPT_SSLVERSION, 1); @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); @curl_setopt($ch, CURLOPT_VERBOSE, true); So far seems ok.
  6. hi i am using PS 1.5.4.1 and there is no update it from paypal module at backoffice. please assist. thank you
  7. That's awesome. However i am afraid of the new bug for new paypal module. So can i check with you if i would be fine to stick with old module with new api content as follows? new code in red. @curl_setopt($ch, CURLOPT_POST, true); @curl_setopt($ch, CURLOPT_POSTFIELDS, $body); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @curl_setopt($ch, CURLOPT_HEADER, false); @curl_setopt($ch, CURLOPT_TIMEOUT, 30); @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); @curl_setopt($ch, CURLOPT_SSLVERSION, 1); @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); @curl_setopt($ch, CURLOPT_VERBOSE, true); It works fine for me. Hope to hear from you soon. Thank you
  8. oh, i forgot to ask if we still need to update our Paypal API credential after the upgrade?
  9. Hi, i have no idea of that. But both of live mode and sandbox mode are working perfectly. I have changed the file as follow (red). Thank you @curl_setopt($ch, CURLOPT_POST, true); @curl_setopt($ch, CURLOPT_POSTFIELDS, $body); @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); @curl_setopt($ch, CURLOPT_HEADER, false); @curl_setopt($ch, CURLOPT_TIMEOUT, 30); @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); @curl_setopt($ch, CURLOPT_SSLVERSION, 1); @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1'); @curl_setopt($ch, CURLOPT_VERBOSE, true);
  10. i tried this earlier but it does not work for my shop.
  11. Cool!! Thanks for the information. I did that too and both live and sandbox test are working. The website could direct me to paypal page for checkout. Thank you so much.
  12. could someone assist for this? thank you.
  13. hi, may i know if there is something i could do? i have modified the "3" to "4" from paypal_connect
  14. Hi, thanks for sharing. I have changed the "3" to "4" from the paypal_connect When i checked out from website as customer after the above modification, i could enter paypal page and proceed with payment as usual. However, when i tested website to check out from sandbox mode, i have issue to pay. It will never lead me to paypal page at all. Is that normal and fine? Because i could still receive payment on Live Mode. Please advise and share with me if there is anything i have missed out during modification. Thank you
  15. i am currently using PS1.5.4 with paypal 3.5.5 could anyone assist how should i manage the setting? thank you so much
×
×
  • Create New...