• Hi,
    I have installed the members plugin and i got problems setting it up due to this error
    “( ! ) Fatal error: Call to a member function create() on a non-object in C:\wamp\www\wp-content\plugins\members-list\core\settings.php on line 122”

    Can somebody please guide me where i have gone wrong here?

    Thanks,

Viewing 1 replies (of 1 total)
  • I had this problem and just managed to overcome it.

    I was getting the same error, and after digging through, I managed to put together a hack/fix.

    FYI – I’m working with Member List version 3.5.

    You need to edit the file /wp-content/plugins/member-list/class/select.php

    Near the top change:

    if(!class_exists('select')) {
    //
    class select {

    to

    if(!class_exists('ternselect')) {
    //
    class ternselect {

    and near the bottom, change:

    $ternSel = new select;

    to

    $ternSel = new ternselect;

Viewing 1 replies (of 1 total)
  • The topic ‘Members plugin fatal error’ is closed to new replies.