dashed-slug.net
Forum Replies Created
-
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedYes, thank you, it is very likely that this is the cause of this particular error.
I will fix it for the next release.
Did you check the login name for your user “Mario”, as discussed above?
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedHello Mario,
Versions 3.1.0 and 3.1.1 addressed the JavaScript error that you encountered. The error that you report here with internal transfers was not addressed, because we have not yet determined the root cause of your error.
Can you please reply to the questions I raised earlier? Namely, did you verify the login name via the WordPress “Users” screens, and NOT your membership plugin?
kind regards
AlexForum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedHello,
Can you please check if this particular JavaScript error is resolved in versions 3.1.0 or 3.1.1?
thank you
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedThe JavaScript error should now be resolved in the latest version 3.1.0 released today.
Can you please check and let me know if the JavaScript error is indeed resolved?
We can then look at the other issue (user not found when sending internal transfer) in the other thread (https://ww.wp.xz.cn/support/topic/wallet-move-operation-failed/).
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedHello,
This is a different issue than the one you posted originally about internal transactions. Can you please do the following?
1. Delete or rename the minified file
wp-content/plugins/wallets/assets/scripts/wallets-bitcoin-validator.min.js. This will enable the unminified version. Then you will get a more meaningful error message in your JavaScript console.2. Please open a new thread about this issue and post the new error message there. I will then be able to determine how to resolve this.
3. If you want to know whether this is an incompatibility with another plugin, simply deactivate that other plugin. If you do come to any conclusion about this, please post it on the new thread.
Thank you
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedYou do not need the legacy API. It is there only for people who have already built components that consume the old JSON API.
1. To check your login name, do not use your membership plugin. Instead go to your admin screens, then “Users”, i.e. go to
/wp-admin/users.php. The members in your membership plugin should correspond to WordPress users. It is there that you can verify if the WordPress user’s login name is indeed “Mario”.2. Does the transfer work when you enter an email?
3. About the other issue with the shortcodes, if the troubleshooting instructions in the documentation were not helpful, please open a new thread. This helps us, but also people who later read the forums.
thank you
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Get Balance via PHPApiThe above changes I discussed have now been implemented.
The preferred way to get a user’s balance is now as in the example given here:
The old way still works but is now deprecated.
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failed1. Are you certain that the user’s login name is
Mariowith a capital M? You can check at the users list in your admin pages. The shortcode will only accept login names or emails, not full names, because these can have duplicates.2. The shortcodes will not display if any of the conditions listed in the troubleshooting section of the documentation are met.
3. Additionally, please let me know if you see any errors in your javascript console.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedHave you checked the troubleshooting section? Please check under “I do not see the UI elements in the frontend.”
Thank you for opening a new thread. This discussion will continue at https://ww.wp.xz.cn/support/topic/wallet-move-operation-failed
I will now close this thread as the original problem that the OP referenced has since been addressed.
Please see my reply at the link above.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedThank you for opening a new thread. Normally this should work.
My guess is that possibly the user is not found if the username includes special characters.
Can you please post the entire error message you get?
Thank you.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Bitcoin wallet app( transfer issue)Hello,
As far as I know there was no error, it’s just that the dropdown was not convenient for a number of reasons.
If you use the latest version 3.0.3 you can now do internal transfers using the login name or email. The
[wallets_move]shortcode has been updated to that effect.Also, this is an old thread and the original problem that the OP mentioned has since been addressed. So I will close this thread.
Can you please open a new thread and describe the problem you encounter in as much detail as possible? Most importantly, please paste the entire error message.
Thank you.
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] 500 Internal Server ErrorHello again,
It seems that the problem was caused due to a slight mistake on my part that only became relevant if another plugin (such as the multilanguage plugin) was triggering redirects.
The issue is now resolved in version 3.0.3.
Can you please check and mark this thread as resolved, if your issue is indeed resolved?
Thank you
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] 500 Internal Server ErrorThank you very much for the additional details you provided.
Since the
.htaccessmodifications did not help you, I would suggest that you revert them, just to be on the safe side. The officially recommended.htaccessfile is here: https://codex.ww.wp.xz.cn/htaccessI have not tested the plugin with any multilanguage plugins, but I believe that some of the users of Bitcoin and Altcoin Wallets are using multilanguage plugins. Not sure which ones, but I never heard any complaints about WPML.
I have planned to test with the plugin you mentioned later today and I will report back any findings.
I will not contact the plugin authors at this time, as I’ve found it’s often faster to interact with code than with people. If I discover a bug in their software then I will definitely report it to them. I first have to eliminate the possibility that it could be an error on my part.
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] 500 Internal Server ErrorThank you for your reply.
Another user had the exact same problem, randomly getting 500 errors when switching to other pages or languages. Strangely enough it turned out to be a misconfiguration of the
.htaccessfile. This was causing a redirect loop at the apache server.Assuming that your .htaccess file looks something like this:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>Could you try to change it to the following and see if this resolves your issue?
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ /index.php/$1 [L,QSA] </IfModule>If this resolves your issue then it means that this was not an isolated incident and I should dig more into this. Ideally you should not have to edit the
.htaccessfile, but if you can, please let me know if this resolves your problem.I will also install that plugin and test.
Please let me know what you find if you try this.
kind regards