We wish every user would say we had a superb extension.. even while they're getting a fatal error
That's an error we've never seen before, but can actually see immediately how it might crop up. Not sure why you're having it, but the following 1 (or 2) things should fix it. Hopefully, you don't mind making 2 small edits to a file. Both of these are in the /administrator/components/com_jfbconnect/asset/sourcecoast.php file:
1) At the top, there's a few jimport(...) statements. Add this one:
jimport('joomla.utilities.simplexml');
2) At line 138, there's the following line:
$xmlParser = new JSimpleXML;
Add a () to the end of it:
$xmlParser = new JSimpleXML();
Please let us know if that fixes things for you. As above, we've never heard of this issue, and JFBConnect is used on a lot of sites.. however, right upon looking at that file, I can see those issues.. so hopefully that will nip it in the bud quickly, and you'll be on your way.
If that doesn't help, let us know, and we'll do what we can to find another solution. Also, if you would, let me know what version of Joomla and PHP you're using.
Thanks!