• I’m actually using WPMU 2.8.1

    I am using Theme My Login plugin so I don’t have to go to the traditional login page. I am also using the plugin widget so people can log in from the side bar.

    I added the Members Only plugin in hopes to allow registered users to be the only ones to view content.

    So far everything works perfectly…except, once you go to the site, it redirects you to the login page, as it should, but my concern is for new people who want to register, if you click on register or the lost password link, that still returns you to the login page.

    Has anyone run across this and/or is there a fix?

    Thanks!

    Dan

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’ve just run into this myself. Did you manage to solve the problem or find another option?

    Thanks,

    Trevor

    And me! Users cannot register with the Members Only plugin. Help!

    Hi there,

    I’ve modified the Members Only plugin to allow various Theme My Login paramters:
    on line 217 of members-only.php change the following from

    elseif ($currenturl == $redirection || //...at the redirection page without a trailing slash
    				$currenturl == $redirection.'/' //...at the redirection page with a trailing slash
    				)

    to

    elseif ($currenturl == $redirection || //...at the redirection page without a trailing slash
    				$currenturl == $redirection.'/' || //...at the redirection page with a trailing slash
    				fnmatch("$redirection"."?*", $currenturl) // at the redirection page with extra parameters
    				)

    that does the trick, now I just need to figure out how to make it work with URL redirections, perhaps some code modification as well

    hope this helps,
    Cheers,

    Alexis

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Members Only] Theme My Login’ is closed to new replies.