Admin like login/restrictions, but for whole store
- igavemybest
- Captain (CAPT)
- Posts: 388
- Joined: Sun Apr 06, 2008 5:47 pm
Admin like login/restrictions, but for whole store
Is there a way to set up an admin style login (minus the captcha) to view the store at all? So, theoretically, if you were not logged in, you would have 0 access to the store. (new users would be added from the admin side or custom script elsewhere). Hints...suggestions?
Re: Admin like login/restrictions, but for whole store
Edit the web.config file and immediately after the <system.web> tag put:
This will require website authentication to view ANY page, including default.aspx. Effectively the site no longer allows anonymous access.
Code: Select all
<authorization>
<deny users="?"/>
</authorization>
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
- igavemybest
- Captain (CAPT)
- Posts: 388
- Joined: Sun Apr 06, 2008 5:47 pm