Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的本地服务器(MAMP)上使用 GD 创建了一个 PHP 应用程序,一切正常,现在我把它放到网上它显示不同......
通过比较phpinfo()本地服务器和实时服务器,我可以看到唯一的区别是 FreeFont 版本(2.2.1 和 2.4.4)。我可以在专用服务器上访问 WHM,但看不到我如何更新这个版本,所以一切都恢复正常了!
phpinfo()
我的 Apache 和 WHM 技能有限,但必须有一个半简单的方法来做到这一点?
您需要升级 FreeType 的开发库,因此下次通过 WHM EasyApache 编译 PHP 时,它会在构建 FreeType 扩展时使用来自 FreeType 的较新的 lib 文件。
在 CentOS 上,做yum install freetype-devel或yum update freetype-devel因为你可能已经安装了它。然后通过 EasyApache 重建 PHP,你应该有更新的版本。
yum install freetype-devel
yum update freetype-devel