0

我正在尝试在我的网站上运行评级和评论软件。我无法显示头像或验证码图像。如何在运行 Windows IIS 的服务器上进行调整?

extension=php_gd2.dll

<label class="xcFormLabel" for="idRegAvatar">
  Avatar - images will be resized to 80px x 80px (100k):
</label>
<div class="xcDivClear">
</div>
<input type="file" name="avatar" id="idRegAvatar" value="" class="xcRegInputText" />
<br /><br />
<img class="xcRegCaptchaImg" src="../xcommentpro/Captcha.php?type=reg">
<br /><br />
<label class="xcFormLabel" for="idRegCaptcha">
  Enter the code above:
</label>
<br />
<input type="text" name="captcha" id="idRegCaptcha" class="xcRegInputText" />
<br /><br />

出现以下错误:

致命错误:在第 64 行的 C:\www\recipes4cakes\xcommentpro\fileupload.php 中调用未定义的函数 imagecreatefromjpeg()

4

1 回答 1

0

错误来自 GD 库的问题。您需要在 phpinfo()(GD 部分)中检查 JPEG 支持,否则 imagecreatefromjpeg() 函数将不起作用。

于 2012-09-20T06:45:25.230 回答