{"id":17066,"date":"2015-04-23T15:04:04","date_gmt":"2015-04-23T20:04:04","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17066"},"modified":"2022-06-03T03:44:23","modified_gmt":"2022-06-03T08:44:23","slug":"how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png\"><img decoding=\"async\" class=\"alignleft size-full wp-image-17067\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png\" alt=\"cs-cart\" width=\"150\" height=\"50\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-50x17.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-75x25.png 75w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/><\/a>In this tutorial, we will show how to install CS-Cart v4 on an Ubuntu 14.04 VPS with Apache, PHP and MySQL installed on it. CS-Cart is a standalone shopping cart software based on PHP and MySQL, intended for building and managing an attractive storefront of any size. This guide was tested and written for <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a>, but it should work on any Linux distribution.<\/p>\n<p><!--more--><\/p>\n<p>This install guide assumes that Apache, MySQL and PHP are already installed and configured on your CS-Cart virtual server. At the time of writing this tutorial, the latest stable version of CS-Cart is 4.2.4 and it requires:<\/p>\n<ul>\n<li>PHP &gt;= 5.3 with the following PHP extensions enabled: CURL, Zip, Phar, MySQLi, GD Graphics Library version 2.0.x+ and FreeType font library. Also, safe_mode, magic_quotes_gpc, magic_quotes_runtime and magic_quotes_sybase settings should be disabled and allow_url_fopen and file_uploads setting should be enabled in php.ini<\/li>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module and with the following directives allowed: DirectoryIndex, Deny, Allow, Options, Order, AddHandler, RewriteEngine, RewriteBase, RewriteCond and RewriteRule.<\/li>\n<li>MySQL &gt;= 4.1 installed on your virtual server.<\/li>\n<\/ul>\n<p>Download the latest version of CS-Cart available at https:\/\/www.cs-cart.com\/download-cs-cart.html to the server and extract it using the following commands:<\/p>\n<pre>cd \/opt\r\nunzip cscart_v4.2.4.zip -d \/opt\/cscart<\/pre>\n<p>Create a new MySQL database for CS-Cart on your server:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE cscartdb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON cscartdb.* TO 'cscartuser'@'localhost' IDENTIFIED BY 'your-password' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018cscart.conf&#8217;:<\/p>\n<pre>touch \/etc\/apache2\/sites-available\/cscart.conf\r\nln -s \/etc\/apache2\/sites-available\/cscart.conf \/etc\/apache2\/sites-enabled\/cscart.conf\r\n\r\nvi \/etc\/apache2\/sites-available\/cscart.conf<\/pre>\n<p>then, add the following lines to it:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n ServerAdmin admin@your-domain.com\r\n DocumentRoot \/var\/www\/html\/cscart\/\r\n ServerName your-domain.com\r\n ServerAlias www.your-domain.com\r\n &lt;Directory \/var\/www\/html\/cscart\/&gt;\r\n Options FollowSymLinks\r\n AllowOverride All\r\n &lt;\/Directory&gt;\r\n ErrorLog \/var\/log\/apache2\/your-domain.com-error_log\r\n CustomLog \/var\/log\/apache2\/your-domain.com-access_log common\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Edit the php.ini configuration file and add\/modify the following lines:<\/p>\n<p>vi \/etc\/php5\/apache2\/php.ini<\/p>\n<pre>file_uploads = On\r\nallow_url_fopen = On\r\nsafe_mode = Off\r\nregister_globals = off\r\nmagic_quotes_gpc = Off\r\nmagic_quotes_runtime = Off\r\nmagic_quotes_sybase = Off\r\nsession.auto_start = 0<\/pre>\n<p>Restart the Apache web server for the changes to take effect.<\/p>\n<pre>service apache2 restart<\/pre>\n<p>Move the CS-Cart installation files to the document root directory defined in the virtual host directive above:<\/p>\n<pre>mv \/opt\/cscart\/ \/var\/www\/html\/cscart<\/pre>\n<p>Also, the webserver user (Apache) needs to be able to write to &#8216;\/var\/www\/html\/cscart\/&#8217; directory so you can easily accomplish that by executing the following command:<\/p>\n<pre>chown www-data:www-data -R \/var\/www\/html\/cscart\/<\/pre>\n<p>Set the proper file permissions for CS-Cart to write to certain files and directories:<\/p>\n<pre>cd \/var\/www\/html\/cscart\/\r\nchmod 666 config.local.php\r\nchmod -R 777 design images var\r\nfind design -type f -print0 | xargs -0 chmod 666\r\nfind images -type f -print0 | xargs -0 chmod 666\r\nfind var -type f -print0 | xargs -0 chmod 666<\/pre>\n<p>Open http:\/\/your-domain.com\/install\/ in your popular web browser and follow the easy instructions.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-17072\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end.png\" alt=\"cs-cart back-end\" width=\"612\" height=\"630\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end.png 612w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end-291x300.png 291w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end-97x100.png 97w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart-back-end-73x75.png 73w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/><\/p>\n<p>After finishing the installation it is strongly recommended to delete the install directory in your Apache&#8217;s document root:<\/p>\n<pre>rm -rf \/var\/www\/html\/cscart\/install\/<\/pre>\n<p>Also, change the access permissions for the files as advised below:<\/p>\n<pre>chmod 644 \/var\/www\/html\/cscart\/config.local.php\r\nchmod 644 \/var\/www\/html\/cscart\/design\/.htaccess images\/.htaccess\r\nchmod 664 \/var\/www\/html\/cscart\/var\/.htaccess \/var\/www\/html\/cscart\/var\/themes_repository\/.htaccess\r\nchmod 644 \/var\/www\/html\/cscart\/design\/index.php \/var\/www\/html\/cscart\/images\/index.php\r\nchmod 664 \/var\/www\/html\/cscart\/var\/index.php \/var\/www\/html\/cscart\/var\/themes_repository\/index.php<\/pre>\n<p>Do not forget to change the default administrator password.<\/p>\n<p>That is it. The CS-Cart installation is now complete. Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/cs-cart-hosting.html\">CS-Cart Web Hosting<\/a> plans, in which case you can simply ask our expert Linux admins to <strong>install CS-Cart<\/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","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show how to install CS-Cart v4 on an Ubuntu 14.04 VPS with Apache, PHP and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install CS-Cart v4 on an Ubuntu 14.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#more-17066\" aria-label=\"Read more about How to install CS-Cart v4 on an Ubuntu 14.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17067,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1711,13,1698],"tags":[772,773,774],"class_list":["post-17066","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-e-commerce","category-tutorials","category-ubuntu","tag-install-cs-cart","tag-install-cs-cart-on-ubuntu","tag-install-cs-cart-v4-on-apache","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.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install CS-Cart v4 on an Ubuntu 14.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-cs-cart-v4-on-an-ubuntu-14-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 CS-Cart v4 on an Ubuntu 14.04 VPS\" \/>\n<meta property=\"og:description\" content=\"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-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=\"2015-04-23T20:04:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"50\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"4 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-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install CS-Cart v4 on an Ubuntu 14.04 VPS\",\"datePublished\":\"2015-04-23T20:04:04+00:00\",\"dateModified\":\"2022-06-03T08:44:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":482,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/cs-cart.png\",\"keywords\":[\"install CS-Cart\",\"install CS-Cart on Ubuntu\",\"Install CS-Cart v4 on Apache\"],\"articleSection\":[\"E-Commerce\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/cs-cart.png\",\"datePublished\":\"2015-04-23T20:04:04+00:00\",\"dateModified\":\"2022-06-03T08:44:23+00:00\",\"description\":\"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/cs-cart.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/cs-cart.png\",\"width\":150,\"height\":50,\"caption\":\"cs-cart\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install CS-Cart v4 on an Ubuntu 14.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 CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting","description":"How to install CS-Cart v4 on an Ubuntu 14.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-cs-cart-v4-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS","og_description":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-04-23T20:04:04+00:00","article_modified_time":"2022-06-03T08:44:23+00:00","og_image":[{"width":150,"height":50,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS","datePublished":"2015-04-23T20:04:04+00:00","dateModified":"2022-06-03T08:44:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/"},"wordCount":482,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png","keywords":["install CS-Cart","install CS-Cart on Ubuntu","Install CS-Cart v4 on Apache"],"articleSection":["E-Commerce","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/","name":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png","datePublished":"2015-04-23T20:04:04+00:00","dateModified":"2022-06-03T08:44:23+00:00","description":"How to install CS-Cart v4 on an Ubuntu 14.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/04\/cs-cart.png","width":150,"height":50,"caption":"cs-cart"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-cs-cart-v4-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install CS-Cart v4 on an Ubuntu 14.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\/17066","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=17066"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17066\/revisions"}],"predecessor-version":[{"id":42114,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17066\/revisions\/42114"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17067"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17066"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17066"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}