Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dynamoeffects

Pioneers
  • Posts

    1,635
  • Joined

  • Last visited

About dynamoeffects

  • Birthday March 24

Profile Information

Recent Profile Visitors

41,545 profile views

dynamoeffects's Achievements

  1. Hello,

    I am using OSCommerce V2.2 and PayPal Payflow Pro for osCommerce 2.2MS2+. I have saved the correct credentials of paypal manager account (i.e. Partner, User, Password) even thou while trying to pay via credit card it is showing error as "Account configuration issue. Please verify your login credentials.".

    Please help.

    Steve

     

    error-checkout-via-creditcard.png

    payflow-pro-module.png

    1. Show previous comments  2 more
    2. dynamoeffects

      dynamoeffects

      I don't work with osc anymore and haven't kept up with module development so I couldn't recommend an alternative.

    3. stevebhatnagar
    4. MrPhil

      MrPhil

      PayPal has undergone many changes since osC 2.2MS2 was released, and I wouldn't be surprised if it simply doesn't work any more on such an ancient code base. Is there something keeping you from upgrading to the current 2.3.4.1BS "Frozen" (community-supported) release? Migrating your data over isn't painless, but getting up to date on your code base will make things much easier going forward.

  2. Never mind. I found it and I bought it. If you can, please post this commercial upgrade on your profile. I have avoided getting any one-page checkout, but coming from you, DONE! I already purchased ... THANK YOU! AGAIN!

  3. Hi Brian, I've been using your PayPal WPP for years now, THANK YOU!, and I have read some posts that you have developed a one-page checkout. Please point me to that contrib. I can't find it. Many thanks, Tom Heibel, Sticky Pod

  4. You post about navigation problem is perfect! it solved the problem correctly!

    Thanks!

  5. It sounds like cURL isn't working on your server. Contact your host's support channel and make sure that cURL is installed and accessible from your account.
  6. For anyone else with the same database update issue as kymation, the code to do a manual database update can be found here: http://wiki.github.com/DynamoEffects/Freightquote.com-for-osCommerce/manual-database-update
  7. No MVS support just yet, but it will eventually be added.
  8. This is the support thread for the official Freightquote.com shipping module. The module can be downloaded here: http://addons.oscommerce.com/info/7364 Please report all bugs and feature requests at GitHub: http://github.com/Dy...-for-osCommerce
  9. @Monkeybrain: http://www.oscommerce.com/forums/index.php?showtopic=28405&view=findpost&p=1285347
  10. Ok in that code I sent you earlier to email you the details of the transaction, change "STORE_OWNER_EMAIL_ADDRESS" to just your email address so that it looks like: tep_mail(STORE_OWNER, '[email protected]', 'PayPal DoDirectPayment Transaction', "Request: " . $this->last_data . "\r\n\r\n" . "Response:" . print_r($final_req, true), STORE_OWNER, '[email protected]'); If that still doesn't work, your spam filter might be catching it. If so use a mailinator.com address like: [email protected] and check it by going to www.mailinator.com
  11. It's just a warning that it's checking the value of a GET variable that doesn't exist. It doesn't affect the behavior of the module. Are you testing this on the Cardinal Centinel sandbox or on their live server?
  12. It was just a thought, it shouldn't have any direct relevance on that specific behavior. If the payment completed, that means that it received a "Success" response but why it wasn't recorded, I'm not sure. Setting "Only Accept Chargeback Protected Orders" to "No" means that cards which are eligible but not enrolled in SecureCode or Verified by Visa are not accepted since they won't be covered by the chargeback protection. I'd need to see the request/response from your DoDirectPayment call. Find this line: $final_req = $this->wpp_execute_transaction('doDirectPayment', $order_info); and below it add this: tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'PayPal DoDirectPayment Transaction', "Request: " . $this->last_data . "\r\n\r\n" . "Response:" . print_r($final_req, true), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); Then attempt the exact same transaction you did before with the incorrect address. You'll receive an email containing the details of that transaction that you'll need to clean to remove any sensitive information and then send to me on PM.
  13. @col_b: Set "Cardinal Centinel: Only Accept Chargeback Protected Orders" to true in the module's settings.
  14. Two big issues I note right off the bat: 1) Why is there no transaction ID? Is the transaction being recorded as successful? 2) Check your currency values in the admin. If either of them are zero, that would explain why you have no order total amount.
  15. Glen, since your fix is now confirmed to work I'm going to revert the URL escaping portion back to your code and then release a new version.
×
×
  • Create New...