Miled
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] Stopped working — Request Failedcool.
Forum: Plugins
In reply to: [WordPress Social Login] Stopped working — Request Failedlet me tell you about an unwritten rule among the community.
PLEASE HELP, URGENT, ASAP and the like won’t get you any answer, period. try to avoid those.
now, take a breath, then describe the issue you having and try to provide as much detail and context as possible otherwise i can’t help you.
Forum: Plugins
In reply to: [WordPress Social Login] Internal Server Erroryour domain whois says that you are using godaddy, if it’s the case then you may find that error log through account manager here.
if not, most providers use cpanel as hosting control panel, and this video might help.
when you find the php error, email it to me at hybridauth@gmail.com and i’ll try to answer you back here.
Forum: Plugins
In reply to: [WordPress Social Login] Twitter login creating multiple new usersthis solve the case. thank you for your kind cooperation.
the issue is due to a new key introduced in 2.2.2: https://wordpress.org/support/topic/missing-wslusersprofiles-table
the solution is to create
wslusersprofilesmanually: https://gist.github.com/miled/ceabf979182e6331f11ffwiw, this is already patched, and fixed in upcoming release.
apologies for the mess.
Forum: Plugins
In reply to: [WordPress Social Login] Internal Server Errorthat error message doesn’t say much about the issue, and it can be anything.
it would be more helpful if you could get to your webserver error log and past the relevant part here
More information about this error may be available in the server error log.
.على فكرة، الموقع ممتاز جدا و جدير بالإعجاب. بالتوفيق
Forum: Plugins
In reply to: [WordPress Social Login] 500 internal server error when redirectinggood to hear that.
thanks for following up.
Forum: Plugins
In reply to: [WordPress Social Login] Twitter login creating multiple new usersany progress?
well, boss, i only have a theory so far. it’s possible that one of wsl tables is missing, which may cause this unexpected behavior.
could you confirm that
prefix_wslusersprofilesandprefix_wsluserscontactsexist on your database?no, i’m not aware of this. you’re the first one to raise that issue. will see if other users are having a similar problem.
and, thank you too.
what you think isn’t it
google usually have good documentation. does it say something about that error?
is this problem arises due to the redirect url that i enter in the social network application for creating application id or application secret.
what makes you think so?
Forum: Plugins
In reply to: [WordPress Social Login] 500 internal server error when redirectingThis is a known issue with WP engine, and it’s due to how their infrastructure works.
WSL requires that PHP sessions are enabled and working for unconnected users, however it’s not the case with WP engine as stated on their website (http://wpengine.com/support/cookies-and-php-sessions/)
Cookies and PHP $_SESSION variables are used by many plugins and themes for WordPress. While we don’t currently prevent cookies or sessions, they may not work as you expect on our servers.
WP Engine implements Page caching as a primary method of speeding up the sites that we host … When a visitor is served a cached version of the site, then the PHP code is not executed. This means that any PHP code that looks for cookies or handles session variables will not work, simply because it is not running.
It has been reported on many occasions, that calling their support can solve the issue. WP engine staff have the ability to make the plugin work for you by disabling their caching system only for the pages used by WSL.
By default, WSL will requires these two urls to be white-listed:
wp-login.php wp-content/plugins/wordpress-social-login/hybridauth/To my knowledge, there are also another workaround, to which I take no credit nor do I recommend it. Please check with WP engine customer support to know if this is permitted by them.
This workaround consist on creating a dummy authentication cookie for just 15 seconds and only for WSL endpoints, which should disable the caching system for a short frame of time and make WSL work.
function wsl_whitelist_endpoint() { setcookie( LOGGED_IN_COOKIE, md5(rand()), time()+15, preg_replace('|https?://[^/]+|i', '', WORDPRESS_SOCIAL_LOGIN_HYBRIDAUTH_ENDPOINT_URL ) ); } add_filter( 'wsl_process_login_start', 'wsl_whitelist_endpoint' );Forum: Plugins
In reply to: [WordPress Social Login] Trouble getting Google integration to worki have no clue. take a look at this, it might answer your question http://stackoverflow.com/questions/14238665/can-a-public-ip-address-be-used-as-google-oauth-redirect-uri
Forum: Plugins
In reply to: [WordPress Social Login] Bounce by user rolecurrently there is no option for that. however there will be a new filter hook next release that can be used to achieve that
Forum: Plugins
In reply to: [WordPress Social Login] Reduce Avatar size in widget areais it an issue on buddypress? if not what theme/plugin are you using to display avatars in sidebar
Forum: Plugins
In reply to: [WordPress Social Login] User Avatar Change