[Solved] Cannot share file with custom workspace

CentOS 7, Docker version, Pydio 8.2.1
New installed with https://hub.docker.com/r/linuxserver/pydio/

New installed pydio, and I’ve created new workspace named “photos” to sync my photos from my iPhones and iPad.

Just now, I find that photos in default workspace “My Files” can created public share and works fine. But files in workspace “photos” can create public share successfully, but visit share link, you’ll get an error: “Cannot find file .”

Here’s docker install code:

docker network create --driver bridge --subnet 172.22.5.0/24 pydio

docker run -d --restart=always \
  --name pydio-mariadb \
  --network pydio \
  --hostname pydio-mariadb \
  -v /data/pydio/mariadb:/var/lib/mysql \
  -p 12306:3306 \
  -e TZ='Asia/Shanghai' \
  -e MYSQL_ROOT_PASSWORD=12345678 \
  -e MYSQL_DATABASE=pydio \
  -e MYSQL_USER=pydio \
  -e MYSQL_PASSWORD=123456 mariadb

docker run -d --restart=always \
  --name=pydio \
  --network pydio \
  --hostname pydio \
  --link pydio-mariadb:mariadb \
  -v /etc/localtime:/etc/localtime:ro \
  -v /data/pydio/config:/config \
  -v /data/pydio/data:/data \
  -e PGID=1001 -e PUID=1001 \
  -p 11080:80 \
  -p 11443:443 \
  linuxserver/pydio

Hi,
i reproduced your case and it could be a folder rights issue, could you tell me the path that you gave to your workspace “Photos” and if you do a ls -la for example what are the rights of the folder.

1 Like
[root@centos7 data]# la /data/pydio-linux/data/
total 44
drwxr-xr-x 10 www  www  4096 Sep  6 17:24 .
drwxr-xr-x  6 root root 4096 Sep  6 15:26 ..
drwxrwxrwx  7 www  www  4096 Sep  7 00:37 cache
drwxrwxrwx  3 www  www  4096 Sep  6 15:49 files
drwxrwxrwx  2 www  www  4096 May 16  2017 logs
drwxrwxrwx  3 www  www  4096 Sep  6 15:31 personal
drwxr-xr-x  3 www  www  4096 Sep  6 17:24 photos
drwxr-xr-x  5 www  www  4096 Sep  6 17:10 plugins
drwxrwxrwx  2 www  www  4096 May 16  2017 public
drwxrwxrwx  3 www  www  4096 Sep  6 15:32 tmp
-rw-rw-rw-  1 www  www   331 May 16  2017 web.config

Here it is, I’ll try to modify its folder rights to see if the problem will get resolved. Thanks a lot!

Problem solved! Thanks!
By the way, perhaps the right of the workspace folder should be set as 777 automatically for better experience.