• Hi there! I was receiving this error

    PHP Warning: Cannot modify header information – headers already sent by (output started at /home2/aerialmapping/public_html/americanmarketliquor.com/wp-content/plugins/super-socializer/library/Facebook/Http/GraphRawResponse.php:108) in /home2/aerialmapping/public_html/americanmarketliquor.com/wp-includes/pluggable.php on line 934

    I was able to get it to work by commenting out line 108 in GraphRawResponse.php and that got Facebook login working and I’ve tested it multiple times. Is the response code already being sent, is this code necessary?

    • This topic was modified 5 years, 4 months ago by wrasada.
    • This topic was modified 5 years, 4 months ago by wrasada.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Heateor Support

    (@heateor)

    Hi,

    We are not able to reproduce this scenario at our test environment. This might be due to conflict with some other plugin. You can try keeping only this plugin active just to check if this makes any difference.

    Thread Starter wrasada

    (@wrasada)

    Ok, I’ll run some tests to see if it conflicts with any of our other plugins. Much appreciated!

    Plugin Author Heateor Support

    (@heateor)

    Sure. You’re welcome.

    I had the same problem. If I enable wp_debug in wp-config.php, the Facebook login does not work.

    I fixed it, replacing in the GraphRawResponse.php file

    preg_match('|HTTP/\d\.\d\s+(\d+)\s+.*|', $rawResponseHeader, $match);

    by

    preg_match('/HTTP\/\d(?:\.\d)?\s+(\d+)\s+/',$rawResponseHeader, $match);

    .. it would be nice to consider it for an upcoming update.

    • This reply was modified 5 years, 3 months ago by johndg10.
    Plugin Author Heateor Support

    (@heateor)

    @johndg10 Thanks for the info. We will take care of it in upcoming releases.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issue with Facebook Login – Bug Report’ is closed to new replies.