Oh it's all clear now!! Done, AND I have a bit of EXCELLENT news on top of that: now the city book WORKS!
Strangely enough no Great Zero yet, in fact, many city locations are missing now.
- Show Spoiler
- Screenshot 2020-07-31 09.26.11.jpg (73.97 KiB) Viewed 15134 times
But eh, we just went from two remaining bugs to just the one, so who's complaining
Docker: oh wow, I'd LOVE to have the server installation as a docker file - it would make it such a breeze to install Dirtsand and keep it up to date... ever since my friend introduced me to Docker, I'd never go back.
FYI I'll share the story of my web-database connection woes, but once again, I'm NOT asking for solutions here... I just share it for the sake of sharing.
This the yaml file (well, part of, I left out the containers I use for non-Uru related stuff) I'm currently using:
That image is working like a charm. The web part is great for hosting the static pages such as the welcome page etc, and of course having PostgreSQL in docker is sheer magic. Recently I went from v11 to v12 and back without any issues (for the record, both work just fine).
However, I can't get my website to display information from the database - it's giving the error "Call to undefined function pg_connect()".
After some research, I found out that you can't use the php:apache image for that because it's indeed missing the pg_connect drivers. Instead, you need a php:fpm image in combination with an apache image. No matter what I try, I just can't get that to work (I keep getting a 502 gateway error as soon as I fire up the containers). I found
this site and also a
blog post with a ready made image, but none of those seem to be able to display the site at all.
Again, this is NOT a problem I'm dumping here, I'm just sharing information. I'll keep searching for a solution, after all, it took me "only" a year to get a working MOUL server so I still have time to sort all that