Hello, sice a few days my clients can’t access to a special content protect by:
[swpm_protected member_id=”1-2-3″]
(content)
[/swpm_protected]
I can’t understand what’s happening (1-2-3 are the members numbers of the clients should see the protect content)
thank you very much!
]]>Greetings,
I was getting a PHP Warning from login_check.php file:
PHP Warning: Attempt to read property "value" on null in /plugins/accesspress-social-login-lite/inc/frontend/login_check.php on line 514
The solution is to change on line 514 from:
$response->deuid = $user->emails[0]->value;
to
$response->deuid = !empty($user->emails) ? $user->emails[0]->value : $user->email;
Could you please include the change in the future Plugin update? Thank you.
Best regards
]]>Unable to buy premiumum version as I want to have login with Linkedin as well.
]]>Your plugin takes control of wp_new_user_notification() wordpress function.
However, you have not included the filters that wordpress has added to this function to filter the email sent to the customer.
That filter is: wp_new_user_notification_email
https://developer.www.ads-software.com/reference/functions/wp_new_user_notification/
pluggable.php
/**
* Filters the contents of the new user notification email sent to the new user.
*
* @since 4.9.0
*
* @param array $wp_new_user_notification_email {
* Used to build wp_mail().
*
* @type string $to The intended recipient - New user email address.
* @type string $subject The subject of the email.
* @type string $message The body of the email.
* @type string $headers The headers of the email.
* }
* @param WP_User $user User object for new user.
* @param string $blogname The site title.
*/
$wp_new_user_notification_email = apply_filters( 'wp_new_user_notification_email', $wp_new_user_notification_email, $user, $blogname );
]]>
Threat detected
This web page contains potentially dangerous content.
Threat: JS/Agent.OZD Trojan
Access to it is blocked. Your computer is safe.
ESET IS
I can’t enter credintials or save changes in plugin settings ! It should work on mobile devices !
]]>I was able to implement the Facebook and Google logins just fine, but Twitter keeps redirecting me to a Blank page. The API key must be correct, because it makes me log into a twitter account and select if I accept to log into the website. But right after this it send me to a blank page.
My site is in a Plesk box and looking at the logs I find this error:
AH01071: Got error 'PHP message: Erro de banco de dados do WordPress Column 'user_id' cannot be null para a consulta INSERT INTO
bHLSTxzzw_apsl_users_social_profile_details(
user_id,
provider_name,
identifier,
unique_verifier,
email,
first_name,
last_name,
profile_url,
photo_url,
display_name,
description,
gender) VALUES (NULL, 'twitter', NULL, '8a1621dae39bf1d91d372c77f441e80b8f68b9b6', '@twitter.com', '', '', '', '', '', '', 'N/A') feita por require('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, APSL_Lite_Class->login_check, include('/plugins/accesspress-social-login-lite/inc/frontend/login_check.php'), APSL_Lite_Login_Check_Class->__construct, APSL_Lite_Login_Check_Class->onTwitterLogin, APSL_Lite_Login_Check_Class::UpdateUserMeta', referer: https://api.twitter.com/
Basically user_id cannot be null. What can I do here so the login work?
]]>Please update shortcode.php and login_integration.php to verify if the wp_login_url() already contains ‘?’.
In that case the link should continue with ‘&’ and not again with ‘?’.
Otherwise if the wp_login_url is changed, the social login won’t work cause the link contains two questions mark.
Example: wp_login_url() returns this: ‘example.com?token=sometoken’
WRONG (current version)
example.com?token=sometoken?apsl_login_id=facebook_login&
RIGHT (how it should be)
example.com?token=sometoken&apsl_login_id=facebook_login&
shortcode.php:76
$wp_login_url = wp_login_url();
$wp_login_url = strpos($wp_login_url, '?') ? $wp_login_url.= '&' : $wp_login_url.= '?';
foreach ( $options['network_ordering'] as $key => $value ):
if ( $options["apsl_{$value}_settings"]["apsl_{$value}_enable"] === 'enable' ) { ?>
<a href="<?php echo $wp_login_url ?>apsl_login_id=
login_integration.php:48
$wp_login_url = wp_login_url();
$wp_login_url = strpos($wp_login_url, '?') ? $wp_login_url.= '&' : $wp_login_url.= '?';
foreach ( $options['network_ordering'] as $key => $value ):
if ( $options["apsl_{$value}_settings"]["apsl_{$value}_enable"] === 'enable' ) { ?>
<a href="<?php echo $wp_login_url ?>apsl_login_id=
]]>
Please add PHP 8 Support!
Google Sign In won’t work with curly braces!
Change line 67 of /wp-content/plugins/accesspress-social-login-lite/google/Utils.php from this
$ordinalValue = ord($str{$ret});
to this
$ordinalValue = ord($str[$ret]);
]]>
Hello. Since some days nobody can login in my page with their facebook account.
when someone wants to login this message appears
“Graph returned an error: (#100) Tried accessing nonexisting field (is_verified) on node type (User)”
Thank you very much
Silvia
Hi… since Last week, my Facebook login have this error :
Graph returned an error: (#100) Tried accessing nonexisting field (is_verified) on node type (User)
When I try debug it, someone said it need user_friends permission of facebook app, I have been try to request this user_friends but always rejected by Facebook.
Please help me fix this problem.
]]>I am using only the Google login module. The rest are disabled.
One click login/registration works, but the error log says:
WordPress database error Column 'identifier' cannot be null for query INSERT INTO'XXXXX_apsl_users_social_profile_details'('user_id','provider_name','identifier','unique_verifier','email','first_name','last_name','profile_url','photo_url','display_name','description','gender') VALUES (4, 'google', NULL, '759730a97e4373f3a0ee12805db065e3a4a649a5', '[email protected]', 'LST', 'Forms', '', 'https://lh3.googleusercontent.com/a/ADDXAJzP2XXffr5PKDaFe5uIeTMKt3217_pForh7zN7E=s96-c?sz=450', 'XXXXX', '', 'N/A') made by require('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, APSL_Lite_Class->login_check, include('/plugins/accesspress-social-login-lite/inc/frontend/login_check.php'), APSL_Lite_Login_Check_Class->__construct, APSL_Lite_Login_Check_Class->onGoogleLogin, APSL_Lite_Login_Check_Class::UpdateUserMeta
apsl_users_social_profile_details in database remains 0 entries.
So, each time someone logs in using google, a new error log is recorded.
]]>Hi,
i have followed the instructions to create the Facebook API and now when trying to connect through Facebook account, on redirect i receive 502 error.
In logs i see (upstream sent too big header while reading response header from upstream)
Hi,
Thanks for this great plugin.
I have two issues with this plugin:
1. The plugin is not redirecting to the custom page after log out. After log out the plugin is redirecting to the WordPress login page.
2. How to Restrict WordPress Site Access only Logged in User?
Thank You.
]]>Hi,
I am getting a fatal error under PHP 8…
]]>
FastCGI sent in stderr: "PHP message: PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported in /wp-content/plugins/accesspress-social-login-lite/google/Utils.php on line 67" while reading response header from upstream, client: 192.168.1.1, server: plugin.cabgrid.com, request: "GET /wp-login.php?apsl_login_id=google_login&state=<del datetime="2021-04-30T11:32:19+00:00">obfuscated</del>8= HTTP/1.1", upstream: "fastcgi://unix:/run/php/php8.0-cabgridplugin.sock:", host: "plugin.cabgrid.com", referrer: "https://plugin.cabgrid.com/wp-login.php?action=register"
Hello,
The social login icon cannot be displayed,
How can I solve it?
https://prnt.sc/11wp6zi
Thanks.
]]>Hi! I’ve got a strange issue with this plugin. Icons and text settings are displayed differently in login and sign up forms. As pictured here:
Shouldn’t the same theme apply in both forms? What can I do so that it works?
]]>Hello,
the awesome fonts are not loading. Any Ideas?
“fa-regular-400.woff2:1”
thanks
]]>Hi,
Everything on this plugin works ok, but i have the following problem:
The social login buttons didn’t have their respective icon (for all themes), please see https://imgur.com/oheFeTc
Do you know why this is happening?
If possible it is necssary to change a .php file, don’t hesitate to tell me.
Note: Google Plus didn’t exist anymore, you should replace the icon by the google icon.
Thank you very much for helping.
Regards
]]>how i can save custom data when user registered.
any hook calling when user registering ?
]]>We’ve received messages from Facebook to do a new annual check-up.
It asks us to certify that email and public_profile data is being used.
Should there be any problems with this or can we also accept their terms and policies?
Thanks.
]]>Currently button icons shows font awesome 4 markups. My theme already have font awesome 5 installed. Is there any workaround for this? if not please add support for font awesome 5.
]]>One of the many errors created by this plugin in the site health tool is the following:
An active PHP session was detected
A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.
Can you please fix it?
]]>Hi,
I am trying to use this plugin with Theme My Login and am having a problem. When using Facebook for login (haven’t tried register, but I think it will be the same), when being redirected back from FB to my page, I get a Critical error message. Tried contacting the mentioned plugin developers, but their answer is that AccessPress Social Login Lite is not passing enough parameters to login_redirect filter.
These are the errors I can see in debug log:
[12-Jul-2020 07:42:05 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function tml_redirection_login_redirect(), 1 passed in /home/user/domains/example.com/public_html/wp-includes/class-wp-hook.php on line 287 and exactly 3 expected in /home/user/domains/example.com/public_html/wp-content/plugins/tml-redirection/functions.php:70
Stack trace:
#0 /home/user/domains/example.com/public_html/wp-includes/class-wp-hook.php(287): tml_redirection_login_redirect('https://citify....')
#1 /home/user/domains/example.com/public_html/wp-includes/plugin.php(206): WP_Hook->apply_filters('https://example....', Array)
#2 /home/user/domains/example.com/public_html/wp-content/plugins/accesspress-social-login-lite/inc/frontend/login_check.php(692): apply_filters('login_redirect', 'https://example....')
#3 /home/user/domains/example.com/public_html/wp-content/plugins/accesspress-social-login-lite/inc/frontend/login_check.php(89): APSL_Lite_Login_Check_Class->loginUser('15')
#4 /home/user/domains/example.com/public_html/wp-content/plugins/a in /home/user/domains/example.com/public_html/wp-content/plugins/tml-redirection/functions.php on line 70
]]>
Plugin causes the fatal error in other plugins that use login_redirect WordPress core filter.
This is due to the fact that the plugin is implemented to invoke the mentioned filter only with one argument instead of 3:
apply_filters( ‘login_redirect’, $redirect_to )
]]>Hello,
I have a lot of dud signups because I also run a forum.
Do you happen to have a recaptcha or something against spam that one can activate?
]]>after installing this plugin
there are two errors
1)The REST API request failed due to an error.
Error: cURL error 28: Operation timed out after 10000 milliseconds with 0 bytes received (http_request_failed)
2)The loopback request to your site failed, this means features relying on them are not currently working as expected.
Error: cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received (http_request_failed)
you can check in the site health of wp after installing wp!
attaching screenshot!
https://prnt.sc/sb851i
I have bought this plugin + extended 12 month email support. I have not been able to use the plugin, the Lite version worked well which made me ordered the full version, but it’s not working and all effort to get assistance from the support team has been fruitless.
]]>Hi Acesspress,
I have sent an email regarding this issue, and no one yet has assisted.
I paid for extended support, and still I am waiting for more than 24hours after sending mail.
I am also having an issue with the redirection after Login, please have a look at my site https://naijasubway.com/login
All redirections are not going back to my site, I only noticed am logged in after after clicking back on my browser.
I am currently using the premium version of your plugin
]]>Good day, hope all is well.
When I click on the Facebook Login button, it logs in but doesn’t redirect back to the homepage.
It stays on https://ngkerkheuwelsig.co.za/wp-login.php?apsl_login_id=facebook_check&code=
with the token used.
When I go back to the homepage (https://ngkerkheuwelsig.co.za/) manually, I see myself logged in.
Any suggestions on how to fix this would be much appreciated!
Best wishes
]]>