{"id":986,"date":"2019-11-20T14:22:07","date_gmt":"2019-11-20T20:22:07","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=986"},"modified":"2019-11-20T14:22:07","modified_gmt":"2019-11-20T20:22:07","slug":"how-to-install-prestashop-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/","title":{"rendered":"How to Install PrestaShop on Ubuntu 18.04"},"content":{"rendered":"<div id=\"linux-1517174570\" 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 Ubuntu 18.04 LTS.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-995\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/installing-prestashop-ecommerce-platform-for-ubuntu18.04-vps.jpg\" alt=\"\" width=\"140\" height=\"117\" \/>PrestaShop is a free shopping cart platform written in the PHP programming language with support for the MySQL database management system. PrestaShop is used to build and run an online store and it is very easy to use. With PrestaShop, you can share your ideas and products and sell them on the internet. Let&#8217;s get started.<\/p>\n<p><!--more--><\/p>\n<h2>Step 1: Log in via SSH on the Ubuntu server:<\/h2>\n<p>Log in via SSH to your server as the root user (or as a user with sudo privileges)<\/p>\n<pre>ssh root@<span style=\"color: #ff0000;\">Server_IP_Address<\/span> -p <span style=\"color: #ff0000;\">Port_number<\/span><\/pre>\n<p>Replace &#8220;<span style=\"color: #ff0000;\">Server_IP_Address<\/span>&#8221; and &#8220;<span style=\"color: #ff0000;\">Port_number<\/span>&#8221; with the respective values from your Ubuntu server.<\/p>\n<h2>Step 2: Update all Packages<\/h2>\n<p>The first thing to do when you are logged in is to make sure that all the installed packages are up to date:<\/p>\n<pre>sudo apt update\r\nsudo apt upgrade<\/pre>\n<h2>Step 3: Install LAMP (Apache, MySQL and PHP 7.2) Server Stack<\/h2>\n<p>In this step, we will install some of the requirements for the PrestaShop installation. To install the LAMP server and all of the required PHP extensions, run the following commands:<\/p>\n<pre>sudo apt install apache2 libapache2-mod-php mysql-server \r\nsudo apt install php7.2-cli php7.2-common php7.2-curl php7.2-zip php7.2-gd php7.2-mysql php7.2-xml php7.2-mbstring php7.2-json php7.2-intl<\/pre>\n<p>In order to enable the Apache mod_rewrite module, type the next command:<\/p>\n<pre>sudo a2enmod rewrite<\/pre>\n<p>Run the command below to locate the PHP configuration file:<\/p>\n<pre>php -i | grep -i php.ini<\/pre>\n<p>Edit the PHP configuration file:<\/p>\n<pre>nano \/etc\/php\/7.2\/cli\/php.ini<\/pre>\n<p>Then set the following values as shown:<\/p>\n<pre>memory_limit = 128M\r\nupload_max_filesize = 32M<\/pre>\n<p>For changes to take effect, we need to restart the web server:<\/p>\n<pre>sudo systemctl restart apache2<\/pre>\n<h2>Step 4: Create a Database<\/h2>\n<p>To create a database, you need to log in to the MySQL console:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>By using the following query, we will create our database:<\/p>\n<pre>CREATE DATABASE prestashop;<\/pre>\n<p>We will then add a separate user that will be able to interact with the PrestaShop database:<\/p>\n<pre>GRANT ALL PRIVILEGES ON prestashop.* to 'prestashop'@'localhost' IDENTIFIED BY '<span style=\"color: #ff0000;\">5tr0ng_Pa55w0rD<\/span>';<\/pre>\n<p>Please do not forget to change &#8216;<span style=\"color: #ff0000;\">5tr0ng_Pa55w0rD<\/span>&#8216; with an actual strong password.<\/p>\n<p>To apply the privileges that we set, we will run this command:<\/p>\n<pre>FLUSH PRIVILEGES;<\/pre>\n<p>After we finish, we can exit from the MySQL session with the command:<\/p>\n<pre>quit<\/pre>\n<h2>Step 5: Install PrestaShop<\/h2>\n<p>First, we will download the latest stable version of PrestaShop in the <code>\/opt<\/code> directory on the server and extract it in the <code>\/var\/www\/html\/<\/code> directory:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/download.prestashop.com\/download\/releases\/prestashop_1.7.5.0.zip\r\nunzip prestashop_1.7.5.0.zip\r\nunzip prestashop.zip -d \/var\/www\/html\/prestashop\/<\/pre>\n<p>We will set appropriate file permissions and ownership to the files (in this tutorial it is the www-data user and group because we are using the Apache web server on Ubuntu):<\/p>\n<pre>chown -R www-data: \/var\/www\/html\/prestashop\/<\/pre>\n<h2>Step 6: Configure the Apache Web Server<\/h2>\n<p>In this step, we will set a new Virtual Host on the web server so it can serve the PrestaShop directory. To do that we need to create a new Apache configuration file by using your preferred text editor:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/prestashop.conf<\/pre>\n<p>Now we can modify it and add the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n    ServerAdmin admin@<span style=\"color: #ff0000;\">your_domain.com<\/span>\r\n    ServerName <span style=\"color: #ff0000;\">your_domain.com<\/span>\r\n    ServerAlias www.<span style=\"color: #ff0000;\">your_domain.com<\/span>\r\n    DocumentRoot \/var\/www\/html\/prestashop\r\n\r\n    &lt;Directory \/var\/www\/html\/prestashop&gt;\r\n        Options +FollowSymlinks\r\n        AllowOverride All\r\n        Require all granted\r\n    &lt;\/Directory&gt;\r\n\r\n    ErrorLog \/var\/log\/apache2\/prestashop-error_log\r\n    CustomLog \/var\/log\/apache2\/prestashop-access_log common\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Do not forget to change &#8216;<span style=\"color: #ff0000;\">your_domain.com<\/span>&#8216; with your actual registered and configured domain name. Save the file and exit.<\/p>\n<p>We can enable the Apache PrestaShop configuration by running this command:<\/p>\n<pre>sudo a2ensite prestashop.conf<\/pre>\n<p>We will also remove the default Apache configuration file:<\/p>\n<pre>sudo rm \/etc\/apache2\/sites-enabled\/000-default.conf<\/pre>\n<p>Once we make all the changes above, we will restart the Apache web server for the changes to take effect:<\/p>\n<pre>sudo systemctl restart apache2<\/pre>\n<p>You can now open your favorite web browser and enter the domain you added as <span style=\"color: #ff0000;\">your_domain.com<\/span> in the above configuration file.<\/p>\n<pre>http:\/\/<span style=\"color: #ff0000;\">your_domain.com<\/span>\/<\/pre>\n<p>You should be able to see the PrestaShop Installation Assistant page:<\/p>\n<figure id=\"attachment_987\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 999px\"><img decoding=\"async\" class=\"size-full wp-image-987\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_start.png\" alt=\"\" width=\"989\" height=\"708\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_start.png 989w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_start-300x215.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_start-768x550.png 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop Install Screen<\/figcaption><\/figure>\n<p>You can select the installation language and continue with the installation by clicking on the &#8216;Next&#8217; button.<\/p>\n<p>Make sure to read the License Agreements. You can continue with the installation upon agreeing to the License Agreements.<\/p>\n<figure id=\"attachment_988\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 999px\"><img decoding=\"async\" class=\"size-full wp-image-988\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_agreement.png\" alt=\"\" width=\"989\" height=\"708\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_agreement.png 989w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_agreement-300x215.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_agreement-768x550.png 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop License Agreement<\/figcaption><\/figure>\n<p>In this stage, you will check the PrestaShop compatibility with your system&#8217;s environment. Continue by clicking on the &#8216;Next&#8217; button.<\/p>\n<figure id=\"attachment_989\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 735px\"><img decoding=\"async\" class=\"size-full wp-image-989\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_step3.png\" alt=\"\" width=\"725\" height=\"513\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_step3.png 725w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_step3-300x212.png 300w\" sizes=\"(max-width: 725px) 100vw, 725px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop System Compatibility<\/figcaption><\/figure>\n<p>In the fourth stage of the web installation, enter all of the necessary information about your store and then proceed to the next step.<\/p>\n<figure id=\"attachment_990\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 998px\"><img decoding=\"async\" class=\"size-full wp-image-990\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_configuration.png\" alt=\"\" width=\"988\" height=\"960\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_configuration.png 988w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_configuration-300x291.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_configuration-768x746.png 768w\" sizes=\"(max-width: 988px) 100vw, 988px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop Settings<\/figcaption><\/figure>\n<p>Enter the information about the database that we created in step 4 of this article.<\/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: &lt;The password you set earlier in the database setup&gt;<\/p>\n<figure id=\"attachment_991\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 997px\"><img decoding=\"async\" class=\"size-full wp-image-991\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_database_setup.png\" alt=\"\" width=\"987\" height=\"753\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_database_setup.png 987w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_database_setup-300x229.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_database_setup-768x586.png 768w\" sizes=\"(max-width: 987px) 100vw, 987px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop Database Setup<\/figcaption><\/figure>\n<p>Congratulations! The installation is now complete.<\/p>\n<figure id=\"attachment_992\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 996px\"><img decoding=\"async\" class=\"size-full wp-image-992\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_finished.png\" alt=\"\" width=\"986\" height=\"670\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_finished.png 986w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_finished-300x204.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/PrestaShop_finished-768x522.png 768w\" sizes=\"(max-width: 986px) 100vw, 986px\" \/><figcaption class=\"caption wp-caption-text\">PrestaShop Installation Finished<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<p>The last step we need to do is to remove the &#8216;install&#8217; directory from the server. We can do this with the following command:<\/p>\n<pre>rm -rf \/var\/www\/html\/prestashop\/install\/<\/pre>\n<p>If you carefully followed the steps in this tutorial, you should have a working PrestaShop instance on your Ubuntu 18.04 VPS. For more details about PrestaShop configuration and usage, please check their\u00a0<a href=\"http:\/\/doc.prestashop.com\/display\/PS17\/Installing+PrestaShop#InstallingPrestaShop-Completingtheinstallation\">official documentation<\/a>.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-996\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/help-expert-support-from-experienced-admins-for-install-and-maintenance-of-prestashop-ubuntu18.04.jpg\" alt=\"\" width=\"140\" height=\"117\" \/>Of course, you don\u2019t have to install PrestaShop on Ubuntu 18.04 if you use one of our <a href=\"http:\/\/www.linuxhostsupport.com\/monthly-server-management.html\">Fully Managed Linux Server Support<\/a> services,\u00a0in which case you can simply ask our expert system administrators to install PrestaShop on Ubuntu 18.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> If you liked this post on <strong>how to install PrestaShop on Ubuntu 18.04,\u00a0<\/strong>or if you found it helpful,\u00a0please share it with your friends on the social networks using the share buttons, or simply leave a comment in the comments section. Thanks.<\/p><div id=\"linux-1510512347\" 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 Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP programming language with support for the MySQL database management system. PrestaShop is used to build and run an online store and it is very easy to use. With PrestaShop, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":994,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-986","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install PrestaShop on Ubuntu 18.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP\" \/>\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-18-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 18.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-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=\"2019-11-20T20:22:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.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=\"5 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-18-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install PrestaShop on Ubuntu 18.04\",\"datePublished\":\"2019-11-20T20:22:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/\"},\"wordCount\":871,\"commentCount\":3,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg\",\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/\",\"name\":\"How to Install PrestaShop on Ubuntu 18.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg\",\"datePublished\":\"2019-11-20T20:22:07+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-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 18.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 18.04 | LinuxHostSupport","description":"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP","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-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install PrestaShop on Ubuntu 18.04 | LinuxHostSupport","og_description":"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2019-11-20T20:22:07+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install PrestaShop on Ubuntu 18.04","datePublished":"2019-11-20T20:22:07+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/"},"wordCount":871,"commentCount":3,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg","articleSection":["Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/","name":"How to Install PrestaShop on Ubuntu 18.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg","datePublished":"2019-11-20T20:22:07+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this article, we will show you how to install PrestaShop on Ubuntu 18.04 LTS. PrestaShop is a free shopping cart platform written in the PHP","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/11\/how-to-install-prestashop-on-ubuntu18.04.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-prestashop-on-ubuntu-18-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 18.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\/986","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=986"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/986\/revisions"}],"predecessor-version":[{"id":1120,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/986\/revisions\/1120"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/994"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}