Hello,
I installed alfresco 6.2.1 on debian server with docker.
But from windows, I cannot create a file with webdav.
It's very weird because :
- I can read existing files
- I can remove existing files
- I can edit existing files
- I cannot create a file.
I tried to create a file with 4 ways :
- Drag and drop from desktop to webdav window : I got "A folder with same name already exists"
- with command:
echo test > file.txt
I got "access denied"
- from python code
with open("file.txt", "w") as file:
file.write("test")
I got "permission denied"
- with right-click>new>text document : I got the window freezes
From my ubuntu desktop the webdav works fine. ..
I used this file for installation : https://github.com/Alfresco/acs-community-deployment/blob/master/docker-compose/docker-compose.yml
Any idea ?