The server I'm hosting my site on
is at PHP5 7.2.13 and cURL 7.15.5
I need to connect to Amazon's WebServices to automate my order processing to my warehouses.
The Pre-reqs for Amazon's Webservices with PHP are
PHP 5.2.8 or later (which I have on my server)
cURL 7.18.0 or later (which I do not have on my server)
I have successfully installed cURL with ssh2 support into a directory under the space I have access to ../htdocs/curl and have confirmed the needed includes exist needed in the following.
To use PHP's cURL support you must also compile PHP --with-curl[=DIR] where DIR is the location of the directory containing the lib and include directory there should be a folder named curl which should contain the easy.h and curl.h files. There should be a file named libcurl.a located in the lib directory. Beginning with PHP 4.3.0 you can configure PHP to use cURL for URL streams --with-curlwrappers.
So is it possible to 'bind' an existing php code with cURL support into a 'user specified target directory', and what is the needed ./configure command to do so.
Again, any suggestions are greatly appreciated.
Peggy