dompdf 图像(在 codeigniter 中)
我正在创建一个包含 3 张图像的 pdf。
- 2 个图像来自我自己的服务器
- 1 个来自外部服务器
- DOMPDF_ENABLE_REMOTE 设置为 true
- 所有图像均通过
现在的问题是 3 个图像中只有 1 个可以工作,即外部服务器的一个。 测试了很多组合后,它会从除我自己的服务器之外的任何其他服务器中提取任何图像。我不知道发生了什么事。
为什么只有我自己的服务器出现问题?
谢谢
I'm creating a pdf that has 3 images.
- 2 images are from my own server
- 1 is from an external server
- DOMPDF_ENABLE_REMOTE is set to true
- all images are called via
<img src="http://domain.com/image.jpg" />
now the problem is that of the 3 images only 1 works, the external server one.
Having tested a whole lot of combinations, it will pull any images from any other server but my own. I dono what's going on.
Why is it only my own server that is causing the problem?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。它作为服务器和防火墙阻止来自自身的请求。
例如 wget http://myserver.com/image.jpg 无法正常工作
Worked it out. It as the server and the firewall that prevented requested from itself.
e.g. wget http://myserver.com/image.jpg wasn't working