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

Step-by-step – LAMP Linux Mint 19.3 Installation

January 20, 2020 | By the+gnu+linux+evangelist.

Getting Started

  1. 4. Testing

    Finally, to Test LAMP WebServer Installation

    cd /var/www/html

    Create a PHP Info file:

    sudo touch info.php
    sudo chown www-data:www-data info.php
    sudo nano info.php

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

    <?php
    phpinfo();
    ?>
    

    Ctrl+x to Save & Exit from nano Editor ;)
    Open on Browser the URL: http://localhost/info.php
    How to Install LAMP on Linux Mint 19.3 - PHP Info
    You should Successfully see the PHP Info notice :)

  2. How to Create an Apache 2 Virtual Host on Mint

    GNU/Linux Apache2 Virtual-Host Quick Start

Contents