KevinR Posted March 30, 2014 Share Posted March 30, 2014 It's not dead. See here: https://bitbucket.org/Doctor_McKay/blockchain.info-whmcs-payment-gateway/issue/5/bitcoin-payment-gateway-not-working This post? https://bitbucket.org/Doctor_McKay/blockchain.info-whmcs-payment-gateway/issue/5/bitcoin-payment-gateway-not-working#comment-9132662 Or where do you download the new package? 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted May 6, 2014 Share Posted May 6, 2014 I have just integrated blockchain payment gateway. But QR code is not loading on invoice. PLEASE HELP 0 Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted May 19, 2014 Author Share Posted May 19, 2014 It doesn't appear that I'm receiving emails when a post is added to this thread. The gateway should work as of the newest update. If you want to report an issue, please use the issue tracker, where I will receive a notification. 0 Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted May 28, 2014 Author Share Posted May 28, 2014 Good night! I installed the addon, I set everything right, but in time to pay the bills and pick blockchain.info, is reported the following error: "An error has occurred, please contact Billing or choose a different payment method (Error ID: 2. ) "Could someone help me? I thank you for your attention and promptness. It seems that that error is caused by Blockchain.info returning an unknown response. Can you try again and make sure you're up to date? 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted June 11, 2014 Share Posted June 11, 2014 Your new update is awesome. Fix QR code issue and callback as well. I have donated a little of $5 at 1McKayQNGaKdkoJnhSLWHEtWW8t9hDpan4 I uploaded latest update from Download repository But there are some files which i have not understand but even it works perfect. Below are the files. For that they are? ---------------- .hg_archival .hgignore .hgtags --------------------- It seems that that error is caused by Blockchain.info returning an unknown response. Can you try again and make sure you're up to date? 0 Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted June 12, 2014 Author Share Posted June 12, 2014 Your new update is awesome. Fix QR code issue and callback as well. I have donated a little of $5 at 1McKayQNGaKdkoJnhSLWHEtWW8t9hDpan4 I uploaded latest update from Download repository But there are some files which i have not understand but even it works perfect. Below are the files. For that they are? ---------------- .hg_archival .hgignore .hgtags --------------------- Thanks for the donation! You don't need any of the .hg files. 0 Quote Link to comment Share on other sites More sharing options...
Dedigeeks-Sean Posted July 21, 2014 Share Posted July 21, 2014 When we select "Shared Wallet" it gives an error to contact billing with Error Code 1 - how to resolve this one? 0 Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted July 22, 2014 Author Share Posted July 22, 2014 When we select "Shared Wallet" it gives an error to contact billing with Error Code 1 - how to resolve this one? [ATTACH=CONFIG]6970[/ATTACH] Blockchain.info has disabled their shared wallet service. Don't use the shared wallet option as it will cause all payments to fail. 0 Quote Link to comment Share on other sites More sharing options...
bungeebones Posted August 8, 2014 Share Posted August 8, 2014 I am doing something where I will be using testnet coin on a permanent basis and also bitcoin. I ended up with an installation of each version on their own VPS in what amounts to my own gateway. One install will process payments in Bitcoin and the other processes payments in testcoin. I just briefly looked at the code of the Blockchain api but it looks like I'd be able to find a point where the payment is confirmed and, after which time, it interacts with WHMCS to process the payment. If so, would it be practical to eliminate all the blockchain confirmation and address generation and just use this mod as a hook into WHMCS for mine instead? It looks like the /modules/gateways/callback/blochchain.php does all the work of getting the approval to WHMCS but I haven't jumped into it yet. I was just wondering if anyone had some thoughts on the whole approach I'm taking. Like I said, I really need testnet as much as Bitcoin and I don't see blockchain would do the same processing for testnet. And if I do the custom approach for one coin I have it done for the other too. I would have to set up each coin as its own currency I think (and I think I have that configured) and then only allow certain groups or packages to be paid with each. Anyway, any thoughts? 0 Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted August 9, 2014 Author Share Posted August 9, 2014 I am doing something where I will be using testnet coin on a permanent basis and also bitcoin. I ended up with an installation of each version on their own VPS in what amounts to my own gateway. One install will process payments in Bitcoin and the other processes payments in testcoin. I just briefly looked at the code of the Blockchain api but it looks like I'd be able to find a point where the payment is confirmed and, after which time, it interacts with WHMCS to process the payment. If so, would it be practical to eliminate all the blockchain confirmation and address generation and just use this mod as a hook into WHMCS for mine instead? It looks like the /modules/gateways/callback/blochchain.php does all the work of getting the approval to WHMCS but I haven't jumped into it yet. I was just wondering if anyone had some thoughts on the whole approach I'm taking. Like I said, I really need testnet as much as Bitcoin and I don't see blockchain would do the same processing for testnet. And if I do the custom approach for one coin I have it done for the other too. I would have to set up each coin as its own currency I think (and I think I have that configured) and then only allow certain groups or packages to be paid with each. Anyway, any thoughts? Honestly, I think you're barking up the wrong tree. If you want to process any digital currencies that aren't Bitcoin, you won't be able to use Blockchain.info, and that's all this module expects. If you want the documentation for building your own module, it's available here. 0 Quote Link to comment Share on other sites More sharing options...
bungeebones Posted August 9, 2014 Share Posted August 9, 2014 Hi Dr. Yes, I realize that Blockchain won't process anything other than Bitcoin (I thought I had stated that :-( ) . Re: "If you want the documentation for building your own module, it's available here. ", I was hoping someone could tell me the places in this code where it departs from parsing the incoming data from Blockchain via the httpcallback to begin inserting it into WHMCS. I think I may have found it and, from the surface anyway, it looks like just a couple of functions that insert it all into WHMCS. I'm not sure if you are following me or not ... I have my own ability to know when a transaction is processed enough on the blockchain to begin inputting it into a customer's account in my own accounting system (I don't need Blockchain.info nor Coinbase). And that is true for Bitcoin, testcoin or any other alt coin in the future that I would want to host their blockchain node for. In it's current operation I have it giving credit after 1 confirmation (so they can use the feature) and then archive it and move the coins to cold storage after 3 confirmations. I would probably do something similar when issuing hosting. So after 1 confirmation I would want to signal WHMCS in whatever way the module already does so they can go on their merry way and get their package (after all, if more confirmations don't ever come in I can cancel it). As I said above, initially, it looks like it is just two small functions that do that but I do appreciate the link to building a module. You are correct, it will be a new one but also will very similar to the existing ones for Coinbase and Blockchain.info except it will be for those parsing their own blockchain data. - - - Updated - - - PS. I received WHMCS as part of my hosting package and the link you sent requires that I register, which then requires me to "purchase" a WHMCS subscription so it looks like I need to jump through some hoops to access the instructions even. Hmmm, I'm feeling such a warm wonderful welcoming feeling to the WHMCS community already! 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted August 22, 2014 Share Posted August 22, 2014 My callback stopped working. Invoice marked paid stopped working. Is there any minimum confirmation required to set? Currently i have set 3 0 Quote Link to comment Share on other sites More sharing options...
webpoint Posted October 12, 2014 Share Posted October 12, 2014 Is this module reliable? 0 Quote Link to comment Share on other sites More sharing options...
ADz83 Posted October 17, 2014 Share Posted October 17, 2014 Is there any advantages of this module over Bitpays module? 0 Quote Link to comment Share on other sites More sharing options...
mhramos Posted October 17, 2014 Share Posted October 17, 2014 Hello, QR code is not loading in the invoice. Any help? 0 Quote Link to comment Share on other sites More sharing options...
m107 Posted December 4, 2014 Share Posted December 4, 2014 I moved my whmcs to a new server yesterday and since then customers see this error when they choose Bitcoin for payments: An error has occurred, please contact Billing or choose a different payment method. (Error ID: 2) 0 Quote Link to comment Share on other sites More sharing options...
SystemIP Posted December 19, 2014 Share Posted December 19, 2014 please help v1_2_0 not work. Error Unsuccessful: Invalid amount received v1_3_0 Transaction amount too low. Please try another payment method or open a ticket with Billing. Thank you. 0 Quote Link to comment Share on other sites More sharing options...
m107 Posted December 20, 2014 Share Posted December 20, 2014 please help v1_2_0 not work. Error Unsuccessful: Invalid amount received v1_3_0 Transaction amount too low. Please try another payment method or open a ticket with Billing. Thank you. I stopped using this module due to no support. 0 Quote Link to comment Share on other sites More sharing options...
SystemIP Posted December 20, 2014 Share Posted December 20, 2014 I stopped using this module due to no support. Hi, please tell me other modules for BTC Thk. 0 Quote Link to comment Share on other sites More sharing options...
m107 Posted December 20, 2014 Share Posted December 20, 2014 Hi, please tell me other modules for BTCThk. Use Bitpay WHMCS module. 0 Quote Link to comment Share on other sites More sharing options...
SystemIP Posted December 20, 2014 Share Posted December 20, 2014 Thank you, i now check other module. 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted March 10, 2015 Share Posted March 10, 2015 Hello, It stopped working. give error "Transaction amount too low. Please try another payment method or open a ticket with Billing." Please help. Thanks for the donation! You don't need any of the .hg files. 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted March 10, 2015 Share Posted March 10, 2015 Ok thanks it worked after update. But i would like to know why previous one suddenly stopped working? 0 Quote Link to comment Share on other sites More sharing options...
hosticon Posted March 10, 2015 Share Posted March 10, 2015 When we edit the invoice amount the qr code and address does not get refreshed and shows old amount 0 Quote Link to comment Share on other sites More sharing options...
OssiBaba Posted March 17, 2015 Share Posted March 17, 2015 All configuration are right and its done but its giving these error when some one using blockchain as a payment gateway. "Transaction amount too low. Please try another payment method or open a ticket with Billing." Or An error has occurred, please contact Billing or choose a different payment method. (Error ID: 1) 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.