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
Non admin users will I think not be able to login to the admin screen. But they should be able to login to /dav.php/ in the browser.
Even that was not working for me with 0.10.1 and after wasting a couple of hours and adding a lot of debug statements to the code base I realized that the Authorization HTTP header sent from the client did not make it to Baikal / SabreDAV.
In baikal\vendor\sabre\http\lib\Auth\Digest.php the getDigest() function just returned an empty string. Therefore authentication was failing.
RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
On second look I then noticed that the original Baikal release .zip already contains a .htaccess file in this directory with similar content. For whatever reason the original .htaccess file got removed by my hoster (Ionos). After re-uploading the original baikal release .zip with all the files everything was working again
Baikal version: 0.9.4
Expected behaviour: Successful login
Current behaviour: Says falsely that credentials are wrong
Steps to reproduce:
The text was updated successfully, but these errors were encountered: