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

Linux Kubuntu How to Install PHP Pecl Uploadprogress Easy Visual Guide

July 12, 2013 | By Duchateaux.

This Short Guide shows you Step-by-Step How to Install and Enable the Latest PHP Pecl Uploadprogress Module for Linux Kubuntu desktop.

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

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

Linux Kubuntu How to Install PHP Pecl Uploadprogress Easy Visual Guide
  1. How to Install/Enable PECL Command on Linux Kubuntu

    PHP PECL for Kubuntu
  2. Open Terminal Window
    (Press “Enter” to Execute Commands)

    Linux Kubuntu Open Terminal

    In case first see: Terminal QuickStart Guide.

  3. Download the PHP Pecl Uploadprogress Module

    Latest Pecl Uploadprogress
  4. Installing Uploadprogress:

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

    nano </path/2>/php.ini
    Linux How to Easy Locate/Search/Find Files/Directories/Paths on Command Line:

Insert or UnComment a Line Containing:

/nenable=uploadprogress.so;

Ctrl+x to Save & Exit.

  • ReStart Apache to Load the Uploadprogress Module:

    service apache2 restart