PHP、TimThumb 过滤器无法在线工作

发布于 2024-10-27 15:12:11 字数 722 浏览 1 评论 0原文

来自以前使用过 Timthumb 的人的一点帮助。

http://themes.amplus.gambit.ph/wp-content/themes /amplus/functions/timthumb.php?src=http://themes.amplus.gambit.ph/wp-content/uploads/2011/02/12979795614923485443_a1967ff888_b.jpg&w=860&h=300&f=5,255,0 ,0,0

由于 GET 参数 f=5,255,0,0,0,该图像应染成红色。当我在本地执行此操作时,它会呈红色,但在线时不会应用任何过滤器。

没有出现 PHP 错误,并且上传的代码已经在本地进行了测试,没有出现任何问题。文件夹的权限是正确的,文件是本地可用的,PHP版本足够高5.2.10,支持GD,总之,一切看起来都不错。

有人知道为什么会发生这种情况吗?我在网上找不到任何关于此的信息。

A little help from those who’ve used Timthumb before.

http://themes.amplus.gambit.ph/wp-content/themes/amplus/functions/timthumb.php?src=http://themes.amplus.gambit.ph/wp-content/uploads/2011/02/12979795614923485443_a1967ff888_b.jpg&w=860&h=300&f=5,255,0,0,0

This image should be tinted red because of the GET parameter f=5,255,0,0,0. This is tinted red when I do it locally, but it no filters are applied when it’s online.

There’re no PHP errors showing up, and the uploaded code is already tested locally without a hitch. The permissions of the folders are correct, the file is locally available, the PHP version is high enough 5.2.10, GD is supported, in short, everything looks okay.

Anyone got a clue why this is happening? I couldn’t find anything online about this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌逼全场 2024-11-03 15:12:11

Timthumb 过滤器需要使用 PHP 捆绑的 GD 库,因为该版本包含一些必要的 GD 函数,这些函数未包含在非捆绑的函数中。更具体地说,带有捆绑 GD 库的 PHP 应将这些语句显示为 TRUE

function_exists('imagefilter')
function_exists('imagerotate')
function_exists('imagecreatetruecolor')
function_exists('imageconvolution')

Timthumb filters require PHP's bundled GD library to be used since this version include some necessary GD functions which are not included in the non-bundled ones. More specifically, PHP with a bundled GD library should show these statements as TRUE:

function_exists('imagefilter')
function_exists('imagerotate')
function_exists('imagecreatetruecolor')
function_exists('imageconvolution')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文