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

Linux Xubuntu 12.04 Precise How to Install PHP APC 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 APC Module for Linux Xubuntu 12.04 Precise Pangolin desktop.

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

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

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

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

    Linux Xubuntu13.04 Open Terminal

    In case first see: Terminal QuickStart Guide.

  3. Install the Required Package:

    sudo su
    apt-get install libpcre3-dev
  4. Download the Latest PHP Pecl APC Module

    Latest Pecl APC
  5. Installing APC:

    tar xvzf APC*
    cd APC*/
    phpize
    ./configure
    make
    make install
    make test
  6. Enabling the PHP APC Module:

    nano </path/2>/php.ini

    Insert or UnComment a Line Containing:

    /nextension=apc.so;

    Ctrl+x to Save & Exit.

  7. ReStart Apache to Load the APC Module:

    service apache2 restart
  8. Best APC SetUp for Production

    Fastest APC SetUp