• CSkraba1

    (@cskraba1)


    We received the following error when we attempted to active the plugin:

    Fatal error: func_get_args(): Can’t be used as a function parameter in /home1/savteam5/public_html/wp-content/plugins/bp-moderation/bpModLoader.php on line 119

    WordPress: 3.7.1
    BuddyPress: 1.8.1
    PHP: 5

    Please help!

    https://www.ads-software.com/plugins/bp-moderation/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Change the following lines…

    function call_activate()
    {
    $this->call_installer(‘activate’, func_get_args());
    }

    to

    function call_activate()
    {$fargs = func_get_args();
    $this->call_installer(‘activate’, $fargs );
    }

    and the same to disable..

    Thanks @danibatoy – that did it

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Fatal Error – Can Not Activate’ is closed to new replies.