Found the problem/solution:
In remoterequest.php maybe the following line is wrong?
&& ! ( ini_get( 'safe_mode' ) && ini_get( 'open_basedir' ) ) ) {
I think it must be:
&& ! ( ini_get( 'safe_mode' ) || ini_get( 'open_basedir' ) ) ) {
In my case, safe_mode is off, but open_basedir is set. In this case
there should be the fallback to socketrequestprocessor.php since cURL
can't be used cause CURL_FOLLOWLOCATION doesn't work.
After editing the line above, the flickr silo works perfect.
John
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/habari-users
-~----------~----~----~----~------~----~------~--~---