Social Logins & Facebook Login

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: Social Logins & Facebook Login

Re: Social Logins & Facebook Login

by axew3 » Wed Mar 08, 2017 1:40 pm

if any trouble just post

Re: Social Logins & Facebook Login

by misric » Tue Mar 07, 2017 4:59 pm

You're mine, it's enough !

Works fine this morning, but I've probably changed something wrong, cookies are no more recorgnized by phpbb.

I'm 95% sure it's pebkac and not issue, so handshaking my brain one more time to find an anwer :D

Re: Social Logins & Facebook Login

by axew3 » Tue Mar 07, 2017 3:17 pm

all We hope to be some God ... We just learn from what others before us have maybe discover. We can apply smarty solutions. There are really few "Gods" on this world. I'm unfortunately not one of these! And taken alone, in true i think, nobody can be a God. All together, maybe We can be a God!
Perhaps this is the true, behind everything! :lol:

Re: Social Logins & Facebook Login

by misric » Tue Mar 07, 2017 6:45 am

Yeah, works fine ! You're a god !

Thanks for all your works !

Socials Logins & Facebook Login

by axew3 » Mon Mar 06, 2017 10:31 pm

ok we should resolve with this, many things at once.

Open wp_w3all.php file

search for lines:

Code: Select all

   // stuff about profile changes WP to phpBB
 add_action( 'profile_update', 'wp_w3all_up_phpbb_prof', 10, 2 );
 add_action( 'user_register', 'wp_w3all_phpbb_registration_save', 10, 1 );
 add_action( 'delete_user', array( 'WP_w3all_phpbb', 'wp_w3all_phpbb_delete_user' ) ); // todo // just deactivated on phpBB, when deleted in WP
 
immediately after, and before the char }
add the follow:

Code: Select all

 add_action( 'set_logged_in_cookie', 'w3all_user_session_set', 10, 5 );
function w3all_user_session_set( $logged_in_cookie, $expire, $expiration, $user_id, $scheme ) {
	$user = get_user_by( 'ID', $user_id );
    $phpBB_user_session_set = WP_w3all_phpbb::phpBB_user_session_set_res($user); 
    return;
}
This should resolve really many things at once: it will be added on 1.6.5.

Re: Login & Facebook Login

by misric » Mon Mar 06, 2017 8:59 pm


Top