Jump to content
thirty bees forum

violinparts

Members
  • Posts

    187
  • Joined

  • Last visited

Everything posted by violinparts

  1. @mdekker is this for the elasticsearch that is readily available in Cloudways? tks.
  2. Hi, I was able to have Amazon Payments module (free from prestashop module site) updated by uploading the latest module. But now it does not work anymore with the most recent Amazon Payments module 2.0.65. Does thirty bees block Amazon Payment module for further uploading? Like it or not, Amazon Payment module is very important these days. The last several weeks. I got more buyers using Amazon Payment module than any other payment method including Paypal. Thanks. violinparts.net
  3. Yes. I did that - used the url exactly in weebhook - stripe dashboard.. I used https initially. I got the error email from Stripe. Then I tried http. I still got error email Stripe. The same email as you see above. So, I wonder if its module error or server error. Cloudways support people say they see no error related to stripe in server log Essentially Striped points to this error: "We’re contacting you because we’re still having trouble delivering data to a webhook endpoint associated with your violinparts.net account in live mode. Webhooks are used to notify your server about events that happen in your Stripe account, such as a payout completing or an invoice being created. The failing webhook endpoint is http://violinparts.net/module/stripe/hook. … We’ve attempted to notify the endpoint 144 times since September 26 at 11:58PM. If this endpoint is important to your application, please try and fix the issue. If you do not need the webhook endpoint you can delete it from your Stripe webhook settings. We will stop sending notifications to your webhook by October 08. This email is the last time we’ll reach out to you before disabling the webhook… "One recent call to your endpoint returned an HTTP status code 500, which signals a server error on your end. You may want to check your system logs to get more information about the error… "
  4. The error from the live mode is the same as error from LIVE mode.
  5. Stripe encourrages you to do test data to test webhook. Clik on viewing test data then create a test mode. click on test, then clock on Send Test Webhook. The error from the live mode is the same as error from test mode. tks.
  6. I did the test in Stripe. for the live mode, I have been getting this email from stripe: "We’re contacting you because we’re still having trouble delivering data to a webhook endpoint associated with your violinparts.net account in live mode. Webhooks are used to notify your server about events that happen in your Stripe account, such as a payout completing or an invoice being created. The failing webhook endpoint is http://violinparts.net/module/stripe/hook. ..... We’ve attempted to notify the endpoint 144 times since September 26 at 11:58PM. If this endpoint is important to your application, please try and fix the issue. If you do not need the webhook endpoint you can delete it from your Stripe webhook settings. We will stop sending notifications to your webhook by October 08. This email is the last time we'll reach out to you before disabling the webhook.... One recent call to your endpoint returned an HTTP status code 500, which signals a server error on your end. You may want to check your system logs to get more information about the error.... " I wonder if it's module error or server error. My hoster - cloudways - says it does not see any error regarding Stripe. Should I use Url with http or https for webhook?
  7. Hi I did webhook test. It shows Test webhook error: 500 Please help how to solve this issue: Request { "created": 1326853478, "livemode": false, "id": "evt00000000000000", "type": "account.externalaccount.created", "object": "event", "request": null, "pendingwebhooks": 1, "apiversion": "2017-08-15", "data": { "object": { "id": "ba00000000000000", "object": "bankaccount", "account": "acct00000000000000", "accountholdername": "Jane Austen", "accountholdertype": "individual", "bankname": "STRIPE TEST BANK", "country": "US", "currency": "usd", "defaultforcurrency": false, "fingerprint": "KD8DJ40MSyBLODeS", "last4": "6789", "metadata": { }, "routing_number": "110000000", "status": "new" } } } Response Test webhook error: 500 Response ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } html { padding: 30px 10px; font-size: 16px; line-height: 1.4; color: #737373; background: #f0f0f0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } html, input { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } body { max-width:600px; _width: 600px; padding: 30px 20px 50px; border: 1px solid #b3b3b3; border-radius: 4px; margin: 0 auto; box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; background: #fcfcfc; } h1 { margin: 0 10px; font-size: 50px; text-align: center; } h1 span { color: #bbb; } h2 { color: #fad629; margin: 0 10px; font-size: 40px; text-align: center; } h2 span { color: #bbb; font-size: 60px; } h3 { margin: 1.5em 0 0.5em; } p { margin: 1em 0; } a { color: #d8b81c; } ul { padding: 0 0 0 40px; margin: 1em 0; } .container { max-width: 380px; _width: 380px; margin: 0 auto; } input::-moz-focus-inner { padding: 0; border: 0; } pre { white-space: pre-wrap; /* Since CSS 2.1 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ width: 400px; } </style> </head> <body> <div class="container"> <h2 id="errorTitle"><span>500</span> Server Error</h2> <p id="errorMessage">Oops, something went wrong.<br /><br />Try to refresh this page or feel free to contact us if the problem persists.</p> <pre><code id="encryptedError"> </div> <script type="text/javascript"> (function() { var encryptedError = document.getElementById('encryptedError'); var previousmessage = encryptedError.innerHTML; var copyBtn = '<a href="javascript:copyAllText();" id="copyError" title="Copy">Copy Error</a><br/>'; window.readAll = function() { encryptedError.innerHTML = copyBtn + '<span id="errorContent">' + previousmessage + '</span>'; }; window.copyAllText = function() { var errorContent = document.getElementById('errorContent'); var range = document.createRange(); range.selectNodeContents(errorContent); var sel = window.getSelection(); sel.removeAllRanges(); sel.addRange(range); try { succeed = document.execCommand("copy"); } catch(e) { succeed = false; } if(succeed) alert('Encrypted error copied!') else alert('Error, try copying manually') } encryptedError.innerHTML = '<a href="javascript:readAll();">' + previousmessage.substring(0, 20) + '...</a>'; var translations = { en: { errorTitle: '<span>500</span> Server Error', errorMessage: 'Oops, something went wrong.<br /><br />Try to refresh this page or feel free to contact us if the problem persists.<br/>Please make sure to expand and include the following error code in your message, so we can help you better:', }, nl: { errorTitle: '<span>500</span> Serverfout', errorMessage: 'Oops, er ging iets mis.<br /><br />Probeer deze pagina te vernieuwen of neem contact op als dit het probleem niet verhelpt.<br/>Om u beter te van dienst te kunnen zijn, kunt u de onderstaande foutcode uitklappen en toevoegen aan uw bericht?', } }; var browserLanguage = window.navigator.userLanguage || window.navigator.language; if (typeof translations[browserLanguage] === 'undefined') { if (typeof translations[browserLanguage.substring(0, 2)] !== 'undefined') { browserLanguage = browserLanguage.substring(0, 2); } else { browserLanguage = 'en'; } } document.getElementById('errorTitle').innerHTML = translations[browserLanguage].errorTitle; document.getElementById('errorMessage').innerHTML = translations[browserLanguage].errorMessage; }()); </script> </body>
  8. hi, webhooks is http of https? Module shows: You can use the following url: http://domainname/module/stripe/hook But website has been enabled to https for all pages. Please help. tks.
  9. Hi, I got this message (see message below) from Stripe regarding problem with webhook indicating trouble delivering data to a webhook endpoint - and suggesting it is a server issue. My server - cloudways - suggested disabling Varnish cache. Is that the correct solution? Anyone can explain and help solve the issue? Thanks Mesage from Stripe payment: "We’re contacting you because we’ve had some trouble delivering data to a webhook endpoint associated with your violinparts.net account in live mode ...." One recent call to your endpoint returned an HTTP status code 500, which signals a server error on your end. You may want to check your system logs to get more information about the error ...."
  10. Lesley, Thanks a lot. No more missing files after uploading "Adapter" folder.
  11. Missing files after migrating site to cloudways Missing files (12) /public_html/Adapter/Adapter_ProductPriceCalculator.php /public_html/Adapter/Adapter_EntityMetaDataRetriever.php /public_html/Adapter/Adapter_Configuration.php /public_html/Adapter/Adapter_ServiceLocator.php /public_html/Adapter/Adapter_StockManager.php /public_html/Adapter/Adapter_Exception.php /public_html/Adapter/Adapter_CacheManager.php /public_html/Adapter/Adapter_Database.php /public_html/Adapter/Adapter_EntityMapper.php /public_html/Adapter/Adapter_PackItemsManager.php /public_html/Adapter/Adapter_AddressFactory.php /public_html/Adapter/Adapter_HookManager.php
  12. If I say this "please put the code in the server block that handles domain" to my hosting support, do you think they will understand? I am no coder at all. Thanks.
  13. where to put this code? I just transferred to Nngix server. tks.
  14. Looks like payment plus is not yet supported in U.S. What a moron!
  15. Hi, Finally it works. The payment standards finally shows up on payment page - only after I disable Website Payments Plus. Lookslike Website Payments Plus ruined it when it is enabled. Thanks!!
  16. This is what I see in live api calls: /v1/payment-experience/web-profiles 27 Aug 2017 03:05:38 /v1/payment-experience/web-profiles/XP-UQYK-SW7M-HJSF-VN9U 27 Aug 2017 03:05:38 /v1/payment-experience/web-profiles/XP-SJ3H-CY2Y-DK75-AUL3 27 Aug 2017 03:05:37 /v1/payment-experience/web-profiles Paypal checkout seems to be working. But - proceed to checkout - on payment page - it simply shows this: "No payment modules have been installed." It seems to be that is the website or module issue rather than issue with connections.
  17. That is exacly why I put it in this forum. Not response from the developer.
  18. I am indeed using REST for this TB site.
  19. I have other websites using presto chango module for presta 1.6 and integrated paypal in ecommercetemplates. I did not say I used that TB module for my other sites. I just said that in those two other sites - paypal walks right from the start - no hiccup whatsoever.
  20. I don't know what. What I know it does not work using TB.
  21. I have been using paypal in my two other sites flawlessly. One in presta 1.6 and another in ecommercetemplates.
×
×
  • Create New...