Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm french, sorry for my english. I try to use the Graph API so as to publish a picture on my facebook page but I always obtain this error :

Warning: curl_setopt_array() [function.curl-setopt-array.php]: open_basedir restriction in effect. File() is not within the allowed path(s): (*) in /home/httpd/s/c/i/sciences85000/sciences85.franceserv.com/src/base_facebook.php on line 807 Fatal error: Uncaught CurlException: 3: No URL set! thrown in /home/httpd/s/c/i/sciences85000/sciences85.franceserv.com/src/base_facebook.php on line 819

Here is my send.php :

$link = $_POST['link']; $txt = $_POST['txt']; $FILE_PATH=$link;
$app_config = array('appId' => '***', 'secret' => '***');
$page_config = array('access_token' => '***', 'page_id' => '***', 'fileUpload' => true);
$facebook = new Facebook($app_config); $params = array('access_token' => $page_config['access_token'], 'message' => $txt); $params['source'] = '@' . realpath($FILE_PATH);
$facebook->setFileUploadSupport(true); $post_id = $facebook->api('/'.$page_config['page_id'].'/photos','post',$params); echo 'succes !'; }

I understood that with a local link of any picture which is in the same directory as send.php, it works fine (for example : picture.jpg). But I'd like to use an external link (http://site.com/picture.jpg), is it possible ?

Thanks.

EDIT : I resolved it. You must upload your file, so I added this in my from :

<input type="file" name="file" size="30" value="Choose your photo"><input type="submit" name="upload" value="Upload">

And I set $link = $_FILES['fichier']['tmp_name'];, it works fine. :)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.