Pages: 1
Hello,
I am trying to get this installed on a dietpi image.
I have a mariaDB setup with a DB name of photo, a user called photo, hostname is localhost and when i click the install button i get the error "Array ( [0] => No such file or directory )"
im using the docker file of
---
version: "2.1"
services:
piwigo:
image: lscr.io/linuxserver/piwigo:latest
container_name: piwigo
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./config:/config
- ./gallery:/gallery
ports:
- 85:80
restart: unless-stopped
Last edited by dnielso5 (2024-01-08 18:53:52)
Offline
Try using the IP address instead of localhost, which inside a docker container does not resolve to the host serving the DB.
Offline
I thought about that, i get a "connection refused" when using the severs IP address, same with 127.0.0.1
edit: when using http://computerIPaddress i just get a black screen.
Last edited by dnielso5 (2024-01-08 20:38:10)
Offline
so i redid the setup and instead of using docker i did the manual download and install. i got the same issue with a black screen but then i changed the permissions to 777 and everything is now working.
Offline
About 777 see [Forum, post 183419 by erAck in topic 31993] What are the correct permissions for Piwigo files and directories ? and the post it mentions.
Offline
Yes, thank you, ill go back and try to edit my permissions to be more strict
Offline
Pages: 1