I’m not by any means a PHP expert, but I believe you need to change your configuration to allow external file access.
Change from:
allow_url_fopen = Off
allow_url_include = Off
Settings should be:
allow_url_fopen = On
allow_url_include = On
Hope that helps
Find this line in the file I listed:
$facebook_app_id = absint($_POST[‘wpbbfacebookappid’]);
edit that to be:
$facebook_app_id = $_POST[‘wpbbfacebookappid’];
And this should correct the issue.
Edit the following file “wpbb-admin-settings.php” and remove the int constraint check on the post submission for this field.
The reason it keeps resetting is because it fails the check and uses the default.
Has anyone found a solution to this? I really like the forums module, but FB integration is KEY.