Page 1 of 1

best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 3:19 pm
by Stoob
Our entire site is password protected and requires a username/password, no content visible without login.  Users can create their accounts and login themselves, hopefully with email verification.  This module seems to be pretty good, but I can't find any documentation on the website nor in the .tar.gz package.

Is this what I'm looking for?

http://dev.cmsmadesimple.org/projects/frontendusers

Re: best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 4:36 pm
by Coldman
Yes that's right

And you also need these modules.
CustomContent http://dev.cmsmadesimple.org/projects/customcontent
Selfreg http://dev.cmsmadesimple.org/projects/selfreg

Re: best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 4:38 pm
by Rolf
More info on CustomContent:
http://wiki.cmsmadesimple.org/index.php ... om_Content

grtz. Rolf

Re: best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 5:50 pm
by Stoob
thanks guys for the help

Re: best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 10:25 pm
by Stoob
Here is another question... require the file downloads be restricted to logged in users only (aka. private downloads).

Found this module:
http://dev.cmsmadesimple.org/projects/securefile

But it's 'stale' are there any other alternatives?

Re: best module to make the whole site password protected?

Posted: Mon Oct 04, 2010 11:48 pm
by chrismarie
The Uploads Module is great for that.  You can also include an .htaccess file in the folder with your protected downloads that says (per a Calguy post):

Code: Select all

      <Limit GET POST>
          order deny, allow
          deny from all
          allow from 127.0.0.1
      </Limit>