"Facebook connect" module in Dolphin 7.2.0 is compatible with Facebook API v.2.0 and it isn't compatible with the latest v.2.4 version.
You can check your Facebook app by logging in to https://developers.facebook.com and selecting your app:
If you've just created Facebook app it is set to the latest version (v.2.4 as of now) and there is no way to downgrade to v.2.0.
We've updated "Facebook connect" module to support the latest Facebook API and it will be available in Dolphin 7.2.1. If you need to make it work now you can grab the updated latest version of the module from Dolphin GitHub repository, you will need to re-upload the following folders:
plugins/facebook-php-sdk/ modules/boonex/facebook_connect/
Then run the following SQL query:
SET @iCategId = (SELECT `kateg` FROM `sys_options` WHERE `Name` = 'bx_facebook_connect_auto_friends'); INSERT INTO `sys_options` SET `Name` = 'bx_facebook_connect_extended_info', `kateg` = @iCategId, `desc` = 'Fetch extended profile info (facebook app review is required)', `Type` = 'checkbox', `VALUE` = '', `order_in_kateg` = 5;
Please note: to get extended info about profile from Facebook, you app must be reviewed. We've added option to get basic info only (email, public profile, friends, thumbnail), so you can use it without any reviewing, but if you want that profile will be automatically filled in with such info like profile description, date of birth and location you have to submit it for review and enable this option in "Facebook connect" module settings:
One more note: PHP 5.4 is required for the new "Facebook connect" module, this is because we've used Facebook PHP SDK and it has such requirements.