|
|
|
|
|
Location: Blogs onDevelopment+=1; |
 |
| Posted by: Javier Callico |
1/8/2008 |
These are the steps that worked for me:
- Uncommented the line "extension=php_curl.dll" in php.ini file.
- Copied libeay32.dll and ssleay32.dll to C:\WINDOWS\system32.
Note that these two dlls can be found on the PHP folder under the dlls folder. Adding this folder to the Windows PATH variable should also work.
You can use this simple test script - which retrieves and displays yahoo.com homepage - to verify that CURL is now working:
<?php $ch = curl_init("http://www.yahoo.com/"); curl_setopt($ch, CURLOPT_HEADER, 0); curl_exec($ch); curl_close($ch); ?>
|
|
| Permalink |
Trackback |
|
|
|
|
|
By e-mail:info at callicode.com By phone: 416 857 5750 
|
|
|
|
|
|
|
|
|
| DotNetNuke® is copyright 2002-2008 by Perpetual Motion Interactive Systems Inc. |
|