简体   繁体   中英

Amazon EC2 instance doesn't run codeigniter application after installing php gd library

I'm migrating a codeigniter application to amazon. I noticed that the captcha is not displaying and after search I found out that php gd library must be installed. The instance runs php 5.5.38 so I installed it this way

sudo yum install php55-gd

I've checked like this

if(extension_loaded('gd')){
    echo 'yes';
}
else{
    echo 'no';
}

and the result is 'yes'

using phpinfo() I found that it has been installed but the codeigniter application stopped working and the page doesn't display anything, it just keeps loading until I get max execution time error.

Any ideas? Thanks in advance.

我发现“ random_int”功能无法正常工作,因此必须编辑助手以创建随机字符

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM