I am trying to create something like http://rpc.pingomatic.com/ (it's only a test for now).
I installed WordPress on localhost, and I create a page with the following code:
<?php
ob_start();
var_dump($_POST);
$content = ob_get_clean();
$handle = fopen("info.txt", "w");
fwrite($handle, $content);
fclose($handle);
?>
I added the page to the Update Services in WordPress.
Then I tried to post an article, but the test page wasn't loaded (I also looked at the Apache log).
Why WordPress did't post the article to the test page?
Thanks in advance for the help!