peterjabu
Forum Replies Created
-
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Downloads not available for not logged-in usersHi Han
Thanks for the message. Are you referring to the pro or free version? I checked the code for free and seems to be good although in pro there were some issues around thi – fixed
It will be on the next update
If you can just confirm the full path to the file so I can make sureThanks
PeteForum: Plugins
In reply to: [Free Downloads WooCommerce] Fatal Error Vers. 3.6.1perfect thanks for letting me know.
Have a great day
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Fatal Error Vers. 3.6.1Hi @xamad
This is solved now, WordPress is now serving the right files – please update and let me know 😀
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Fatal Error Vers. 3.6.1The issue is because we renamed a file from “Includes” to “includes” and wordpress is not changing this. We need to do it for our new settings framework so a little fustrating.
I have emailed them to get it resolved.I did check and was not getting the fatal error, saying this – we have added some checks to work with both in 3.6.2
Can you update and let me know?
ThanksForum: Plugins
In reply to: [Frontend Reset Password] Some security features neededHi @locker17
- The plugin currently accepts both email addresses and usernames, not ONLY emails.
- No built-in rate limiting.
I will look at adding this in the near future. In the meantime you could use our developer hooks: https://docs.wpenhanced.com/frontend-reset-password/faq/#what-hooks-are-available
1) Something like thisadd_action( 'somfrp_post_request', 'restrict_reset_to_email_only', 40 );
function restrict_reset_to_email_only( $action ) {
if ( 'somfrp_lost_pass' !== $action ) {
return;
}
$user_info = isset( $_POST['somfrp_user_info'] ) ? trim( $_POST['somfrp_user_info'] ) : '';
// Check if it's NOT an email
if ( ! empty( $user_info ) && ! is_email( $user_info ) ) {
$_REQUEST['errors'] = array(
'email_only' => __( 'Please enter a valid email address.', 'frontend-reset-password' )
);
// Prevent further processing by removing the default handler temporarily
remove_action( 'somfrp_post_request', 'somfrp_lost_pass_handler', 50 );
}
}2) More complicated then above but we have some hooks
somfrp_post_request, somfrp_lost_pass_action, lostpassword_post
It is hard for me to support custom code but will look at implementing this for youForum: Plugins
In reply to: [Frontend Reset Password] Error during setup@p42webdev and for others interested. We have released a version 1.3.3 that uses ajax call instead of REST which security plugins might block.
Works nowForum: Plugins
In reply to: [Frontend Reset Password] Error during setupSorry I was just trying to get this solved as quick as possible. I will not ask for admin logins again. Let me try debug more locally to try replicate this and get a fix
- This reply was modified 2 months ago by peterjabu.
Forum: Plugins
In reply to: [Frontend Reset Password] Error during setupBefore I release a fix for your case – can you download the file here: https://we.tl/t-3LnE3Tox51
Then upload to: wp-content\plugins\frontend-reset-password\includes\settings\organization\wp-enhanced\rest-endpoints\class-rest-endpoint.php
If it works, Ill release an update
Forum: Plugins
In reply to: [Frontend Reset Password] Error during setupdoes your user role allow you to manage posts? I added in security “manage_posts” and it’s blocking you
Forum: Plugins
In reply to: [Frontend Reset Password] Error during setupSorry. Srange. I did some tests and works for me.
Don’t worry, it won’t effect your site unless you save the empty setting
In the console do you get an error?
Forum: Plugins
In reply to: [Frontend Reset Password] Error during setuphey @p42webdev Implemented a fix to use our own REST API rather than WP
Please update to1.3.1and let me know, it has the fix