Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Claude

    (@claudeschlesser)

    Hello,

    could you post or send us the link to your website?
    https://www.oneall.com/company/contact-us/

    Regards,

    Plugin Author Claude

    (@claudeschlesser)

    Ok, found your email.

    Thread Starter dKoka

    (@dkoka)

    Hi Claude,
    the solution you have sent me via e-mail seems to resolve the problem.
    Thank you.

    Plugin Author Claude

    (@claudeschlesser)

    Very good.

    Just for completeness:

    dKoka replaced the function oa_social_login_https_o with this code:

    function oa_social_login_https_on()
    {
    	if ( ! empty ($_SERVER ['SERVER_PORT']))
    	{
    		if (trim($_SERVER ['SERVER_PORT']) == '443')
    		{
    			return true;
    		}
    	}
    
    	if ( ! empty ($_SERVER ['HTTP_X_FORWARDED_PROTO']))
    	{
    		if (strtolower(trim($_SERVER ['HTTP_X_FORWARDED_PROTO'])) == 'https')
    		{
    			return true;
    		}
    	}
    
    	if ( ! empty ($_SERVER ['HTTPS']))
    	{
    		if (strtolower(trim($_SERVER ['HTTPS'])) == 'on' OR trim($_SERVER ['HTTPS']) == '1')
    		{
    			return true;
    		}
    	}
    
    	return false;
    }

    We will include this fix in the next version.

    Plugin Author Claude

    (@claudeschlesser)

    This bug is fixed in 3.1

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Social Login] Security gets broken in SSL pages and login screen after last plugin update’ is closed to new replies.