How to force user to login
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2007 06:43 PM
I want to make the homepage secure by forcing user to login. Right now when i goto the url, it goes in as a guest, and this is not what i want. Does anybody know how to do that?
Also, how do i plug in my own logo in there ( i guess override the current image)?
I'm using the .exe installer and running in windows server 2003.
Thanks!!
hw
Also, how do i plug in my own logo in there ( i guess override the current image)?
I'm using the .exe installer and running in windows server 2003.
Thanks!!
hw
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 09:57 AM
You can configure Alfresco so that the Guest user is not available, you need to override the authenticationComponent bean
<bean id="authenticationComponent" class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl">
<property name="allowGuestLogin">
<value>false</value>
</property>
</bean>
Read this page to learn how to override alfresco bean services:
http://wiki.alfresco.com/wiki/Repository_Configuration
Thanks,
Kevin
<bean id="authenticationComponent" class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl">
<property name="allowGuestLogin">
<value>false</value>
</property>
</bean>
Read this page to learn how to override alfresco bean services:
http://wiki.alfresco.com/wiki/Repository_Configuration
Thanks,
Kevin
