http_post to c5 single page

Permalink
I created a single page on my c5 site. There is an another website that sends data to that page via http_post.
But I am unable to retrieve the values sent by the http_post. I have tried $_POST and $this->post.
Please is there something i need to enable or disable to get this to work.

 
olsgreen replied on at Permalink Reply
olsgreen
No, you should be able to retrieve the values just fine via $_POST.

Try logging the $_POST vars to file and see whether you get anything:

$contents = implode("\r\n",$_POST);
file_put_contents("/path/to/your/file.txt",$contents);


Oliver