Added the following under Dynamic Extensions
in both php.ini's (Apache's, and the normal one found with: sudo updatedb && locate php.ini
)
extension=raphf.so
extension=propro.so
extension=http.so
Ran the following installs, which all worked:
sudo apt-get install libpcre3-dev php5-dev php-pear
sudo pecl channel-update pecl.php.net
sudo pecl install pecl_http
Yet testing it still fails
php -r 'http_post_data();'
PHP Fatal error: Call to undefined function http_post_data() in Command line code on line 1
PHP Stack trace:
PHP 1. {main}() Command line code:0
What am I missing?