Jump to content
thirty bees forum

michael

Members
  • Posts

    119
  • Joined

  • Last visited

Everything posted by michael

  1. Hello, Have anyone MAC and can test it with Firefox? I noticed some problem with MAC users. I need use some VM to test, but maybe some of you have MAC and can test.
  2. I would be nice if you could add this feature to stripe: https://stripe.com/docs/recipes/sending-emails-for-failed-payments
  3. Hello, There is a news from Stripe: Strong Customer Authentication is a new European regulation coming into effect on September 14, 2019, which will require additional authentication for many online payments. You can learn more about SCA and the latest regulatory requirements in our guide, or in our upcoming webinar on March 27, 2019. Read our guide to learn more about what to expect from SCA March 19, 2019 source: https://stripe.com/blog/strong-customer-authentication-mar-2019 https://stripe.com/guides/strong-customer-authentication similar thing is regards Paypal and other payment gateways: https://www.paypal.com/uk/webapps/mpp/psd2 added: Currently, the most common way of authenticating an online card payment relies on 3D Secure—an authentication standard supported by the vast majority of European cards. Applying 3D Secure typically adds an extra step after the checkout where the cardholder is prompted by their bank to provide additional information to complete a payment (e.g., a one-time code sent to their phone or fingerprint authentication through their mobile banking app). 3D Secure 2—the new version of the authentication protocol rolling out in 2019—will be the main method for authenticating online card payments and meeting the new SCA requirements. This new version introduces a better user experience that will help minimise some of the friction that authentication adds into the checkout flow. Other card-based payment methods such as Apple Pay or Google Pay already support payment flows with a built-in layer of authentication (biometric or password). These can be a great way for businesses to offer a frictionless checkout experience while meeting the new requirements. https://stripe.com/guides/strong-customer-authentication?utm_campaign=scamar2019&utm_source=blog&utm_medium=stub I don't see the modul support 3d secure 2. https://stripe.com/guides/3d-secure-2 Will you add support for 3d secure 2? Some more info: VISA and MasterCard will be mandating that the new version of 3D Secure (version 2.0) should be in place for issuers and merchants by April 2019 in preparation for the mass adoption in September 2019. https://www.barclaycard.co.uk/business/news-and-insights/guide-to-strong-customer-authentication
  4. Hello this problem is known in Paypal, not only in TB but albo in Presta. The workaround it comment the line when the Paypal module send info about address to Paypal. Sometimes Paypal try to validate some real address and think that is a fake address. I had such situations with some customers in USA. When I read right the newest Paypal module don't send via API addess so it might help in such problems.
  5. I am looking different solution, maybe other payment gateway...
  6. They just wrote that there is API and demo account for developers. From fee perspective and exchange rates there are the best at the market. I will write some info: Business accounts are divided into Freelancer account for 6,99 GBP (or currency equivalent) and Company accounts. For company account we offer 3 different pricing plan. Plan for 25 GBP - the Start plan - will grant you a top up limit of 100,000 GBP (or currency equivalent); the Standard plan for 100 GBP per month refers to a top up limit of up to 1,000,000 GBP and the Professional plan for 1000 GBP has no top up limit. As for additional charges, the Standard delivery fee for a business card is 4,99 GBP and the Express delivery is 11,99 GBP. We also charge a small fee for ATM withdrawals. It's 2% of the withdrawn amount. We do not charge for any transfers, however, when it comes to international payments, the intermediary banks may put a small processing fee on your incoming or outbound payment. These are the only fees you can expect from Revolut. Now they have got a EU banking license. Stripe frauds cost me a lot so I am looking for alternative.
  7. Yes I have ask. For now, our integrations include Xero, FreeAgent, Slack and Zapier but we are working on introducing new integrations and extending our offer. It will be possible to introduce your app of choice via API with our sandbox demo account. You can check it out here: https://revolutdev.github.io/business-api/#demo-account
  8. Hello, Is there any plan to write a revoult payment module? I have checked that instead of stripe disadvantages it capable many bank accounts and interchange bank rates. There is no dispute fees which i very painful if someone use stripe.
  9. @KD is there any other solutions which is worth to consider? Maybe other clusters or solutions? Any workaround for auto increment in Galera?
  10. I want to run my TB on few VPS and use geoDNS. One server in Europe, 2 servers in USA, 4th VPS in Asia. I am looking for a solution how to create it. I know master-slave solution which lesley wrote. Is there anyone have experience with this? I am thinking about Galera cluster MariaDB. Is there anyone who use Galera cluster from MariaDB? I have installed it and imported to Galera but it works very slow. I am wondering if someone is using Galera and can advice. I am wondering if Galera is designed only for HA cluster in e.g 2 local VPS/servers or it could be used with VPS which are in different locations/countries. Is there anyone who have TB in few VPS and can share with his knowledge. How to set up, what do you use etc? Thank you in advance.
  11. I want to build a cluster multi master, not using slave database. Master, slave is quite easy. I am wondering if I am doing something wrong or the database is not optimized for such solutions. I was using a digital ocean but ever installation of clean TB there is take so long. Had you the same experiences? 1GBram 1CPU, but now I need to increase the resources. I am wondering is someone i using Galera and TB. In presta forum I read yes. @lesly do you use few servers for TB? How you manage it? Master-slaves?
  12. Any experience with database clusters? Master-master, multi-master configuration? Galera MariaDB? I am trying use Galera MariaDB but it's so slow or I am doing something wrong.
  13. @lesley https://thirtybees.com/developer-blog/installing-thirty-bees-on-digital-ocean/ I saw that you use Apache, what about nginx? Is there any ngix confirm template? May anyone share it with me? Thank you in advance.
  14. Do you use any management panels? https://ns1.com/pricing#managed which is free for 0,5 M queries or Amazon which is pay as you go. Thank you for article. I want to implement geoIP and multiple VPS. Regards MySQL just add IP or encrypt the connections, any recommendations?
  15. https://thirtybees.com/blog/thirty-bees-scalability/ Great article, thank you for examples. I have a question about technical things: One thing to notice is we did not sync the config directory. The reason for this is because we want the database on the remote server to act as a slave database to that server only, because accessing a slave across a network is just going to cause slowness. We did use the same settings.inc.php from the master server though, we still want the master write database to be seen as the New York City server. In the dbslaveserver.inc.php of both the Singapore and Frankfurt server we have listed the local host database as the slave. This will allow slaved database requests to come from the database on the server, speeding things up. Next what we did was used MySQL replication to replicate the master database from New York City to both of the remote servers. Since we are not getting to technical, one thing I would like to point out is you need to limit your MySQL connections by ip address, you only want known IP addresses to be able to connect to your database. @lesley may you elaborate how you did setup the database? Do you use some panel, like Webmin/Virtualmin or Cpanel or you do it manually? May you send some further details or something to read? Why Cloudflare? not eg. Amazon Route52 or ns1.com? What are benefits? Thank you in advance.
  16. workaround: https://github.com/jessepollak/card/issues/340 https://github.com/jessepollak/card/issues/254 I think select list is more safe to avoid input problems.
  17. Ok thx I have opened a ticked here: https://github.com/jessepollak/card/issues/387
  18. @mdekker is this fix for exp date? https://github.com/thirtybees/stripe/releases/tag/1.4.5
  19. To assume to many characters for card number, it should be a limit up to 16characters Problem with exp date. 1219 / not 12 / 19 Problem occurs only on Firefox mobile browser on mobile phones, not PC. on Firefox PC browser everything works on Chrome PC browser everything works on Firefox mobile browser problems on Chrome mobile browser everything works on Firefox mobile browser I can use space and enter exp date using enter and pay, but it is no user friendly as also nobody know about it.
  20. I was testing with different phones, android and iphones. The problem is with javascript and fields. In firefox I need to use a "space" to have a exp date as 12/19 In other case there is 1219 / which give an error. I am not sure about card numbers but I can put 4242 4242 4242 4242 424 i my opinion there are 3 extra numbers to much for the limit. I though that card numbers have only 16 digits. That problems are only with Firefox on mobile phone. Please install firefox on you mobile and check it by yourself. Do not use a mobile version on Chrome or any PC emulators, just a phone.
  21. make no sense but I was checking it. It gives different results then real phone with Android.
  22. normal chrome mobile? In normal chrome in PC there is a developer tools. in chrome i can not see it
  23. Sure I will do the test, because it is looks tricky. Is there any method to open developer tools for mobile browser on telephone?
  24. Both. I am using old presta modules with presta but also old TB module with TB for testing purposes. It seems like stripe would change something on API. Michael made the original module, I was one of the 1st testers of original module. Now I am trying also to contribute it. I am not sure but the problem could be with the newest version, as for me it make no sense for errors on mobile devices. Is there any method to open developer tools for mobile browser on telephone?
  25. Hello, I have old stripe but I have noticed problems with stripe during usage stripe via mobile phones. I have test iOS and Androids and I can reproduce problems. Unfortunately I can not find a developer tools for mobile browsers. Any solution for that? Regards browsers the works results are for mobile Firebox, for PC Firefox everything is OK. Sometimes there is problem with Chrome. I am not using the newest version but I am wondering if you have made a tests. The problem looks like there is no limit to put 16 numbers for card number. exp date not like 12/19 but 222222 or 1234 / there is no errors on prestashop side or on stripe. Sometimes even numbers are correct there is info.
×
×
  • Create New...