此方法只針對 discuzX2.5
找到 sourcefunctionfunction_filesock.php 檔案
搜尋程式碼
if(function_exists(‘curl_init’) && $allowcurl) {
改為
if(function_exists(‘curl_init’) && function_exists(‘curl_exec’) && $allowcurl) {
原因:WordPress 主機空間商禁用了 curl_exec 函式導致。