I'm trying to install a PHP app on Qoddi but the GD module is not installed :
GD PHP GD extension is required.
How to install it?
Hi Elroi!
GD is not installed by default on the PHP stack but can be added via composer.json : "ext-gd": "*"
https://devcenter.qoddi.com/php/ list all the major PHP extensions available and if you need to install them via composer or if they are available by default.
Cheers!
Matt.
Don't forget to run composer update locally before uploading your repository and to remove the vendor folder (or add it to gitignore)
Thanks a lot! that worked!!