You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 18, 2018. It is now read-only.
"Force user login using CAS" checkbox is not checked (because of different bug with no possibility to access shared resources by anonymous users - all users are then forced to CAS authenticate once I check that option)
Steps:
user logs-in using native owncloud login form (not pressing the "Access using CAS auth" button)
after login, the "Access using CAS auth" button remains displayed on owncloud internal webpage (attaching screenshot).
Yes, once user clicks on "Access using CAS auth" button on login screen and authenticates using CAS, this button is no longer displayed successful login.
The best would be to use "Force user login using CAS" but (as I said) firstly anonymous sharing access has to be fixed as this is the main reason why we use owncloud - share files with outside world.
thanks
The text was updated successfully, but these errors were encountered:
Seems the best idea so far would be to use following apache rewrite config:
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^/$ /index.php?app=user_cas [L,R]
with this rewrite you will get redirected automatically to CAS login (like with checked "Force user login using CAS" option) and you did not break anonymous sharing feature.
This also solves this bugreport as user will always get authenticated using CAS.
Situation:
Steps:
Yes, once user clicks on "Access using CAS auth" button on login screen and authenticates using CAS, this button is no longer displayed successful login.
The best would be to use "Force user login using CAS" but (as I said) firstly anonymous sharing access has to be fixed as this is the main reason why we use owncloud - share files with outside world.
thanks
The text was updated successfully, but these errors were encountered: