• Resolved Swanep

    (@swanep)


    Hi

    I keep getting this error when trying to connect with the plugin. I have another facebook plugin with which I create Fan pages and reading up on the problem I see that it is a clash between plugins which both declare the same function. I have found a solution except that no where in the code can I see where you call this function and how to implement the solution. I would like to get this resolved as quickly as possible.

    Here is the precise error. (Fatal error: Cannot redeclare class FacebookApiException in /wp-content/plugins/wordpress-social-login/hybridauth/Hybrid/thirdparty/Facebook/base_facebook.php on line 107)

    The solution is simple but I dont know where to implement it as you dont use the same call function. Please can you help me to implement this and maybe you can implement this solution as well in the plugin for I am certain that it is not only me who is confronted with the same problem.

    Solution:

    To fix this Fatal error, replace:

    include(facebook.php);

    With this code:

    if (!class_exists(‘FacebookApiException’)) {
    include_once(‘facebook.php’);
    }

    Thank you for a great plugin, I have just recently bought a plugin which was supposed to be used in the same manner, but it just does not function correctly. If I have known about your plugin I would rather have supported you and donated the cost to you.

    https://www.ads-software.com/extend/plugins/wordpress-social-login/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Swanep

    (@swanep)

    Hi Miled

    Just another comment here. Thanks for your Plugin. It is great work and I really appreciate it. I know that most off the time people only get complaints and requests from users and this plugin is free.

    Just wanted to let you know, that I appreciate what you have created here and that you made it available for free.

    Plugin Author Miled

    (@miled)

    Hi, it should be fixed by now. I added that condition like you said, so just delete reinstall the plugin

    Thanks a lot!

    Thread Starter Swanep

    (@swanep)

    Miled

    Thank you. It works quite well now.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WordPress Social Login] Fatal error: Cannot redeclare class FacebookApiException’ is closed to new replies.