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

How to Grant User Remote Access to A MySQL Database on Shell

December 5, 2014 | By the+gnu+linux+evangelist.

Enabling MySQL Remote Access

The MySQL Tip shows you Step-by-Step How to Grant Remote Access/Connection to a User on a MySQL Database by Unix/Linux Command Line.

The Process is Essential if you Need to Enable a Remote Connection to the MySQL Database.

How to Enable Remote Access to a MySQL Database - Featured
  1. Connect to MySQL

    mysql -u root -p
  2. Grant Remote Access to the MySQL User

    GRANT ALL ON *.* TO 'yourMySQLUser'@'%' IDENTIFIED BY 'Pass';

    To Limit the Access for only one IP change the ‘%’…