Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin – Memberlist *UPDATE*


ardentfrost
Member

@ardentfrost

.73b is on my download page ( http://faq.rayd.org/memberlist/ )

And I never said you were attacking my skill. If you don’t like the error message that you should never see, then change it. Again, it is open source. Just open mlist.php that you put in your root directory; it’s at the end of the file.

And it sounds like you are having a similar problem as spencer. He turns on permalinks and it works for everything except my plugins, whereas my plugins work fine for myself and others who have permalinks on.

If the problem persists, you can either turn off pretty permalinks until I figure out what the problem is, or you can change the function on line 100 in bb-memberlist.php in your my-pluins directory to this:

function bb_get_memberlist_link( $tag = '' ) {

global $bb;

if ( $bb->mod_rewrite )

$r = bb_get_option('uri') . "mlist.php" . ( '' != $tag ? "?$tag" : '' );

else

$r = bb_get_option('uri') . "mlist.php" . ( '' != $tag ? "?$tag" : '' );

return apply_filters( 'get_memberlist_link', $r );

}

Skip to toolbar