In the current docker container, non-recaptcha generation is broken. The call to /views/captcha?... returns a php stacktrace rather than jpeg image data. The interesting part is:
Call to undefined function ImageJPEG()
As far as I understand, this is because the GD extension bundled with the baseimage is built without jpeg support. I was able to fix this by:
In the current docker container, non-recaptcha generation is broken. The call to
/views/captcha?...
returns a php stacktrace rather than jpeg image data. The interesting part is:Call to undefined function ImageJPEG()
As far as I understand, this is because theGD
extension bundled with the baseimage is built without jpeg support. I was able to fix this by:Which is … a fair bit ugly. But still, maybe we want this in our
Dockerfile
…?Thanks for the great project! ^_^ Best, -Dario