Home › Forums › Legacy Support › Support queries › Other issues › Google login Cache issue
- This topic has 10 replies, 2 voices, and was last updated 8 years, 12 months ago by Anshuman Sahu.
Viewing 11 posts - 1 through 11 (of 11 total)
-
AuthorPosts
-
November 16, 2015 at 1:24 pm #8906ClaytonSpectatorHi Vibe, When a user logs in using Google and then logs out. And, another user logs in using another Google account, he / she is brought to the profile of the first user that logged in. This seems to be some sort of a cache issue. Can you tell me why you think my users are facing this issue? Example: Madhu logs in with [email protected] using Google login. Then he logs out. Then Sam logs in with [email protected] using Google login. Instead of seeing his profile, Sam sees Madhu's profile.November 18, 2015 at 8:01 am #9264Anshuman SahuKeymasterWe were not able to replicate this on our demo site . Can you please try to replicate the issue here : http://themes.vibethemes.com/wplms/skins/modern/November 18, 2015 at 10:21 am #9302ClaytonSpectatorHi Alex, My auth screen looks so different. I have followed all instructions in your manual. Am I missing something? Please see screenshot.November 19, 2015 at 2:18 pm #9584Anshuman SahuKeymasterWe have the same screens as your's : http://prntscr.com/94irju You issue seems to be more of a caching issue please contact your webhost and try disabling the third party plugin and clearing your browser cache .November 19, 2015 at 3:40 pm #9603ClaytonSpectatorHi Alex, Yes it seems like a caching issue. But this isn't a browser or server caching issue. Tried the login from different computers and also my server is set to storing cache only for a short period of time. This issue has been there for a long time now. Also, this isn't a plugin issue. Have you tried logging in with different users from the same browser?November 19, 2015 at 3:54 pm #9604ClaytonSpectatorAlex, To understand the issue please go to my site www.Curricooler.com and login with Google. Then, logout and login again with another id. You will be taken to the previous user's profile. Then keep trying with different IDs and you will be taken to the 1st person's profile. Please check Alex.November 20, 2015 at 12:48 pm #9763Anshuman SahuKeymasterYes we have replicated the issue at your site but not on our demo and test sites . Have you tried deactivating the third party plugins ? Also try setting the Cache Duration to " 0 " in wplms -> course manager .November 23, 2015 at 4:34 am #10080ClaytonSpectatorYes Cache Duration is set to "0". Also, I have deactivated many of the 3rd party plugins except essential ones like Contact Form 7 and a few others. As you know, we need 3rd party plugins and cannot function without them. Is there a way to debug this issue? Can I use another Google login plugin and have the same kind of button in the Ajax popup? Please help me.November 23, 2015 at 1:43 pm #10208Anshuman SahuKeymasterYou can use any plugin for the google social login . Please note you can display the other third party plugin in login popup with the help of shortcode . example : Add the code in your wplms-customizer.php file in wplms customizer plugin : add_action ('bp_social_connect','custom_bp_social_connect'); function custom_bp_social_connect(){ echo do_shortcode([your_third_party_plugin_shortcode]); }November 24, 2015 at 1:30 pm #10398ClaytonSpectatorHi there, I did what you suggested. However I'm getting the following error: <b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">Warning</b><span style="color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1;">: strpos() expects parameter 1 to be string, array given in</span><b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">/home/wwwcurricooler/public_html/wp-includes/shortcodes.php</b><span style="color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1;"> on line </span><b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">191</b><br style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;" /><br style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;" /><b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">Warning</b><span style="color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1;">: preg_match() expects parameter 2 to be string, array given in</span><b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">/home/wwwcurricooler/public_html/wp-includes/shortcodes.php</b><span style="color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1;"> on line </span><b style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;">202</b><br style="box-sizing: border-box; color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1; background-attachment: scroll !important;" /><span style="color: #313b3d; font-family: 'Open Sans', 'Helvetica Neue', sans-serif; line-height: 22.8571px; widows: 1;">Array</span>November 25, 2015 at 7:05 am #10489Anshuman SahuKeymaster
Try this code i forgot add the quotes in the do_shortcode function above : add_action ('bp_social_connect','custom_bp_social_connect');
function custom_bp_social_connect(){echo do_shortcode('[your_third_party_plugin_shortcode]');
} -
AuthorPosts
Viewing 11 posts - 1 through 11 (of 11 total)
- The topic ‘Google login Cache issue’ is closed to new replies.