Forum Replies Created
-
AuthorPosts
-
alexgKeymaster
Internal transactions (i.e. those that are not deposits or withdrawals) can be cancelled by an admin. Cancelling a transaction makes it no longer affect user balances, but the details of the transaction remain. If you wish to delete a transaction altogether, you can delete it from the database.
Hope this answers your question.
kind regards
alexgKeymasterIf you have the latest version (1.3.4) of the faucet extension then there is no reason why the countdown would not show.
If the captcha is displayed, and if there are no JavaScript errors in your console, then the timer should be displayed. You can disabling the other plugins just to test if there is any incompatibility with another plugin that you use.
Additionally, you can email me some credentials to login and have a look at your DOM.
I will be able to determine if the countdown markup is rendered in your HTML and if it is hidden by some CSS or some other means.
kind regards
alexgKeymasterHello,
The path is normally not needed. It would only be relevant in very special circumstances if the API has been mapped to a URL path. You should leave it empty.
The wallet passphrase should match whatever you have set as your walletpassphrase when you encrypted your wallet. You only need to set this if you want to enable withdrawals, and only if you have encrypted your wallet (you should).
To connect to a remote wallet, you first need to make sure that your firewalls are configured correctly on both ends. If they are not, you will get connection timeouts which will slow down your site.
You must also do ssh tunneling (see https://en.bitcoin.it/wiki/Enabling_SSL_on_original_client_daemon) to make sure that communication is secured. It has been requested of me to add instruction on how to do this but I have not had the time to attempt it myself. So I cannot provide instructions. This is a question better suited to the Bitcoin core wallet developers.
You might also want to look at ways to maintain an SSL tunnel open. This is more of a sysadmin question, so have a look here: https://superuser.com/questions/37738/how-to-reliably-keep-an-ssh-tunnel-open
Eventually I do hope to be able to provide more assistance on this. I will provide some instructions in the manual when time permits.
I do hope that I have at least pointed you in the right direction. Do let me know if you have more questions.
kind regards
alexgKeymasterHello again,
You can now set the originator address and name more easily in the admin section, in version
3.3.1
of the plugin.You can find the option in Admin → Wallets → Notifications → Notification settings for ALL events. This also affects e-mail confirmations.
regards
alexgKeymasterHello,
This is now addressed in 3.3.1. In your email templates you can now use the value
###CREATED_TIME_LOCAL###
instead of###CREATED_TIME###
.regards
alexgKeymasterHello,
You can use USDT in version 1.0.3 of the CoinPayments adapter.
regards!
alexgKeymasterHello,
Thanks for providing a detailed description of the issue. Your funds are safe in your wallet, it’s just that they were not credited to that WordPress user in the DB.
1. You have verified that the IPN endpoint is accessible from your browser, but it also has to be accessible from CoinPayments. If you are filtering IPs by geolocation on your site then that could be one problem.
2. A security plugin could be blocking the IPN message. If this is a test site, you could try to disable your security plugins and try again. If the message works this time, this means that your security plugins need configuring.
3. You say that the IPN message was not sent. If you open up the details of the message in your CoinPayments account there might be more information there. Go again to the IPN history, find the message with status = 100 and click on the date/time on the left hand side. This will open the details of that message and there might be an error message there. If there is, please share it with me so we can figure out what happened.
You do not need to test with real crypto, you can test the mechanism with LTCT to make sure that everything works as expected. You can initiate Litecoin testnet deposits from here: http://testnet.litecointools.com/ The IPN mechanism is exactly the same for all coins.
Please keep me updated.
kind regards
AlexalexgKeymasterHello,
This is intentional.
I am not sure the plugin would work with some wallets offered by CoinPayments so I’ve left them out.
I will have to review whether USDT could work and maybe re-enable it if it does.
regards
alexgKeymasterHi, the plugin sends emails with the
wp_mail()
function. So you could to follow the instructions given here:You could hook into the filters
wp_mail_from
andwp_mail_from_name
somewhere in yourfunctions.php
. Here’s how to do this:https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from
The above will affect all email sent with
wp_mail()
from your site.I will make a note to make it easier to set an originator for the plugin via an admin option in the next release.
kind regards
alexgKeymasterOK, can you please tell me two things?
1. Does the problem persist if you switch to a standard theme such as twenty seventeen?
2. Are there any errors in your JavaScript console? You can open up the console by hitting the F12 key.
Unfortunately there is no separate shortcode for the timer, it is bundled together with the claim function.
alexgKeymasterThanks I will investigate.
alexgKeymasterIn version 1.3.4 you can now set the reward probability percentage to four decimal places. 0.0001% corresponds to a chance of 1 in a million.
alexgKeymasterYes, you are correct. Will do!
alexgKeymasterHello,
yes I was also thinking about that. I will make a note to add it.
thanks
alexgKeymasterHello,
After a successful claim a countdown timer is displayed already.
Does it not show in your installation?
If you inspect the DOM, there should be something like:
<div class="countdown-container"> <span class="text">You can claim again in:</span> <span class="countdown" data-nextclaim="1525351232">00:00:59</span> </div>
Perhaps your theme is preventing it from being displayed?
-
AuthorPosts