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.

My problem is... about a month ago, my function works fine, but now, no matter what I did

it can't upload picture to an Event any more

my event parameter as below

$event_param = array(
                "access_token" => $access_token,
                "name" => stripslashes($subject),
                "start_time" => $fb_start_time,
                "end_time" => $fb_end_time,
                "location" => stripslashes($location),
                "privacy_type" => "OPEN",
                "description" => $content
            );
            $event_param[basename($file)] = '@' . realpath($file);

$result = $facebook->api("/me/events", "post", $event_param);

And I use console to log success callback

the file part as below

"98398fafd868ada95b21e868d0926ead.jpg"=>"@/var/www/html/zendt1/public/pictures/ricky496/98398fafd868ada95b21e868d0926ead.jpg"

I'm sure this pictures exist and I remember to set fileUpload option true

I did get the event on facebook, too. But still without any picture

that's driving me crazy

Hope anyone can help...

share|improve this question
IIRC, there’s a bug when having the events with timezone migration enabled. Search the bug tracker, I think there are reports for the image upload not working in this case. – CBroe Sep 5 '12 at 15:39
I use ISO-8601 standard time format. You mean if I handle the timezone issue, image uplaoding will work again? – Dayo Choul Sep 5 '12 at 18:56
Problem Solved! Thx a lot – Dayo Choul Sep 7 '12 at 9:04

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.