Describe the bug
There are no images showing in the Image Select window after uploading. The images are being uploaded just fine and can be viewed with a direct link to the file. (e.g. https://url/uploads/images/gallery/2020-02/Float.jpg)
Also, the Firefox console gives an error when opening the window: TypeError: "image is undefined"
Interestingly Draw.io, attachments and cover images are working just fine.
Steps To Reproduce
Steps to reproduce the behavior:
Expected behavior
I would expect the newly, and previously uploaded images to show up in the 'Image Select' window.
Screenshots


Here you can see that there are images uploaded to the server, but nothing is showing up.
My Configuration:
Additional context
This issue seems to be very similar to #1716. Unlike that issue, this is still occurring with the newest BookStack version.
Alright, I've found the issue. It did have to do with lighttpd. The url rewrite expression I used apparently did not include query strings.
For anyone using BookStack with Lighttpd, use this url.rewrite query:
```
url.rewrite-if-not-file = (
"^(.*)" => "/index.php$1
)
Most helpful comment
Alright, I've found the issue. It did have to do with lighttpd. The url rewrite expression I used apparently did not include query strings.
For anyone using BookStack with Lighttpd, use this url.rewrite query:
```
url.rewrite-if-not-file = (
"^(.*)" => "/index.php$1
)