1. In order to make an http (or https) request with PHP, I need to
recompile php with cURL.
2. In order to install CURL I have to upgrade my openssl rpm, even
though I'm runing a version of linux that's only like 3 months old
(fedora c2 stable), because curl needs libcrypto.so.4.
3. In order to install libcrypto.so.4 I have to upgrade my openssl
(took me forever to figure that out).
4. Upgrading my openssl rpm pretty much requires re-installing just
about everything in my entire linux distro that's useful, because half
of everything uses libcrypto.
Ergo:
To make php make an https request, you either have to do the entire
https request yourself starting with an tcp connection, or you can use
curl which means (for nearly everyone), re-installing half the
software on your server. http://tinyurl.com/6ph53
And with perl all you do is download one module from cpan. Oh no,
wait, it already comes with the perl distro.
Anyone correct me or do I have that all right?
recompile php with cURL.
2. In order to install CURL I have to upgrade my openssl rpm, even
though I'm runing a version of linux that's only like 3 months old
(fedora c2 stable), because curl needs libcrypto.so.4.
3. In order to install libcrypto.so.4 I have to upgrade my openssl
(took me forever to figure that out).
4. Upgrading my openssl rpm pretty much requires re-installing just
about everything in my entire linux distro that's useful, because half
of everything uses libcrypto.
Ergo:
To make php make an https request, you either have to do the entire
https request yourself starting with an tcp connection, or you can use
curl which means (for nearly everyone), re-installing half the
software on your server. http://tinyurl.com/6ph53
And with perl all you do is download one module from cpan. Oh no,
wait, it already comes with the perl distro.
Anyone correct me or do I have that all right?
Comment