Is there a way to check if this is installed? Maybe something in phpinfo()?
I'm doing the call below and I don't get any reply at all. The page just ends when it gets to it.
$postdata = array(
'validation' => '1'
);
$response = http_post_data('../ajax/index_ajax_general.php', $postdata);
print $response;
error_reporting(E_ALL);in the beginning of your script to make sure errors and warnings are outputted. Also, there might be anerror_logfile in your script directory that could have any errors thrown by your script.