Forum Moderators: coopster

Message Too Old, No Replies

how to test if CURL is installed?

         

dulldull

4:15 pm on Apr 18, 2009 (gmt 0)

10+ Year Member



I'm learning CURL command and when i copyed examples provided by different online tutorials, i encountered a lot of errors.

Do you know how to test if my ISP installed the whole library properly?

thanks a lot!

dreamcatcher

5:18 pm on Apr 18, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Easiest way is to check your PHP configuration. In a text editor create a blank .php file and type the following:

<?php
phpinfo();
?>

Then upload to your server and access the file in your browser. This will detail what modules are installed.

dc

dulldull

6:47 am on Apr 20, 2009 (gmt 0)

10+ Year Member



Thanks DC!