views:

19

answers:

1

We changed servers and installed all necessary software and just cannot seem to pin point what is going on. A simple CURL request does not return anything. Command Line CURL commands work just fine. We are using a wrapper for CURL utilizing streams. Do PHP streams require any out of the ordinary configuration? We are using the latest Lamp stack.

This is the var_dump:

The var_dump can be seen at:

http://jinimetrix.com/test.php

A: 

Have you used phpinfo(); to verify that cURL is in fact detected?

Just create a test page containing only:

<?php

phpinfo();

?>

and verify that the section entitled "curl" appears.

Oren
yes Curl is installed and ready.
jini