Hello,
I've got a big problem with the DotNetNuke Authentication and hope
that someone could help me. - My system doesn't work as expected.
What I want is that the User is logged in automatically and that the User
can logout and login as the SuperUser (or any other user via username and password).
The following problems occur:
--
Configuration 1: (always asks User for Login Information; Logout is possible; Superuser-Login is possible)
web.config:
<!-- Forms or Windows authentication -->
<authentication mode="Forms">
<forms name=".DOTNETNUKE" protection="All" timeout="60" cookieless="UseCookies"/>
</authentication>
<identity impersonate="true" userName="BLA\bla" password="mypassword" />
<!--
<identity impersonate="true"/>
<authentication mode="Windows">
</authentication>
-->
Configuration 2: (Automated Login, Logout isn't Possible - remains as logged in User when Logout is pressed, Logging in with another User is not possible - due to the problem that automated logged in User remains logged in when logout is pressed)
web.config:
<!-- Forms or Windows authentication -->
<authentication mode="Windows">
<forms name=".DOTNETNUKE" protection="All" timeout="60" cookieless="UseCookies"/>
</authentication>
<identity impersonate="true" userName="Bla\bla" password="mypassword" />
<!--
<identity impersonate="true"/>
<authentication mode="Windows">
</authentication>
-->
---
What should I do or is there any mistake I made that the authentication doesn't work as expected?
Is there anything I should try out or that you could advise me to do in my case?
- Any help will be highly appreciated.