{"id":20087,"date":"2016-09-26T07:47:51","date_gmt":"2016-09-26T12:47:51","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=20087"},"modified":"2022-12-29T11:07:22","modified_gmt":"2022-12-29T17:07:22","slug":"how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/","title":{"rendered":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"img-responsive alignnone wp-image-20091\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg\" alt=\"woocommerce vps\" width=\"1200\" height=\"800\" \/><br \/>\nIn this tutorial we are going to provide you with step by step instructions on <strong>how to install WooCommerce plugin on an <a title=\"Ubuntu VPS\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 16.04 VPS<\/a><\/strong>.<br \/>\nWooCommerce is a WordPress plugin written in PHP that allows website developers to turn a WordPress website into a full-featured online store. The installation process is fairly easy and it takes only a couple of minutes.<br \/>\nAt the time of writing this tutorial, the latest stable version of WooCommerce is 2.6.4 and it requires:<br \/>\n<!--more--><\/p>\n<ul>\n<li>PHP 5.6 or higher (preferably the latest), with memory_limit PHP variable set to 64 MB or higher (128 MB or higher is preferred)<\/li>\n<li>MySQL 5.6 or higher<\/li>\n<li>WooCommerce 2.6.4 requires WordPress 4.4+<\/li>\n<li>Apache Web Server 2.0 or higher compiled with mod_rewrite module.<\/li>\n<\/ul>\n<p>This install guide assumes that Apache is already installed and configured on your <a title=\"virtual server\" href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>.<\/p>\n<p>Let&#8217;s start with the installation. Make sure your server OS packages are fully up-to-date:<\/p>\n<pre>apt-get update \r\napt-get upgrade<\/pre>\n<p>Enable Apache rewrite module if it is not already done so:<\/p>\n<pre>a2enmod rewrite<\/pre>\n<p>Install required PHP packages:<\/p>\n<pre>apt-get install php7.0-cli php7.0-common php7.0-mcrypt php7.0-mysql php7.0-xml php7.0-curl php7.0-zip php7.0-gd<\/pre>\n<p>Restart the Apache service for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<h3>Install WordPress<\/h3>\n<p>Download the latest version of WordPress available at https:\/\/wordpress.org\/download\/ to the \/opt\/ directory on the server:<\/p>\n<pre>cd \/opt\/\r\nwget https:\/\/wordpress.org\/latest.zip\r\nunzip latest.zip -d \/var\/www\/html\/<\/pre>\n<p>Create a new MySQL database and user:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; SET GLOBAL sql_mode='';\r\nmysql&gt; CREATE DATABASE wpdb;\r\nmysql&gt; CREATE USER 'wpuser'@'localhost' IDENTIFIED BY 'y0ur-pAssW0RD';\r\nmysql&gt; GRANT ALL PRIVILEGES ON wpdb.* TO 'wpuser'@'localhost';\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Do not forget to replace &#8216;y0ur-pAssW0RD&#8217; with a strong password.<\/p>\n<h3>Install WooCommerce<\/h3>\n<p>Download the latest version of WooCommerce available at https:\/\/downloads.wordpress.org\/plugin\/woocommerce.latest-stable.zip to a directory on the server and extract it using the following commands:<\/p>\n<pre>cd \/opt\/\r\nwget https:\/\/downloads.wordpress.org\/plugin\/woocommerce.latest-stable.zip -O woocommerce.zip\r\nunzip woocommerce.zip -d \/var\/www\/html\/wordpress\/wp-content\/plugins\/\r\n<\/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>All files have to be readable by the web server, so set a proper ownership:<\/p>\n<pre>chown www-data:www-data -R \/var\/www\/html\/wordpress\/<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018woocommerce.conf\u2019 on your virtual server:<\/p>\n<pre>touch \/etc\/apache2\/sites-available\/woocommerce.conf\r\nln -s \/etc\/apache2\/sites-available\/woocommerce.conf \/etc\/apache2\/sites-enabled\/woocommerce.conf\r\nvi \/etc\/apache2\/sites-available\/woocommerce.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@your-domain.com\r\nDocumentRoot \/var\/www\/html\/wordpress\/\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/wordpress\/&gt;\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nOrder allow,deny\r\nallow from all\r\n&lt;\/Directory&gt;\r\nErrorLog \/var\/log\/apache2\/your-domain.com-error_log\r\nCustomLog \/var\/log\/apache2\/your-domain.com-access_log common\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Remove the 000-default.conf file:<\/p>\n<pre>rm \/etc\/apache2\/sites-enabled\/000-default.conf<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>Open your favorite web browser, navigate to http:\/\/your-domain.com\/ and follow the easy instructions on the install screen inserting the necessary information as requested. Log in to the WordPress administration back-end at http:\/\/your-domain.com\/wp-admin , go to Plugins and activate the WooCommerce plugin.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-medium wp-image-20094\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/08\/woocommerce-activate-300x87.png\" alt=\"woocommerce activate\" width=\"300\" height=\"87\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/08\/woocommerce-activate-300x87.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/08\/woocommerce-activate-768x222.png 768w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/08\/woocommerce-activate-1024x296.png 1024w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/08\/woocommerce-activate.png 1918w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Then, go to the WordPress Dashboard, click on the &#8216;Run the Setup Wizard&#8217; button below the &#8216;Welcome to WooCommerce&#8217; message and configure basic WooCommerce settings.<\/p>\n<p>That is it. The WooCommerce has been installed on your server.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Managed VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install the WooCommerce plugin<\/strong> for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we are going to provide you with step by step instructions on how to install WooCommerce plugin &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#more-20087\" aria-label=\"Read more about How to install WooCommerce plugin on an Ubuntu 16.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":20294,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,1711,13,1698],"tags":[59,1358,148],"class_list":["post-20087","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cms-crm-erp","category-e-commerce","category-tutorials","category-ubuntu","tag-ubuntu","tag-woocommerce","tag-wordpress","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS\" \/>\n<meta property=\"og:description\" content=\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-26T12:47:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-29T17:07:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS\",\"datePublished\":\"2016-09-26T12:47:51+00:00\",\"dateModified\":\"2022-12-29T17:07:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/\"},\"wordCount\":490,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/woocommerce-ubuntu.jpg\",\"keywords\":[\"ubuntu\",\"WooCommerce\",\"wordpress\"],\"articleSection\":[\"CMS, CRM, ERP\",\"E-Commerce\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/\",\"name\":\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/woocommerce-ubuntu.jpg\",\"datePublished\":\"2016-09-26T12:47:51+00:00\",\"dateModified\":\"2022-12-29T17:07:22+00:00\",\"description\":\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/woocommerce-ubuntu.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/woocommerce-ubuntu.jpg\",\"width\":1200,\"height\":600,\"caption\":\"woocommerce on ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install WooCommerce plugin on an Ubuntu 16.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting","description":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting","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:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS","og_description":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-09-26T12:47:51+00:00","article_modified_time":"2022-12-29T17:07:22+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS","datePublished":"2016-09-26T12:47:51+00:00","dateModified":"2022-12-29T17:07:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/"},"wordCount":490,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg","keywords":["ubuntu","WooCommerce","wordpress"],"articleSection":["CMS, CRM, ERP","E-Commerce","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/","name":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg","datePublished":"2016-09-26T12:47:51+00:00","dateModified":"2022-12-29T17:07:22+00:00","description":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/09\/woocommerce-ubuntu.jpg","width":1200,"height":600,"caption":"woocommerce on ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-woocommerce-plugin-on-an-ubuntu-16-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install WooCommerce plugin on an Ubuntu 16.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/20087","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=20087"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/20087\/revisions"}],"predecessor-version":[{"id":44236,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/20087\/revisions\/44236"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/20294"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=20087"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=20087"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=20087"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}