Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Nick Weisser

Members
  • Posts

    340
  • Joined

  • Last visited

Everything posted by Nick Weisser

  1. Good to hear, please let us know what did the trick?
  2. Please provide more details and/or screenshots of your configuration settings, both of the osCommerce add-on and the PostFinance backoffice.
  3. I've been asked if the PostFinance extension is compatible with osCommerce v2.3.1. Although I have not tested it personally I would say so, because the checkout has not been altered as far as I know. Anyone tried it already?
  4. Here's a list with the PostFinance error messages and why they mean. They are also in the advanced technical documentation.
  5. This means that something is not configured correctly. Please double-check your return URLs. When the customer returns he should land on the checkout success page if payment goes well and the shopping cart should be empty.
  6. According to the PostFinance technical documentation the error unknown order/1/s means: How is "Compose the string to be hashed by concatenating the value of" configured under Global security parameters in PostFinance back office? Please try to change that setting and do another test order. If that does not work either, please contact PostFinance merchant help and ask for help.
  7. Sorry for the late reply. Have you solved your problem? If yes, please let us know how.
  8. No plans so far, but will look into it after v3.0 final has been released.
  9. Cannot see your screenshots, sorry.
  10. I'm not sure why you're having such a hard time setting this up, but I can confirm that I have set this up on dozens of stores without any problems. Maybe you have installed a contribution that is not compatible with the PostFinance module? If you're not a developer, you might want to consider paying someone to get the job done for you.
  11. The unknown order error can have various reasons, please double-check all your call back URLs and your PSPID for the test environment. It might be different from the live PSPID!
  12. You looked in the wrong place. I added a default option to the switch statement, so that it should always put in the English translation. Please download the attached file and retry with that one. Let me know how it goes. No need to PM me every time as I'm notified automatically. postfinance.php.zip
  13. Please check the language ID of your store's default language and change this value in the PostFinance module, then uninstall and re-install the module.
  14. Here's a short screencast that shows the order process with the new osCommerce PostFinance module when a dynamic template is used. This feature is not yet integrated into the addon, but I will upload an updated version asap.
  15. The new module has finally be released as a free community addon: http://addons.oscommerce.com/info/6442
  16. wondering if the updates and fixed for the PayPal IPN module for 2.2 have also been integrated int he current 2.2RC

  17. We have completed development of the new PostFinance module having tested successfully it in the PostFinance test environment and in the live environment. Sponsors can get the module as from today. The module will also be released as a free addon during the next couple of months. We're also working on the same module for osCommerce v3.0, so please stay tuned!
  18. This is the support threat for the new osCommerce PostFinance e-payment module for the new version of the Swiss PostFinance payment gateway that has been released by PostFinance in November 2008. The osCommerce module is still in development and will hopefully be released in the 1st quarter of 2009. A first beta should be available for sponsors by the end of January 2009. We will also be providing a full service for the installation of the module (including pre-inscription with PostFinance) in any osCommerce store for those Swiss merchants that don't want to bother with installing and configuring the module themselves. As the last version of the PostFinance payment module for osCommerce was lacking in coding standards this new version is aiming to bring the module to a superior level by doing everything from scratch. Once this module has been successfully deployed, it will also be ported to the new version 3.0 of osCommerce. The new payment gateway offers more flexiblilty for merchants, because it let's you even customize the payment window (which also will be configurable via osCommerce payment module administration). It also sets higher security standards. Additional information about the PostFinance gateway With the PostFinance account, your customers pay for their purchases directly from their computer or mobile phone. Payments with PostFinance Card or PostFinance e-finance. Features: E-payment: Payment solution and payment methods for online purchases Payment methods: PostFinance Card or PostFinance e-finance Payment via the Internet using a computer or mobile phone Direct debit of the PostFinance account Secure, encrypted data transfer (min. 128 bit) No more need to issue invoices No fixed costs PostFinance Card and PostFinance e-finance are free of charge. You only require a PostFinance business account.
  19. I don't get your question? Can you please rephrase? ...or maybe you meant to ask webboy and not me.
  20. You seem to be using a contribution without naming it, because products_stock is not a default database table. The error message is very specific. The query tries to insert 4 values into the table, but it seems to have more than 4 fields. Try to modify your query like so: insert into products_stock (id, field1, field2, field3) values (0,83,'1-1',5); where id and field1, etc are just placeholders for your real table field names.
  21. Welcome to the osCommerce forums, Ijones! Please provide as much information as possible to your problem. Which information module are you talking about? There are over 4000 modules available so if you don't want us to guess, you need to provide more information! Maybe this knowledge base entry will point you into the right direction: Cannot Add Header Information - Headers Already Sent
  22. If you look at the PHP code you'll notice that the md5 hash is created from the concatenated strings after the equal to sign. Only ONE md5 hash is created, not 4! So if you want to verify with the md5 hash code generator, you need to concatenate all of the strings end then get the md5 hash from this new string. Are you sure you are using the correct shop IDs. If I were you I'd send the HTML code that is generated on the checkout_confirmation.php (or postfinance_process.php) page, i.e. the order form with the hidden fields to PostFinance and ask them if you got the parameters right. Maybe it's just a typo. Cheers, Nick
  23. Hi Brigitte, It might be that some of the weird special characters that PostFinance are using in their hash values are causing this problem. The txtHash value that is transferred is built like so: $txtHash_tosecure = $Shop_ID . $currency . $usedtotal . $Hash_seed; $txtHash = md5($txtHash_tosecure); So one thing you could do to check the correctness of your hash would be to manually calcualte the txtHash value by using either a separate PHP script or a simple calculator in combination with an online md5 hash generator. Then verify the value with the one that is in the hidden field on the checkout_confirmation.php or postfinance_process.php page - depending on what version of the PostFinance payment module you are using. Another approach would be to directly add the hash to the payment module script in /includes/modules/payment/postfinance.php, but if this won't solve the problem you will have to recalculate the txtHash value anyway. Cheers, Nick
  24. You were very close. Just change languages_id to language_id in the same SQL query and you're done. I've just uploaded a fix to the contribution section.
  25. Thanks for your reply, Asulis. Same problem in this part of the code. Your modifications are working if the store is using Postfinance only with no other payment modules activated otherwise the equation of the if statment will never become true and subsequently won't show the process button. I'll try to fix this and upload a new version to the contributions repository. Cheers, Nick
×
×
  • Create New...