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