Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
/*
* If you see something like this on the Dashboard after you've configured Reputation Management,
*
* Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /home/raamdev/public_html/wordpress/wp-content/plugins/reputation-management/reputation-management.php on line 113
*
* then your web host has disabled the file_get_contents() function for security reasons. To get the plugin to work, you can try using cURL instead (PHP must be compiled with cURL enabled, but most web hosts already do this for you).
*
* Open up the reputation-management.php file in a text editor and edit it as follows:
/*
// Search for this line:
$string = file_get_contents("http://ahlul.web.id/public/technorati2rss/technorati.php?page=".$pages."&q=".urlencode($q));
// And replace it with this:
$url = "http://ahlul.web.id/public/technorati2rss/technorati.php?page=".$pages."&q=".urlencode($q);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$string = curl_exec($ch);
curl_close($ch);
// Now search for this line:
$string = file_get_contents("http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&start=".$page."&q=".urlencode($q));
// And replace it with this:
$url = "http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&start=".$page."&q=".urlencode($q);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$string = curl_exec($ch);
curl_close($ch);
// Save the file, re-upload it to your web server (choose overwrite if prompted) and then try reloading the WordPress Dashboard.