If you were using cURL and you started to get this message:
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/~/bla.php on line xxx
ChangeLog
Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are enabled.
http://www.php.net/ChangeLog-4.php#4.4.4
The "fix" is to comment out
Of course if you need that line, you're #(*@'d
=/
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/~/bla.php on line xxx
ChangeLog
Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are enabled.
http://www.php.net/ChangeLog-4.php#4.4.4
The "fix" is to comment out
PHP:
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
=/










