user1803663
user1803663

Reputation: 11

"Fatal error: Cannot redeclare class FacebookApiException

I have installed the instabuilder plug in and somehow the SEO Facebook C. plugin is conflicting with it.

Only when the SEO Facebook C. plugin is active accessing this page: http://www.jmuller777.com/blog/?mode=facebook_tab gives me the fallowing error:

"Fatal error: Cannot redeclare class FacebookApiException in /home/denrrou/public_html/jmuller777.com/blog/wp-content/plugins/InstaBuilder/inc/facebook/base_facebook.php on line 107"

I have read that it should be a class issue, but i cant figure out where to fix it.

Upvotes: 0

Views: 2453

Answers (2)

It is very simple. Just deactivate the plugins that might conflict, activate the one that givs the error and then activate the ones you deactivated earlier.

Upvotes: 1

Mic
Mic

Reputation: 523

Redeclare can mean, that you include the class file twice for example. Be sure that you use include_once(...)

Or you have 2 plugins that use the same class. You can Search for "FacebookApiException" in your plugin code.

greetings

Upvotes: 3

Related Questions