Ini plugin wordpress bikinannya om Josh. Nama lengkap pluginnya Flickr Tag Cloud Widget. Kalau mau download, langsung ke link diatas aja ya.
Flickr Tag Cloud Widget, punya masalah yang sama dengan beberapa plugin wordpress lainnya, terkait dengan fopen wrappers.. So, here's the unofficial fix for Flickr Tag Cloud Widget :
Search this text in flickr-tagcloud-widget.php : ( line 151 and 212, i guess ).
And replace it with this :
PHP:
-
$ch = curl_init();
-
curl_setopt($ch,CURLOPT_URL, $url);
-
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
-
$rsp = curl_exec($ch);
-
curl_close($ch);
overall solution for this plugin :
PHP:
-
if(ini_get('allow_url_fopen') ==
1 ||
ini_get('allow_url_fopen') ==
"on"){
-
-
} else {
-
$ch = curl_init();
-
curl_setopt($ch,CURLOPT_URL, $url);
-
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
-
$rsp = curl_exec($ch);
-
curl_close($ch);
-
}
CMIIW, and good luck!