• Hi,
    love your plugin, easy to use, yet powerful. In my cause, I would greatly appreciate IP white listing in addition to user role white listing, as I test my sites in various browsers and I use Clef. I need to log out in one browser to be able to log in to another. But with IP white listing, I maybe don’t need to actually log in?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author WebFactory

    (@webfactory)

    Hi, thank you for the kind words!

    That feature is on our to-do list. It’s either going to be IP-based like you described or there’ll be a feature to generate unique URLs that skip maintenance for a duration of user’s session.

    +1

    +1
    please!!
    you have the coolest construction screens ?? but not being able to whitelist IP makes developing pages where register/login flows need to be tested a pain…

    infact. i just made an easy temporary hack. this is in under-construction.php arround line 209. added my IP to the conditions:

        // some URLs have to be accessible at all times
        if ($_SERVER['REQUEST_URI'] == '/wp-admin' ||
            $_SERVER['REQUEST_URI'] == '/feed/' ||
            $_SERVER['REQUEST_URI'] == '/feed/rss/' ||
            $_SERVER['REQUEST_URI'] == '/feed/rss2/' ||
            $_SERVER['REQUEST_URI'] == '/feed/rdf/' ||
            $_SERVER['REQUEST_URI'] == '/feed/atom/' ||
            $_SERVER['REQUEST_URI'] == '/wp-admin/' ||
            $_SERVER['REQUEST_URI'] == '/wp-login.php' ||
            $_SERVER['REMOTE_ADDR'] == 'whitelistip') {
          return true;
        }

    ??

    @rotlichtluzern: That… is… AWESOME!!! Thank you! ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Feature Request – IP white listing’ is closed to new replies.