hey there is there a way to deactivate this notice?cause the rest of my scripts on my server need the safe mode on
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set in /home/open2sha/public_html/new/inc/utils.inc.php on line 1053
Yea. edit inc/utils.inc.php and at about line 1046 change this.
curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 1);
To This.
curl_setopt($rConnect, CURLOPT_FOLLOWLOCATION, 0);
However, keep in mind that some features of dolphin may not work properly. Things that use curl and have to follow location. That is the page was redirected and curl needs to go to the new location. With that disabled it won't. So some RSS feeds, some facebook modules, ect may not work properly.
But on some servers a per dir ini file can be used which may allow you to disable safe_mode for just the folder dolphin is in. So talk to your host about it.