I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

d3vnu77

Forum Replies Created

Viewing 15 posts - 76 through 90 (of 100 total)
  • Author
    Posts
  • d3vnu77
    Participant

    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.
    d3vnu77
    Participant

    The wallet I have is encrypted already. I have the password for the encrypted wallet. Can we bypass the creation of the new wallet?

    d3vnu77
    Participant

    Yea, so now I see if wants to create the wallet, I need to keep the old wallet, is that possible?

    d3vnu77
    Participant

    The 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.

    d3vnu77
    Participant

    Ok, 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.
    d3vnu77
    Participant

    In 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.

    d3vnu77
    Participant

    The problems seems to lay in the wcmp_transaction_update_meta_data method of WCMP it looks like.
    classes\class-wcmp-ledger.php

    When 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?

    in reply to: In regards to the refund discussion. #8180
    d3vnu77
    Participant

    Paypal & Stripe has restrictions on firearms and related gear.

    in reply to: In regards to the refund discussion. #8179
    d3vnu77
    Participant

    I 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.

    in reply to: In regards to the refund discussion. #8177
    d3vnu77
    Participant

    So you can use Paypal and Stripe at the same time as your plugin?

    in reply to: In regards to the refund discussion. #8176
    d3vnu77
    Participant

    I just deleted those orders and database moves, all is good. I see what you mean now though. Thanks for the explanation.

    in reply to: In regards to the refund discussion. #8174
    d3vnu77
    Participant

    The 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.

    d3vnu77
    Participant

    Any particular reason you choose WCMP as the marketplace you mentions in the plugin directions? Have you tested with any other vendor marketplace solutions?

    d3vnu77
    Participant

    Here 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.
    d3vnu77
    Participant

    Going through this info now:

    Refunds not being Processed

Viewing 15 posts - 76 through 90 (of 100 total)