Quote:
Originally Posted by KURTZ
with that file i got this:
|
Please read the 1st Post.... This is answered in the Q&A listed there
Quote:
Question:
I see an error that says "Warning: curl_setopt_array() [function.curl-setopt-array]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in [path]/bitly.php"
Answer:
Looks like that is a safe_mode issue... but should be easily fixable. In bitly.php, find:
PHP Code:
$options[CURLOPT_FOLLOWLOCATION] = true;
Change it to:
PHP Code:
$options[CURLOPT_FOLLOWLOCATION] = false;
$options[CURLOPT_HEADER] = true;
You may also want to do the above in twitter.php as well, if you are still getting the same error message just to be on the safe side.
|