Hi Alejandro,
We've detected an issue with the recent JomSocial 2.6 / 2.8. It autoloads Facebook library (even if it actually doesn't use it).
AutoTweetNG also loads the library to post.
So, both components are loading the same library, and you get:
Fatal error: Cannot redeclare class Facebook in /.../components/com_community/libraries/facebook/facebook.php on line 0
In the upcoming AutoTweetNG v6.4, we are implementing namespaced libraries, to have our own named library.
Please, verify your error log to check the issue. With the current versions, there is a workaround to avoid the conflict.
In our JomSocial, we've added a namespace jomsocial in the Facebook library. In the first lines of files:
- components/com_community/libraries/facebook/facebook.php
- components/com_community/libraries/facebook/base_facebook.php
<?php
namespace jomsocial;
/**
* @package JomSocial
Please, let us know if it works for you.
Thanks,