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 found a lot of diferent source's to do this but it is still not working, can you help me please?

if( isset( $_POST[ 'enviar_imagen' ] ) )
{
$facebook = new Facebook(array(
    'appId' => $app_id,
    'secret' => $app_secret
));

$facebook->setFileUploadSupport(true);

$args = array(
    'message' => $_POST[ 'img_desc' ],
    'source' => '@' . realpath( '/templates/images/font.gif' ), //'source' => $info->directory.$info->filename,
    'access_token' => $_SESSION[ 'selected_page' ][ 'access_token' ]
);

$data = $facebook->api('/'.$_SESSION[ 'selected_page' ][ 'id' ].'/photos', 'post', $args);
}

I get this errors:

Warning: curl_setopt_array() [function.curl-setopt-array]: open_basedir restriction in effect. File() is not within the allowed path(s): (/home2/sg2012:/usr/lib/php:/usr/local/lib/php:/tmp) in /home2/sg2012/public_html/sgproducciones.net/fanpages/facebook/base_facebook.php on line 936

Fatal error: Uncaught CurlException: 3: No URL set! thrown in /home2/sg2012/public_html/sgproducciones.net/fanpages/facebook/base_facebook.php on line 967

share|improve this question
thank you, sorry about that i'm new here. – Nelson Galdeman Graziano Nov 4 '12 at 1:20

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.