Forum Replies Created
-
AuthorPosts
-
July 16, 2020 at 7:12 am in reply to: I’m getting ready to replace my hacked up monero adapter with yours #8857d3vnu77Participant
Yea, I’ve gotten to step 2, but still getting the errors in the screenshots
Attachments:
You must be logged in to view attached files.July 16, 2020 at 6:38 am in reply to: I’m getting ready to replace my hacked up monero adapter with yours #8855d3vnu77ParticipantThe wallet I have is encrypted already. I have the password for the encrypted wallet. Can we bypass the creation of the new wallet?
July 16, 2020 at 5:27 am in reply to: I’m getting ready to replace my hacked up monero adapter with yours #8853d3vnu77ParticipantYea, so now I see if wants to create the wallet, I need to keep the old wallet, is that possible?
July 16, 2020 at 5:25 am in reply to: I’m getting ready to replace my hacked up monero adapter with yours #8852d3vnu77ParticipantThe website already had a wallet, which is not empty. I see that it was trying to use a wallet called {domain}.org.wallet, so a I made a copy of the original wallet and renamed it it to your convention.
I just switch everything back to the local server to make sure I could get it working that way first…
Seems I’m getting different errors. Now that it accepted my passphrase.
1. Same error on the connect.
2. Wants to createthe wallet n2aa.org.wallet but is getting a 404.
3. The Wallet RPC is saying:2020-Jul-16 00:17:00.023740 WARNING Requested url "/status" is not found 2020-Jul-16 00:17:00.024564 WARNING Requested url "/wallet/create" is not found
I definitely need to keep the same wallet/balances that I had before.
July 16, 2020 at 2:50 am in reply to: I’m getting ready to replace my hacked up monero adapter with yours #8848d3vnu77ParticipantOk, going to be getting into this over the weekend.
I’ve replaced the hacked (2ACoin) monero adapter with the turtlecoin adapter.
I’ve entered my settings and I am getting the following errors: (Check attached screenshots)
it should be noted to start the 2ACoind I used the following command:
./2ACoind --rpc-bind-ip 10.136.18.61 --rpc-bind-port 16666
it should also be noted to start the “wallet-api” I used the following command:
./2acoin-service -w n2aa.org.wallet -p MySecretPass --rpc-password MySecretPass --bind-address 10.136.18.61 --bind-port 17777 --enable-cors "*"
If I run the following code from the webserver:
curl -d '{"jsonrpc":"2.0","id":1,"password":"MySecretPass","method":"getStatus","params":{}}' http://10.136.18.61:17777/json_rpc
I get the following response:
{"id":1,"jsonrpc":"2.0","result":{"blockCount":680636,"knownBlockCount":1,"lastBlockHash":"eb1ba42e17c498afd16db17de473db0860eeead76653121bfc3d0123b32f3435","localDaemonBlockCount":0,"peerCount":0}}
Attachments:
You must be logged in to view attached files.May 8, 2020 at 4:48 pm in reply to: Getting the following error when paying out WCMP Commissions #8286d3vnu77ParticipantIn line 144 of classes/class-wcmp-ledger.php, WCMP is looking for unpaid commissions… by calling:
$unpaid_commission_total = WCMp_Commission::get_commissions_total_data( $args, $vendor->id );
On line 645 of classes/class-wcmp-post-commissions.php in the get_commissions_total_data from above it checks if the commissions have posts, this returns false, which sets unpaid_commission_total from above to null.
if( $commissions->get_posts() ) :
Then back to the previous file, in line 155 of classes/class-wcmp-ledger.php, WCMP tries to set:
$data['balance'] = $unpaid_commission_total['total']
This has not been set however and sets it as null which can not be inserted into the database.
May 8, 2020 at 3:32 am in reply to: Getting the following error when paying out WCMP Commissions #8279d3vnu77ParticipantThe problems seems to lay in the wcmp_transaction_update_meta_data method of WCMP it looks like.
classes\class-wcmp-ledger.phpWhen setting the balance key in the $data array… it can be fixed by changing the line to this:
'balance' => isset($unpaid_commission_total['total'])?$unpaid_commission_total['total']:0,
Should I forward that on to WCMP you think? Or am I not digging into it enough?
d3vnu77ParticipantPaypal & Stripe has restrictions on firearms and related gear.
d3vnu77ParticipantI see, the way I originally was designing this was as strictly a cryptocurrency website, because of the restrictions on the firearms related industry that some payment processors have been making.
However excepting cash would bring a lot more people to the website, if I can find the right payment processor.
d3vnu77ParticipantSo you can use Paypal and Stripe at the same time as your plugin?
d3vnu77ParticipantI just deleted those orders and database moves, all is good. I see what you mean now though. Thanks for the explanation.
d3vnu77ParticipantThe situation is even more pronounced when dealing with what I hope to be a particularly volatile coin for the next 2-3 years.
I guess that is why dark net type business tend to only give out refund only on non-delivery.
April 20, 2020 at 11:33 am in reply to: When attempting to refund LTC from a WCMP Order.. I get insufficient funds error #8167d3vnu77ParticipantAny particular reason you choose WCMP as the marketplace you mentions in the plugin directions? Have you tested with any other vendor marketplace solutions?
April 20, 2020 at 9:48 am in reply to: When attempting to refund LTC from a WCMP Order.. I get insufficient funds error #8162d3vnu77ParticipantHere is the flowchart I’m looking achieve. Looks like I will have to code a bit for this one. It’s late for me here, going to hit the sack.
Let me know if you see anything glaringly wrong with what I’d like to do here. Or improvements, ideas.
Will be using your wallet API to issue refunds via cron jobs I think.
Attachments:
You must be logged in to view attached files.April 20, 2020 at 7:40 am in reply to: When attempting to refund LTC from a WCMP Order.. I get insufficient funds error #8160d3vnu77ParticipantGoing through this info now:
-
AuthorPosts