Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Damian

    (@timersys)

    What error you are getting? Share your site please

    Thread Starter Iurie Malai

    (@flegmatiq)

    No errors, just not working. WP_DEBUG is ‘true’. Registering is active.
    The site: https://android.info.md/

    Thread Starter Iurie Malai

    (@flegmatiq)

    I discovered a new issue. In the registration page the “Connect with Facebook” button is missing. In the login page the button is there.

    Plugin Author Damian

    (@timersys)

    It seems that error is coming because of the debug being true ??

    The ajax is returning

    <br />
    <b>Notice</b>:  Undefined index: user_pass in <b>/var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/user.php</b> on line <b>1827</b><br />
    <br />
    <b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/user.php:1827) in <b>/var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/pluggable.php</b> on line <b>925</b><br />
    <br />
    <b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/user.php:1827) in <b>/var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/pluggable.php</b> on line <b>926</b><br />
    <br />
    <b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/user.php:1827) in <b>/var/www/vhosts/9281/domains/android.info.md/public_html/wp-includes/pluggable.php</b> on line <b>927</b><br />
    {"success":4}

    which makes the script break. I will fix it and release an update soon ( and also check the registration page)

    If you want to manually solve it simple change in line 128 in class-facebook-login-public.php the $user variable to the following:

    $user = apply_filters( 'fbl/user_data_login', array(
    			'username'   => $_POST['fb_response']['id'],
    			'user_login' => $_POST['fb_response']['id'],
    			'first_name' => $_POST['fb_response']['first_name'],
    			'last_name'  => $_POST['fb_response']['last_name'],
    			'user_email' => $_POST['fb_response']['email'],
    			'user_url'   => $_POST['fb_response']['link'],
    			'user_pass'  => wp_generate_password(),
    		));
    Thread Starter Iurie Malai

    (@flegmatiq)

    I changed the debug to false and the line 128 as you suggested. Later I upgraded the plugin to the new version, but plugin still not working. I checked my Facebook application, but it seems to be OK (I see “This app is public and available to all users”. The Approved Items includes email, public_profile and user_friends.). I do not understand what is wrong here :(.

    Thread Starter Iurie Malai

    (@flegmatiq)

    I see two new accounts in my users list, one for Katrin Roldan and one for Damian Logghe. Both are yours? Do you used the Facebook button (your plugin) to register?

    I thought that the problem is related to my Internet provider (I had in the past some problems with it), but when I tried to connect with your plugin to my site trough other provider resulted in the same: the plugin not working for me. I tried to change the theme, but with the Twenty Fifteen the result is the same. The only progress I see after the plugin update is the Facebook button in the registration page, that also not working.

    Plugin Author Damian

    (@timersys)

    Yes Damian Logghe is my account. And I just tried on your theme again and its working for me. I can login no problem.

    Try clearing your browser cache.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Not working’ is closed to new replies.