jamct / DoorsignEPD

Doorsign with E-Paper-Display with ESP32. Loading images from webserver.
GNU General Public License v3.0
100 stars 36 forks source link

Check gd enabled #1

Closed noxorius closed 6 years ago

noxorius commented 6 years ago

Hi if gd ein NOT enabled the is only a 500 (not responding) return code. It wold be fine if gd is checked in the server index.php eg:

@@ -47,6 +47,10 @@ ^M $displayWidth = explode("x",DISPLAYS[$displayType]['size'])[0];^M $displayHeight = explode("x",DISPLAYS[$displayType]['size'])[1];^M +#check GD support +if ( ! extension_loaded('gd')) {

Best NoXorius

jamct commented 6 years ago

Good idea. I will add in next update.

jamct commented 6 years ago

Merged.