{"id":654,"date":"2018-08-29T04:59:35","date_gmt":"2018-08-29T09:59:35","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=654"},"modified":"2018-08-29T04:59:35","modified_gmt":"2018-08-29T09:59:35","slug":"how-to-install-prestashop-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/","title":{"rendered":"How to Install Prestashop on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-1693314383\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application written in PHP used by website developers to build and run a successful online store.<\/p>\n<p><!--more--><\/p>\n<h3><strong>Requirements<\/strong><\/h3>\n<p>In order to run PrestaShop on your Ubuntu 16.04 VPS, we need the following requirements met:<\/p>\n<ul>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module, or Nginx<\/li>\n<li>MySQL 5.5 or later is recommended, or MariaDB installed on your Linux virtual server.<\/li>\n<li>PHP 5.4 or higher with the mcrypt, curl, gd, openssl, zip and pdo PHP extensions enabled. Optionally, you can install memcached PHP extension to improve PrestaShop performance.<\/li>\n<li>Full SSH root access or a user with sudo privileges is also required<\/li>\n<\/ul>\n<h3><strong>Step 1: Log in via SSH on the Ubuntu server:<br \/>\n<\/strong><\/h3>\n<p>Log in to the VPS via SSH as user root<\/p>\n<pre>ssh roo@IP_Address -p Port_number<\/pre>\n<h3><strong>Step 2: Update all packages<\/strong><\/h3>\n<p>Once you are logged, run the following command to make sure that all installed OS packages are up to date:<\/p>\n<pre>apt-get update\r\napt-get upgrade<\/pre>\n<h3>Step 3: Install Apache, MySQL (MariaDB) and PHP 7<\/h3>\n<p>Install Apache, MySQL (or MariaDB) and PHP 7 on your server using the following command:<\/p>\n<pre>apt-get install apache2 libapache2-mod-php mysql-server \r\napt-get install php7.0-cli php7.0-common php7.0-curl php7.0-zip php7.0-gd php7.0-mysql php7.0-xml php7.0-mcrypt\u00a0php7.0-mbstring\u00a0php7.0-json php7.0-intl<\/pre>\n<p>Enable the Apache mod_rewrite module:<\/p>\n<pre>sudo a2enmod rewrite<\/pre>\n<p>Locate the PHP configuration file:<\/p>\n<pre># php -i | grep -i php.ini\r\n\r\nConfiguration File (php.ini) Path =&gt; \/etc\/php\/7.0\/cli\r\nLoaded Configuration File =&gt; \/etc\/php\/7.0\/cli\/php.ini<\/pre>\n<p>Edit the PHP configuration file (\/etc\/php\/7.0\/cli\/php.ini):<\/p>\n<pre>vi \/etc\/php\/7.0\/cli\/php.ini<\/pre>\n<p>and modify the memory_limit value to 128MB or higher:<\/p>\n<pre>memory_limit = 128M<\/pre>\n<p>Also, set upload_max_filesize to 32 MB (or more):<\/p>\n<pre>upload_max_filesize = 32M<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>sudo systemctl restart apache2<\/pre>\n<h3>Step 4: Create a MySQL database for PrestaShop<\/h3>\n<p>Log into MySQL console with the root account:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>Now we will create a MySQL database for PrestaShop using the following query:<\/p>\n<pre>mysql&gt; CREATE DATABASE prestashop;<\/pre>\n<p>Then, execute the following query to add a separate user for PrestaShop that will interact with the database:<\/p>\n<pre>mysql&gt; GRANT ALL PRIVILEGES ON prestashop.* to 'prestashop'@'localhost' IDENTIFIED BY '5tr0ng_Pa55w0rd';<\/pre>\n<p>Do not forget to replace &#8216;5tr0ng_Pa55w0rd&#8217; with an actual strong password.<\/p>\n<p>Execute the following command to apply the privileges we set:<\/p>\n<pre>mysql&gt; FLUSH PRIVILEGES;<\/pre>\n<p>Now we can exit the MySQL session:<\/p>\n<pre>mysql&gt; quit<\/pre>\n<h3><strong>Step 5: <\/strong>Install PrestaShop<\/h3>\n<p>Download the latest stable version of PrestaShop in the \/opt directory on your server and extract it in the \/var\/www\/html\/ directory:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/download.prestashop.com\/download\/releases\/prestashop_1.7.4.2.zip\r\nunzip prestashop_1.7.4.2.zip \r\nunzip prestashop.zip -d \/var\/www\/html\/prestashop\/\r\n<\/pre>\n<p class=\"code\">Set the appropriate file permissions and ownership (www-data is the user of the Apache web server):<\/p>\n<pre>chown -R www-data:www-data \/var\/www\/html\/prestashop\/<\/pre>\n<h3>Step 6: Configure Apache to serve PrestaShop<\/h3>\n<p>Now we will have to setup the Apache configuration so it can serve the PrestaShop directory, add the following contents below to the \/etc\/apache2\/sites-available\/prestashop.conf file with nano or your favorite editor:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/prestashop.conf<\/pre>\n<p>Add the following lines:<\/p>\n<p>&lt;VirtualHost *:80&gt;<br \/>\nServerAdmin admin@your-domain.com<br \/>\nServerName your-domain.com<br \/>\nServerAlias www.your-domain.com<br \/>\nDocumentRoot \/var\/www\/html\/prestashop<\/p>\n<p>&lt;Directory \/var\/www\/html\/prestashop&gt;<br \/>\nOptions +FollowSymlinks<br \/>\nAllowOverride All<br \/>\nRequire all granted<br \/>\n&lt;\/Directory&gt;<\/p>\n<p>ErrorLog \/var\/log\/apache2\/prestashop-error_log<br \/>\nCustomLog \/var\/log\/apache2\/prestashop-access_log common<br \/>\n&lt;\/VirtualHost&gt;<\/p>\n<p>Enable the Apache PrestaShop configuration:<\/p>\n<pre>sudo a2ensite prestashop.conf<\/pre>\n<p>Remove the default Apache configuration file:<\/p>\n<pre>rm \/etc\/apache2\/sites-enabled\/000-default.conf<\/pre>\n<p>Now restart the Apache web server:<\/p>\n<pre>sudo systemctl restart apache2<\/pre>\n<p>Open your favorite web browser and type in the following URL to access the PrestaShop web interface and start the setup:<\/p>\n<pre>http:\/\/your-domain.com\/<\/pre>\n<p>From here you can finish the setup by selecting the installation language and entering the information about your PrestaShop store. Then, create an administrator account and enter the following information to configure the database:<\/p>\n<p>Database server address: 127.0.0.1<\/p>\n<p>Database name: prestashop<\/p>\n<p>Database login: prestashop<\/p>\n<p>Database password: enter the MySQL password for the prestashop MySQL user.<\/p>\n<p>For security reason, you must delete the &#8216;install&#8217; directory:<\/p>\n<pre>rm -rf \/var\/www\/html\/prestashop\/install\/<\/pre>\n<p>Once you deleted the installation directory, log in to the PrestaShop back-end by clicking on the &#8216;Manage your store&#8217; button.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-657\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/installing-prestashop-on-ubuntu-16.04.jpg\" alt=\"installing prestashop on ubuntu 16.04\" width=\"700\" height=\"331\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/installing-prestashop-on-ubuntu-16.04.jpg 700w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/installing-prestashop-on-ubuntu-16.04-300x142.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" \/><\/p>\n<p>Congratulations! PrestaShop has been successfully installed on your server. You can now start using PrestaShop and customize it according to your needs.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-656\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/Install-Prestashop-on-Ubuntu-16.04.jpg\" alt=\"Install Prestashop on Ubuntu 16.04\" width=\"117\" height=\"117\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/Install-Prestashop-on-Ubuntu-16.04.jpg 117w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/Install-Prestashop-on-Ubuntu-16.04-60x60.jpg 60w\" sizes=\"(max-width: 117px) 100vw, 117px\" \/>Of course, you don\u2019t have to install PrestaShop on Ubuntu 16.04, if you use one of our\u00a0<a href=\"https:\/\/linuxhostsupport.com\">Outsourced Server Support Services<\/a>, in which case you can simply ask our expert system administrators to install PrestaShop on Ubuntu 16.04 for you, using the LAMP stack or any other web hosting stack of your choice. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span>\u00a0If you liked this post, on how to install PrestaShop on Ubuntu 16.04, please share it with your friends on the social networks using the buttons below or simply leave a comment in the comments section. Thanks.<\/p><div id=\"linux-1874758301\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application written in PHP used by website developers to build and run a successful online store.<\/p>\n","protected":false},"author":1,"featured_media":655,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[116,20],"class_list":["post-654","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-prestashop","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-29T09:59:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Prestashop on Ubuntu 16.04\",\"datePublished\":\"2018-08-29T09:59:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/\"},\"wordCount\":701,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg\",\"keywords\":[\"prestashop\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/\",\"name\":\"How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-08-29T09:59:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Prestashop on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-prestashop-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Prestashop on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport","description":"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport","og_description":"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-08-29T09:59:35+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Prestashop on Ubuntu 16.04","datePublished":"2018-08-29T09:59:35+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/"},"wordCount":701,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg","keywords":["prestashop","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/","name":"How to Install Prestashop on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg","datePublished":"2018-08-29T09:59:35+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this article we will show you how to install PrestaShop on an Ubuntu 16.04\u00a0server.\u00a0Prestashop is an easy to use open source shopping cart application","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Prestashop-on-Ubuntu-16.04.jpg","width":750,"height":410,"caption":"How to Install Prestashop on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Prestashop on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/654","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=654"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/654\/revisions"}],"predecessor-version":[{"id":658,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/654\/revisions\/658"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/655"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=654"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=654"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}