cancel
Showing results for 
Search instead for 
Did you mean: 

How to force user to login

handokowidjaja
Champ in-the-making
Champ in-the-making
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
1 REPLY 1

kevinr
Star Contributor
Star Contributor
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