I'm trying to use the PyroCMS Contact form in a facebook tab.

When displaying the page directly, everything is OK, the form page is displayed as wished without error message. https://facebook.noviris.com/tests/contact

When I integrate this page via a facebook page tab, it displays the form post errors on page load, not after using the submit button. https://www.facebook.com/gwadaweb?sk=app_197712883656289

link|improve this question

75% accept rate
did you saw my answer? Please feedback... THX.- – NomikOS Jan 28 at 13:39
feedback

1 Answer

up vote 0 down vote accepted

Facebook send signed_request parameter to your page tab every time you arrives to your FB page. Firebug shows this clearly.

enter image description here

So a good solution is stop processing your form when this parameter is present.

if ($_POST['signed_request'])
{
    // do not process form
}

Firebug also show the referrer: https://s-static.ak.facebook.com/platform/page_proxy.php?v=4. Maybe you could use this too but do not seems very trusty that this location do not change.

link|improve this answer
thanks nomikOS for your answer i will try to debug with your help... – Khalil TABBAL Jan 30 at 16:55
have tried your solution this morning everything is working now ... great ... thanks for your help ... – Khalil TABBAL Feb 3 at 16:07
@khalil-tabbal You're welcome khalil. That's great! – NomikOS Feb 10 at 14:04
feedback

Your Answer

 
or
required, but never shown

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