0

This is the error I'm getting for this website.

"Message: curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set"

user3071284
  • 6,955
  • 6
  • 43
  • 57
  • Possible duplicate of [curl follow location error](http://stackoverflow.com/questions/2511410/curl-follow-location-error) – John Hascall Jan 08 '16 at 21:56

1 Answers1

0

As it says, you need to go into your php config (maybe /etc/php.ini) and

  • set safe_mode = Off, and
  • unset open_basedir value.

This is disabling some security, so know what you are doing...

John Hascall
  • 9,176
  • 6
  • 48
  • 72