Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set in /home/digita33/public_html/inc/utils.inc.php on line 1053
I highlighted the two posibilities above. This is a hosting issue. Go into admin->tools->Host Tools under the audit tab. Is anything showing up a failed?
You can get around that problem by changing that line of code from this.
curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 1);
to This
curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 0);
Or comment out the line like this.
//curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 1);
But that is just a band-aid, not a fix. That change can cause problems with some features on the site. Anything that uses curl. Such as facebook modules, and perhaps rss feeds as well. Could be other problems.
Your host is not fully compliant with dolphins hosting requirements, so the proper solution is to get your host to correct it, or find another host if they refuse.