从服务器下载大量图片(通过cURL
/ file_get_contents
)时,大约99%的图片在网站上流畅显示,但其中一些(约15-20个)超过15k)不要出现。相反,它们会返回403 Forbidden
错误。
对于所有文件和文件夹,权限已设置为777
,但没有任何更改。
还有其他人有同样的问题并且能够解决吗?
答案 0 :(得分:0)
您可以尝试创建一个返回文件内容的PHP脚本
<?php
$file = file_get_contents("path/to/file");
//You can add headers using header("..."); for make sure that images will works.
//var_dump($file);exit; // uncomment to check is it even loading #debug
die($file);
答案 1 :(得分:0)
403图像的文件名全部包含在单词&#34; chat&#34;中。这就是服务器返回403 Forbidden的原因。 希望有人觉得有帮助