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 use the smarty template engine and I have placed some Facebook meta tags on my site. It appears that Facebook's scrapper is faster than the rendering smarty rendering engine.

Here is a link to the LINT tool's output: https://developers.facebook.com/tools/debug/og/echo?q=http%3A%2F%2Fslipdragon.com%2Fvideo%2F6XA881OYRRHB%2FBmx-Street-Video--Vasya-L--Carhartt-Team

In my template I drawing the meta tags from variables assigned by the template engine:

<meta property="og:title" content="{$vdo.title|strip_tags|strip}" />
<meta property="og:description" content="{$vdo.description|strip_tags|strip}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://slipdragon.com{$smarty.server.REQUEST_URI}" />

Any ideas how to set this up? It appears that smarty rendering of the template is too slow for Facebook's scrapper. According to the LINT tool Facebook isn't evening seeing a og:title or any other meta tag properly populated.

share|improve this question
Hmm, I think something else is wrong. Are you positive the page is rendering properly when you visit in your browser with exactly same URL as Facebook. – Toby Allen Feb 26 '12 at 20:40
If you compare the source of Facebooks LINT tool with the actual page source you will see that the actual page source shows the meta tags properly. – Tegan Snyder Feb 26 '12 at 22:42

3 Answers

activate debugging and see how long the actual rendering of the template took. Unless you're doing some really funky things or screwed up badly - Smarty is not causing the delay. It's much more likely that some of your database queries, external resource lookups, etc. are the cause.

share|improve this answer
Rodney thanks for the response. Does the template engine actually piece the page together in an async fashion? I am running a few queries. – Tegan Snyder Feb 26 '12 at 21:43
There is nothing asynchronous about PHP. There is only one "thread". you can either push in your data up front (using assign()), or have it pulled in (by plugin functions). – rodneyrehm Feb 26 '12 at 22:43
Smarty caches your templates and turns them into PHP pages that are executes the next time. Even if what you say is correct, the Meta tags are in the HEAD section so they would be rendered first. Your barking up the wrong tree. – Toby Allen Feb 26 '12 at 22:46
up vote 0 down vote accepted

The problem was authentication. Facebook's LINT tool is not able to correctly parse the page because it is behind login credentials. Thanks!

share|improve this answer

I checked your url.

The values are blank, its got nothing to do with speed, Smarty tags are blank when they dont exist.

Somehow

{$vdo.title|strip_tags|strip}
{$vdo.description|strip_tags|strip}

dont exist, please try locally and get the values in before involving facebook.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.