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

How to Install PHP 7 APC Extension Ubuntu 16.04 Xenial LTS 32-64bit Linux

March 11, 2017 | By the+gnu+linux+evangelist.

Installing PHP 7 APC Ubuntu 16.04 Xenial LTS

Hi! The Tutorial shows you Step-by-Step How to Install and Enable the Latest PHP 7 Pecl APCu Extension for Ubuntu 16.04 Xenial Xerus LTS GNU/Linux Server/Desktop.

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

APCu is APC stripped of opcode caching. PHP 7 support is available as of APCu 5.0.0.

APCu can provide a compatibility mode, such that it can provide a drop in replacement for the applicable parts of APC.

Install PHP 7 APC Ubuntu 16.04 Xenial LTS - Featured
  1. How to Install/Enable PECL Command on Ubuntu Linux

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

    Or Login into Server Shell…

    Install PHP 7 APC Ubuntu 16.04 Xenial LTS - Open Terminal

    In case first see: Terminal QuickStart Guide.

  3. Install the Required Package:

    Copy
    sudo apt install libpcre3-dev
  4. Download the Latest PHP Pecl APCu Module

    Here Latest Pecl APCu
    Link to Download the PHP Pecl APC Module
  5. Access the Target location
    (Usually Downloads go in the Home folder or when Downloaded with Firefox may be into the Temporary directory /tmp/mozilla*)

    Copy
    cd ~/Downloads

    Or when downloaded with Firefox maybe:

    Copy
    cd /tmp/mozilla*

    To Verify that it’s there List the contents with:

    Copy
    ls .
  6. Installing APC Extension:

    Copy
    tar xvzf APC*
    Copy
    cd APC*/
    Copy
    phpize
    Copy
    ./configure
    Copy
    make
    Copy
    sudo make install
  7. Enabling the PHP APC Extension for Apache Web Server:

    Copy
    sudo nano /etc/php/7.0/cli/php.ini

    Append.

    on the Extensions Section:

    /nextension=apcu.so;

    Ctrl+x to Save & Exit.

  8. ReStart Apache to Load the APC Module:

    Copy
    service apache2 restart
    Copy
    exit
  9. Best APC SetUp for Production

    Here Fastest APC SetUp
    How to Make the Best PHP APC SetUp on Productions