欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

織夢(mèng)dedecms不能下載遠(yuǎn)程圖片實(shí)現(xiàn)圖片本地化解決方法

  發(fā)布時(shí)間:2016-11-03 21:07:14   作者:佚名   我要評(píng)論
這篇文章主要介紹了織夢(mèng)dedecms不能下載遠(yuǎn)程圖片實(shí)現(xiàn)圖片本地化解決方法,需要的朋友可以參考下

DEDE圖片本地化失效的主要原因:
服務(wù)器上的運(yùn)行環(huán)境中禁用了fsockopen()函數(shù)

解決方案一:

在用fsockopen()的地方用stream_socket_client()函數(shù)代替。

具體修改地方是 /include/dedehttpdown.class.php 第507行

$this->m_fp = @fsockopen($this->m_host, $this->m_port, $errno, $errstr,10);

替換為

$this->m_fp = @stream_socket_client($this->m_host . ':' . $this->m_port, $errno, $errstr,10);

解決方案二:

編輯php.ini,找到disable_functions,把其中的fsockopen去掉

若上述方案無(wú)法解決,那么分析下php.ini配置文件中allow_url_fopen是否是開(kāi)啟狀態(tài);

相關(guān)文章

最新評(píng)論