I got this error message:
CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in.
safe_mode is turned off on my web hosting.
open_basedir is "".
How do I resolve this?
|
I got this error message:
safe_mode is turned off on my web hosting. open_basedir is "". How do I resolve this? |
||||
|
|
|
The workaround is to implement redirection in PHP code. Here is my own implementation. It has two known limitations:
The code:
|
|||||||
|
|
The only place where this warning message is printed is in ext/curl/interface.c
As you can see from the if-condition either open_basedir or safe_mode must be enabled. |
|||
|
I encountered a similar situation a while back and found the solution below. If you know generally where you'll be redirected to this might work for you.
|
|||
|
|
|
Never tested in real environment but has more transparency with curl_exec (no problem with header and returntransfer options).
} |
|||||
|