$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Linux Xubuntu How to Install PHP Pecl Http Easy Visual Guide

July 12, 2013 | By Duchateaux.

Install PHP 5 Pecl HTTP Module for Xubuntu

This Short Guide shows you Step-by-Step How to Install and Enable the Latest PHP Pecl Http Module for Linux Xubuntu i386/amd64 Desktop.

The Best Way to Install the Http Module is to Provide Directly to Download, Compile and Install the Latest Pecl Http Release.

To the Article Top there is a Link to Enabling the PECL Command on Linux Xubuntu.

Linux Xubuntu How to Install PHP Pecl Http Easy Visual Guide
  1. How to Install/Enable Pecl Command on Linux Xubuntu

    Here PHP PECL for Xubuntu
    Links to Installation/Enabling Guides of Latest Pecl Command for Linux Xubuntu Distro
  2. Open Terminal Window
    (Press “Enter” to Execute Commands)

    Linux Xubuntu 13.04 Open Terminal

    In case first see: Terminal QuickStart Guide.

  3. Download the PHP Pecl Http Module

    Here Latest Pecl Http
    Link to Download the PHP Pecl Http Module
  4. Installing Pecl Http:

    Copy
    tar xvzf pecl_http*.tar.gz
    Copy
    cd pecl_http*/
    Copy
    phpize
    Copy
    ./configure
    Copy
    make
    Copy
    make install
    Copy
    make test
  5. Enabling the PHP http Module:

    Copy
    nano </path/2>/php.ini
    Here Linux How to Easy Locate/Search/Find Files/Directories/Paths on Command Line:
    locating files/icons/Directories and Paths on linux Command Line

    Insert or UnComment a Line Containing:

    /nenable=http.so;

    Ctrl+x to Save & Exit.

  6. ReStart Apache to Load the Http Module:

    Copy
    service apache2 restart