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

How to Install Latest PHP Memcached With Sasl Support on Linux Mint 17.1 Qiana 32-64bit GNU

May 21, 2015 | By the+gnu+linux+evangelist.

Linux Mint PHP Memcached Extension Installation

Hi! The Tutorial shows you Step-by-Step How to Install the Latest PHP memcached Extension with Sasl support from source for Linux Mint 17.1 Qiana i386/amd64 GNU+Linux.

The PHP memcached extension is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

This extension uses the libmemcached library to provide an API for communicating with memcached servers. It also provides a session handler (memcached).

Memcached is a Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

Memcached is also an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.

Installing Php memcached with Sasl support from source on Mint Linux - Featured
  1. How to Install/Enable PECL Command on Mint Linux

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

    Php memcached installation on Mint linux - Open Terminal

    In case first see: Terminal QuickStart Guide.

  3. Installing Required pkg-config Mint Package.

    Copy
    sudo apt-get install pkg-config

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

  4. How to Install libmemcached with Sasl support for Mint

    Here libmemcached+sasl Mint Installation
    Link to Step-by-Step Guide on How to Install libmemcached with sasl Support for Mint Linux
  5. Download the PHP Pecl Memcached Module

    Here Latest Pecl Memcached
    Link to Download the Latest PHP Pecl Memcached Module Source code
  6. Installing Memcached extension:

    Copy
    tar xvzf ~/Downloads/memcached*
    Copy
    cd ~/Downloads/memcached*/
    Copy
    phpize
    Copy
    ./configure
    Copy
    make
    Copy
    sudo make install
  7. Enabling the PHP Memcached Extension:

    Copy
    sudo nano /etc/php5/apache2/php.ini

    Append.

    on the Extensions Section:

    /nextension=memcached.so;

    Ctrl+x to Save & Exit.

  8. ReStart Apache to Load the Memcached Module:

    Copy
    service apache2 restart