ckulka/baikal-docker

Permission denied to create directory Collection.php

jeremielebot opened this issue · 2 comments

I've installed Baikal Nginx on my docker instance.

It runs alongside a Nginx Proxy Managear container. It forwards http to port baikals port 80.

I've tried synchronizing Joplin and Thunderbird. I get more or less the same error : "PHP message: Sabre\DAV\Exception\Forbidden: Permission denied to create directory in /var/www/baikal/vendor/sabre/dav/lib/DAV/Collection.php:104"

Why is it trying to create a directory in a php file ?

#0 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(1210): Sabre\DAV\Collection->createDirectory()
#1 /var/www/baikal/vendor/sabre/dav/lib/DAV/CorePlugin.php(560): Sabre\DAV\Server->createCollection()
#2 /var/www/baikal/vendor/sabre/event/lib/WildcardEmitterTrait.php(89): Sabre\DAV\CorePlugin->httpMkcol()
#3 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(472): Sabre\DAV\Server->emit()
#4 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(253): Sabre\DAV\Server->invokeMethod()
#5 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(321): Sabre\DAV\Server->start()
#6 /var/www/baikal/Core/Frameworks/Baikal/Core/Server.php(119): Sabre\DAV\Server->exec()
#7 /var/www/baikal/html/dav.php(69): Baikal\Core\Server->start()
#8 {main}" while reading response header from upstream, client: 172.17.0.1, server: _, request: "MKCOL /dav.php/locks/ HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php8.0-fpm.sock:", host: "baikal.MYDOMAIN.com"
172.17.0.1 - test3 [29/Mar/2021:21:19:41 +0000] "MKCOL /dav.php/locks/ HTTP/1.1" 403 291 "-" "Joplin/1.0" "192.168.1.1"
2021/03/29 21:19:51 [error] 21#21: *346 FastCGI sent in stderr: "PHP message: Sabre\DAV\Exception\Forbidden: Permission denied to create directory in /var/www/baikal/vendor/sabre/dav/lib/DAV/Collection.php:104

#0 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(1210): Sabre\DAV\Collection->createDirectory()
#1 /var/www/baikal/vendor/sabre/dav/lib/DAV/CorePlugin.php(560): Sabre\DAV\Server->createCollection()
#2 /var/www/baikal/vendor/sabre/event/lib/WildcardEmitterTrait.php(89): Sabre\DAV\CorePlugin->httpMkcol()
#3 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(472): Sabre\DAV\Server->emit()
#4 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(253): Sabre\DAV\Server->invokeMethod()
#5 /var/www/baikal/vendor/sabre/dav/lib/DAV/Server.php(321): Sabre\DAV\Server->start()
#6 /var/www/baikal/Core/Frameworks/Baikal/Core/Server.php(119): Sabre\DAV\Server->exec()
#7 /var/www/baikal/html/dav.php(69): Baikal\Core\Server->start()
#8 {main}" while reading response header from upstream, client: 172.17.0.1, server: _, request: "MKCOL /dav.php/locks/ HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php8.0-fpm.sock:", host: "baikal.MYDOMAIN.com"
172.17.0.1 - test3 [29/Mar/2021:21:19:51 +0000] "MKCOL /dav.php/locks/ HTTP/1.1" 403 291 "-" "Joplin/1.0" "192.168.1.1"

Hi @jeremielebot ,

not sure if that's a file permission issue inside the container or something else. Even weirder is that this method always throws an exception (https://github.com/sabre-io/dav/blob/master/lib/DAV/Collection.php#L104).

Does this come when you start the container, or does it start fine and only throws the exception why trying to synchronize with Thunderbird/Joplin?

If the file permissions all look good (please check the owner/group owners of the folders + files), then it might be an issue for sabre-io/Baikal - they know their code better than I do and might have seen this before.

I've figured out at least one of my problems.

Joplin relies on webdav. And to my knowledge, this container only supports caldav and cardav. So, this one's on me.

I'll continue to dig around with Thunderbird. Thanks for the reply.