It seems weird that I have to keep installing these 'fixes' to get sh__ to work. I log in, I close the browser, I op-en the browser and it has forgotten me. Does it every time.
I should not have to do this anymore:
We had an issue with the Remember Me? feature not working on v7.0.4 dolphin on our site. In digging a little, I found that the function bx_login defaults the remember me status to false and does not try to get the form data to change this boolean in the code before logging the user in.
If you want to fix this, you can do the following in your code:
Open /inc/profiles.inc.php - look for the following code (original code is at line 443) <--- it's actually line 452 now
function bx_login($iId, $bRememberMe = false) {
Place the following block just below it:
if ((bool)$_POST['rememberMe'] == true) {
$bRememberMe = true;
};
Save and clear your cache. Next time you or a member logs in and checks the Remember Me button, the cookie will be properly created and they will be remembered. Enjoy --