I am adding the proper meta tages to my video sharing website but Facebook continues to say they are not found. However, when I view source I see them. Can you please look at my source and tell me what I am doing wrong?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I had the same problem a while ago on a server running an old version of php (5.2.x)
The same pages would be parsed flawlessly on other servers yet they failed on this one.
I compared the headers and voilá, “Content-length” wasn’t there. After adding it, everything started to work.
These are the headers for your page:
Date Wed, 31 Aug 2011 17:08:45 GMT
Server Apache
X-Powered-By PHP/5.2.17
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
Content-Encoding gzip
Keep-Alive timeout=5, max=100
Connection Keep-Alive
Transfer-Encoding chunked
Content-Type text/html
Content-Length is missing.
Facebook will not parse it until it finds the Content-Length header with a proper value.
I hope this helps
cheers
kal