Fatal error: Call to undefined function: imagecreate()

后端 未结 8 797
难免孤独
难免孤独 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:45

    If you are using a Linux machine then execute this command from console:

    sudo apt-get install php5-gd
    

    to install the php_gd2.dll extension. It will then work after an Apache restart.

    PS: should first check your current php version

    php -v
    

    In My Case:

    PHP 7.3.5-1+ubuntu18.04.1+deb.sury.org+1 (cli) (built: May 3 2019 10:00:24) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.5, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.3.5-1+ubuntu18.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies

    So, my PHP version is 7.3, so, the command for my version is :

    sudo apt-get install php7.3-gd
    

提交回复
热议问题