Fatal error: Call to undefined function: imagecreate()

后端 未结 8 789
难免孤独
难免孤独 2021-02-06 20:59

I\'m trying to put some graphics on a web page and at my prototype at the computer it\'s all working fine at the localhost. But now I uploaded the files to a server and I\'m hav

8条回答
  •  生来不讨喜
    2021-02-06 21:48

    Your server most like does not have GD (the built in PHP image processing library) enabled. You can check this by looking for "GD" in the output of :

    
    

    If not, check the PHP docs on how to enable it: http://www.php.net/manual/en/book.image.php

提交回复
热议问题