Joe Schmoe
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityThis code is found in my theme’s functions.php file:
add_filter('authenticate','wp_authenticate_username_password',99,3);Is this possibly the source of my issue?
This code is found in my theme’s functions.php file:
add_filter('authenticate','wp_authenticate_username_password',99,3);Is it possible that is the cause of my issue?
Thanks Matt. I did try your suggestion by turning off that option. It didn’t make a difference unfortunately.
I’ll do some searching for the other hooks you suggested.
Thanks again, I appreciate your help.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityThank you Chad, I really appreciate your personal support for your plugin. Like I said, WP-Members does exactly what I want and I really want to keep it and make it work alongside a security plugin. Possibly it’s an issue with the responsive theme by cyberchimps.
I will keep trying to get this combination to work and let you know if I find the solution.
Thanks againAny advice on what I can look for in the code of WP-Members to see what the conflict might be? Any advice would be appreciated.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityI did also add this code to my theme’s function.php file
if( ! isset( $_POST['wp-submit'] ) ) { add_filter('authenticate','wp_authenticate_username_password',99,3); }But this did not fix the issue.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityMy apologies, I was confusing plugins π
But I searched all the plugins (actually I searched the entire wp-content folder and all sub-folders). Several plugins call “remove_filter”, but none pass a parameter “wp_authenticate_username_password”, or any similar named parameter. And the plugin WordFence Security does not call “remove_filter” at all.
So…does that mean this issue does not apply in my case?
Thanks again Chad.Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityChad,
I searched the plugins folder for anything with remove_filter, and came up with these results for wp-members\wp-content\wp-content\plugins\wp-members\inc\class-wp-members.php (2 hits) Line 881: remove_filter( 'the_content', 'wpautop' ); Line 883: remove_filter( 'the_content', 'wptexturize' ); \wp-content\wp-content\plugins\wp-members\inc\shortcodes.php (4 hits) Line 279: remove_filter( 'the_content', 'wpautop' ); Line 281: remove_filter( 'the_content', 'wptexturize' ); Line 659: remove_filter( 'the_content', 'wpautop' ); Line 661: remove_filter( 'the_content', 'wptexturize' );`
So it doesn’t appear that wp-members is removing the authenticate function. Do you agree?Forum: Plugins
In reply to: [WP-Members Membership Plugin] WP-Members conflict with Wordfence SecurityThanks Chad, I will look into that possible solution and post my results.
JeffWFMattR,
Thanks for the response. No errors on the screen and nothing relevant in the host’s error log.
When both plugins are enabled, the user is presented with a login / register form when they click on a link to a private page. When they attempt to log in, the page basically refreshes – they still see the login page but the username and password are blanked out. If you enter a bad password, you get a message saying that so the login is working to that point.
When I disable WordFence then the login works properly and they are redirected to the private page.
Thanks,
Jeff