Viewing 5 replies - 1 through 5 (of 5 total)
  • I also get the same error.

    Plugin Author xdark

    (@xdarkeu)

    This is happening because your server has PHP V < 5.3. If this a private server you should update the server, if not in file [ERP plugin folder]/easy_related_posts.php lines 75-77 you now see

    add_action('widgets_init', function () {
        register_widget("ERP_Widget");
    });

    change these three lines with the following code

    function regERPWidget() {
        register_widget("ERP_Widget");
    }
    add_action('widgets_init', 'regERPWidget');

    Thanks!

    So will this plugin support PHP 5.2?

    Plugin Author xdark

    (@xdarkeu)

    Sure, just make the change to make it work till next release. 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Error’ is closed to new replies.