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

How to Getting Started With Magento E-Commerce Development on Linux Mint Debian Easy Guide

July 6, 2014 | By the+gnu+linux+evangelist.

Magento Website Quick Start for LMDE

Hi! The Tutorial shows you Step-by-Step How to Install and Getting-Started with the Latest Magento 1.9 CE PHP5 e-Commerce Website on Linux Mint Debian 2012/2013/2014 Mate/Cinnamon Desktop.

Magento is an out-of-the-box e-commerce platform with many features, such as catalog navigation, promotion rules, RSS feeds, product search, product tags, product reviews, tax rules, reports, and order management.

To Prepare for Magento Development we need to set up a LAMP (Linux, Apache, MySQL, PHP) environment. In that LAMP environment, we will create a Fully Qualified Domain Name (FQDN) and a virtual host.

The Process described here Suppose that the User have Super-User Powers, if Not then adapt Consequently the Commands…

Install Magento 1.9 on Linux Mint Debian - Featured
  1. Or Open a Command Line Terminal Window
    (Press “Enter” to Execute Commands)

    Installing Magento on Linux Mint Debian - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. How to Install LAMP Server on Linux Mint Debian.

    Here LAMP Server Installation LMDE
    How to Getting-Started with Apache 2, MySQL and PHP5 on LMDE Linux

    In this Example the Domain will be Accessible to:

    Copy
    http://magento.local/

    For a Regular Magento Installation Modify this Parameter all along Installation…

  3. Install Required Packages.

    Copy
    sudo su

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

    Copy
    apt-get install php5-mhash php5-mcrypt php5-cli php5-gd php5-curl php5-gd php-pear
  4. Increase the PHP 5 Memory Limit.

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

    Set the Memory Limit to At Lest 512mb!

    Copy
    memory_limit = 512M

    Ctrl+x to Save & from nano Editor :)

  5. How to Enable Apache2 mod_rewrite Module on Linux Mint.

    Here Enabling Apache2 Rewrite for Mint
    How to Enable the Apache 2 PHP Rewrite Module on Mint Linux
  6. Setting Up the MySQL Database.

    Copy
    mysql -u root -p

    Enter the following commands at the mysql> prompt.

    Copy
    create database magento;
    Copy
    GRANT USAGE ON *.* TO magento@localhost IDENTIFIED BY 'magento';
    Copy
    GRANT ALL ON magento.* TO magento@localhost;
    Copy
    exit
  7. Download Latest Magento 1.9 CE Release

    Here Magento 1.9 CE tar.gz
    Link to Get the Latest Magento CE Release
  8. Extracting Magento 1.9 CE.

    Double-Click on the Archive
    Installing Magento 1.9 Sample Data on Mint Linux - Extraction

    Or From Command Line:

    Copy
    tar xvzf -C /tmp/ $HOME/Downloads/magento*.tar.gz
    Copy
    rm $HOME/Downloads/magento*.tar.gz
  9. Relocate Magento Content.

    Copy
    cp -r /tmp/magento/* /var/www/html/magento/
  10. Fixing Permissions.

    Copy
    cd /var/www/html/magento
    Copy
    chown -R www-data:www-data .
    Copy
    find . -type d -exec chmod 700 {} \;
    Copy
    find . -type f -exec chmod 600 {} \;
    Copy
    exit
  11. Download & Install Magento 1.9 CE Sample Data

    Here Magento 1.9 CE Sample Linux Mint Setup
    Link to Guide on Setting Up the Latest Magento CE Sample Data on Linux Mint

    Take Note: The Task must be Achieved Prior to Magento 1.9 CE Installation!

  12. Running Magento Web UI Installer.

    Point Browser to:

    Copy
    http://magento.local/

    Set the Localization
    Installing Magento on Linux Mint Debian - Set Localization

    Configure Database Settings
    Installing Magento on Linux Mint Debian - Set Database Parameters

    Set the Web UI Base URL & Options
    Installing Magento on Linux Mint Debian - Set Web UI Options

    Create an Admin Account
    Installing Magento on Linux Mint Debian - Create the Admin Account

    Magento Successfully Installed on Mint Linux
    Installing Magento on Linux Mint Debian - Magento Successfully Installed