kenrichman
Forum Replies Created
-
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Search box errorsThe search box is no longer draggable.
If I go back to using ACEIDE, it’s fine, but if I switch to WPIDE then the search box cannot be moved.There is a small issue with the dark mode reskin – the insert point is not where the cursor is but about 3 characters to the right.
This is great, I was looking for this. Am I right that WPIDE runs on the ACE editor? ( Ace website ) – If so then I understand there are already 24 colour themes built in. Can these be accessed by adding some settings?
I don’t think you should assume every call to the authenticate filter is in the context of a form and needs to call the captcha routine. The way I see it, you are protecting some plugins at the expense of breaking others. But what would fix it would be a separate function that authenticates a password/username without any attempt to login. Do you know of such?
Hi Adam
I added the filter and you are correct this is the cause of the problem, however I am not keen on your solution, which is for me to add something to my plugin to get around a problem with yours. There is no need to run a captcha when the user is not logging in, it’s simply a password verification.
Diagnostics email has been sent
The plugin (WPdirectdebit) is still in development so you won’t find a copy. I have posted the line of code. I will send you the diagnostics report as requested.
You’ll need to have an account and be logged in to test this even with the URL.Forum: Fixing WordPress
In reply to: plus symbol (+) in email addresses are stripped outTweaking WordPress core functions is not an option with a plugin intended for widespread distribution.
WordPress allows users to log in with either their email address or their username, this suggests an intention to treat them similarly, if not quite interchangably.
Online shoppers are used to registering with their email address and not having to remember a separate username for each account. Therefore usernames need to include the subset of characters allowed in email addresses.
What is it about the ‘+’ symbol considered dangerous?
Forum: Plugins
In reply to: [AceIDE] PHP CompatibilityWell that’s interesting; I used to use WPIDE and then support was dropped and someone posted a similar message to yours recommending ACEIDE (a fork of WPIDE), so around we go.
Stu, you didn’t find the solution, you found a way to hide the problem.
It isn’t a PHP version issue it’s an issue with WordPress 5.7
Find:
wp_localize_script( ‘handle’, ‘object_name’, ‘l10n_culprit_string’ );Change to:
wp_localize_script( ‘handle’, ‘object_name’, array( ‘l10n_culprit_string’ ) );
- This reply was modified 4 years ago by kenrichman.
- This reply was modified 4 years ago by kenrichman.
Forum: Plugins
In reply to: [FB GoCardless Hosted for Gravity Forms] Quarterly DonationsThis plugin has no configuration options,so you’d need to dive into the code and set up your own API calls.
Forum: Plugins
In reply to: [AceIDE] No support for anonymous functions in PHPPost the code with the ‘error’. Pretty sure I have used AceIDE with anonymous functions.
It’s working now thanks
I still have this issue though strangely one image does appear, others do not. It is an issue with Firefox but not Chrome, do you see the same issue if you use Firefox?