Loading php_curl.dll? [message #169740] |
Fri, 24 September 2010 12:51 |
Gilles Ganault
Messages: 27 Registered: September 2010
Karma:
|
Junior Member |
|
|
Hello
A small CMS I'm checking out requires the "cURL Module" and "GD
Library".
So from the 5.3.3 ZIP file, I extracted php_curl.dll and php_gd2.dll
to the directory where php-cgi.exe and its dependencies are located,
and edited php.ini thusly:
==============
[PHP]
extension_dir = ".\"
extension=php_pdo_sqlite.dll
extension=php_sqlite3.dll
extension=php_gd2.dll
extension=php_curl.dll
==============
But when I call phpinfo.php, the web server (php-cgi.exe, I guess)
complains that it can't find php_curl.dll, while the other modules are
OK: "Warning: PHP Startup: Unable to load dynamic library
'.\php_curl.dll' - The specified module could not be found."
Does someone know if php_curl.dll require other files to work?
FWIW, here's the contents of my mini-PHP site:
==============
;tiny web server
shttpd.conf
shttpd.exe
index.php
php-cgi.exe
php.ini
php5ts.dll
php_curl.dll
php_gd2.dll
php_pdo_sqlite.dll
php_sqlite3.dll
==============
Thank you.
|
|
|