我正在开发基于cakephp
的项目
使用phpThumb
插件制作缩略图
需要创建外部图片链接的缩略图
phpThumb
正在从此服务器生成缩略图
http://watermark.propspace.com
但不是来自此服务器
https://propspaceuae.s3.amazonaws.com
我收到此错误Off-server thumbnailing is not allowed
解决这个问题我做了以下
<{1>}文件中的
我更改了phpThumb.config.php
false
nohotlink_enabled
并在$PHPTHUMB_CONFIG['nohotlink_enabled'] = false;
nohotlink_valid_domains
但不适合我
我在这里找到了这个解决方案Link
但这不适合我。
答案 0 :(得分:1)
我通过更改此行
获得了解决方案 $PHPTHUMB_CONFIG['nohotlink_enabled'] = false;
到
$PHPTHUMB_CONFIG['nohotlink_enabled'] = true;
我添加了phpThumb.class.php
文件
var $config_nohotlink_valid_domains = array('propspaceuae.s3.amazonaws.com');
它对我有用。