7.2 - I have tried legacy API key. I have also tried both encrypted and non-encrypted access tokens. None of the three work.
7.2 - I have tried legacy API key. I have also tried both encrypted and non-encrypted access tokens. None of the three work. |
Honestly I don't understand how this gets no replies. |
Please could you be more descriptive what exactly isn't working for you ? do you get any error messages ? screenshots ? Rules → http://www.boonex.com/terms |
http://prntscr.com/b3g0x9 - boonex settings |
Hello http://prntscr.com/b3g0x9 - boonex settings Looks like everything was set correctly. In this case BitPay should behave the same as PayPal, you should be redirected to BitPay page to confirm the payment. I recommend you to check log file which can be found in tmp/bx_payment_bp.log If some problems appeared you should be able to find more info about them in the log file. If it won't help contact us and we'll investigate the issue. |
I have the exact same problem as the original poster put in the API from Bitpay and nothing works. You press the button and it does nothing. |
I have the exact same problem as the original poster put in the API from Bitpay and nothing works. You press the button and it does nothing. I recommend you to check log file which can be found in tmp/bx_payment_bp.log If some problems appeared you should be able to find more info about them in the log file. Rules → http://www.boonex.com/terms |
with the exception of .htaccess, there are no files in ~/tmp/ |
Hello with the exception of .htaccess, there are no files in ~/tmp/ If Dolphin doesn't redirect you from Shopping Cart to BitPay then some error appeared during initialization of BitPay service. The error should be saved in log file in [dolphin_root]/tmp/ folder if nothing was changed in the code. So, try to check permissions for tmp folder. And if it won't help you may provide us with the access info for investigation. |
Well I am 1000% certain there is nothing wrong with the install considering zarconia both installed and updated my software for me, and its a default install. The permissions as one would expect ~/tmp are 755 ie drwxr-xr-x however I will for sake of arguement get nathan to check it for me.
|
According to Nathan there is nothing wrong with the permissions, and equally there was never anything changed in the code. There are no errors - and I tend to think its not working on any 7.2 install |
Please upgrade to the latest version and then try again There are no errors - and I tend to think its not working on any 7.2 install
Rules → http://www.boonex.com/terms |
Is there no way to apply a patch for bitpay to work with 7.2? |
It was many fixes in payments, so it's not easy up apply these upgrades. I would suggest to upgrade to 7.3, but you have to sacrifice MoxieManager. Is there no way to apply a patch for bitpay to work with 7.2?
Rules → http://www.boonex.com/terms |
I am running 7.3 but BitPay is not taking into account the currency on my site. It came back and told me that I had exceeded my limits. Not surprising as instead of GBP 25 it tried to process BTC 25! What coukld I have got wrong? |
Sorted!
In BxPmtBitPay.php, Line 309: $this->aBpOptions['currency'] = 'BTC'; Replace with $this->aBpOptions['currency'] = $this->_oConfig->getCurrencyCode();
Now my site uses the default currency to calculate Bitcoin prices. |
Thank you @Custheyder for sharing. We'll consider adding it the version. Rules → http://www.boonex.com/terms |
Hello Yes, in BxPmtBitPay.php file, line 314 we have $this->aBpOptions['currency'] = 'BTC'; but it is just initialization. The Currency is changed to site's default currency in BxPmtBitPay::initializeCheckout method, which is called before payment processing. |