How do I fix this so my script will work.
Getting this error:
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/halogam1/public_html/xbox.check/xbox.class.php on line 137
Then I ran this script to debug:
<?php
echo ini_get('safe_mode');
var_dump(ini_get('open_basedir'));
?>
Output:
1string(0) ""
I’m not sure what you are asking but it does look like safe mode is enabled for you.
See the comments on http://php.net/manual/en/function.curl-setopt.php
The appropriate snip is: