Php SDK Facebook出错 - 奇怪的错误

时间:2012-06-18 19:39:54

标签: php facebook sdk

  if(isset($basic)){
    function meme(){
    $i = 1;
    while(file_exists("pg/".$i.".jpg")){
    $file[$i] = "pg/".$i.".jpg";
    $i++;
    }
    }
    $file[1] = 'pg_1.jpg';
    $file[2] = 'pg_2.jpg';
    $file[3] = 'pg_3.jpg';
    $file[4] = 'pg_4.jpg';
    $file[5] = 'pg_5.jpg';
    $file[6] = 'pg_6.jpg';
    $file[7] = 'pg_7.jpg';
    $file[8] = 'pg_8.jpg';
    $file[9] = 'pg_9.jpg';
    $file[10] = 'pg_10.jpg';
    $file[11] = 'pg_11.jpg';
    $file[12] = 'pg_12.jpg';
    $file[13] = 'pg_13.jpg';
    $file[14] = 'pg_14.jpg';

    $tuomeme = 'pg/'.$file[rand(1, 14)];
    $album_details = array(
            'message'=> 'CiaoCiao',
            'name'=> 'CiaoCiaoCiao'
    );
    $create_album = $facebook->api('/me/albums', 'post', $album_details) or die("Errore nella connessione con Facebook");
    $album_uid = $create_album['id'];
    $photo_details = array(
        'message'=> he(idx($basic, 'name')).''
    );
    $finale=$tuomeme;
    $photo_details['image'] = '@' . realpath($finale);
    $upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details) or die("Errore nella connessione con Facebook");

粗体错误是:

  

[18-Jun-2012 19:30:32 UTC] PHP警告:session_start()[function.session-start]:无法发送   会话cookie - 已经发送的标题(输出开始于   /home/xtigbexz/public_html/dev/index.php:27)in   第7行/home/public_html/sdk_php/facebook.php [18-Jun-2012 19:30:32   UTC] PHP警告:session_start()[function.session-start]:无法发送   会话缓存限制器 - 已发送的标头(输出始于   /home/public_html/dev/index.php:27)in   /home/xtigbexz/public_html/sdk_php/facebook.php在第7行[2012年6月18日]   19:30:36 UTC] PHP致命错误:未捕获的CurlException:26:不能   打开文件“”

     

在第423行的/home/public_html/sdk_php/base_facebook.php中抛出

你能帮帮我吗?请!

1 个答案:

答案 0 :(得分:0)

文件/home/xtigbexz/public_html/dev/index.php的第27行正在生成输出。之后您正在调用Facebook API,它正在尝试设置$_SESSION$_COOKIE变量。在脚本生成一些输出后,您无法设置其中任何一个。