{"id":14479,"date":"2023-02-13T08:19:43","date_gmt":"2023-02-13T08:19:43","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=14479"},"modified":"2024-12-24T12:02:11","modified_gmt":"2024-12-24T12:02:11","slug":"how-to-setup-cs-cart-on-aws","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/","title":{"rendered":"How to setup cs-cart on AWS"},"content":{"rendered":"\n<p>You can host your online store with ease using the straightforward and effective eCommerce platform known as CS-Cart. <\/p>\n\n\n\n<p>However, it uses MariaDB\/MySQL&nbsp;to store its data and is written in PHP. <\/p>\n\n\n\n<p>Using the built-in online interface, you may sell products and simply manage product inventories. There is a free 30-day trial of CS-Cart, but there is no free version.<\/p>\n\n\n\n<p>Many features are available with CS-Cart, including multi-store, integrated SEO, theme editor, layout editor, various payment systems, and many more.<\/p>\n\n\n\n<p>It was created specifically for creating and maintaining a great shop of any size. <\/p>\n\n\n\n<p>We will learn how to install CS-Cart on an Ubuntu 20.04 server in this guide. Let&#8217;s start the installation.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Requirements<\/h2>\n\n\n\n<ul>\n<li><strong>OS<\/strong> &#8211; Ubuntu server 18.04 or higher<\/li>\n\n\n\n<li><strong>Database Server<\/strong> &#8211; MySQL&nbsp;version 4.1 or higher \/ MariaDB 5.5 or higher<\/li>\n\n\n\n<li><strong>Web server<\/strong> &#8211; Apache\/Nginx<\/li>\n\n\n\n<li><strong>PHP<\/strong> &#8211; version 5.3 or higher<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update &amp; Upgrade The Apt Source List.<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get update &amp;&amp; apt-get upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install LAMP Stack<\/h2>\n\n\n\n<p>Install Apache web server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install apache2 -y\nsudo systemctl start apache2.service\nsudo systemctl enable apache2.service<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_apache.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"361\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_apache-1024x361.png\" alt=\"lamp\" class=\"wp-image-14678\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/apache_start-enable.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"96\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/apache_start-enable-1024x96.png\" alt=\"cscart\" class=\"wp-image-14691\"\/><\/a><\/figure>\n\n\n\n<p><strong>Database installation MySQL server<\/strong><\/p>\n\n\n\n<p>A database can be served from the local database server as well as through the <a href=\"https:\/\/cloudkul.com\/blog\/what-is-aws-rds\/\">AWS RDS<\/a>. <\/p>\n\n\n\n<p><strong>Case 1<\/strong>: If you are using a Local Database Server<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install mysql-server -y\nsudo systemctl enable mysql<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysql_installation.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"413\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysql_installation-1024x413.png\" alt=\"db\" class=\"wp-image-14680\"\/><\/a><\/figure>\n\n\n\n<p><strong>Case 2<\/strong>: If you are using AWS RDS<\/p>\n\n\n\n<p><a href=\"https:\/\/cloudkul.com\/blog\/what-is-aws-rds\/\">Amazon RDS <\/a>handles routine database tasks, such as provisioning, patching, backup, recovery, failure detection, and repair.<\/p>\n\n\n\n<p>AWS will manage everything and you do not need to worry about anything.<\/p>\n\n\n\n<p>Firstly you have to launch an RDS and then configure it with your <a href=\"https:\/\/cloudkul.com\/blog\/aws-ec2-and-its-pricing-plans\/\">Ec2 instance<\/a>.<\/p>\n\n\n\n<p>Then, Install PHP using the Ondrej repository<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install -y software-properties-common\nsudo add-apt-repository ppa:ondrej\/php\nsudo apt-get update\nsudo apt-get install php8.0 libapache2-mod-php8.0 php8.0-common php8.0-sqlite3 php8.0-curl php8.0-intl php8.0-mbstring php8.0-xmlrpc php8.0-mysql php8.0-gd php8.0-xml php8.0-cli php8.0-zip php8.0-soap unzip -y<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/php_ondrej.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"364\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/php_ondrej-1024x364.png\" alt=\"rds\" class=\"wp-image-14685\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/phpondrej_install.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"343\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/phpondrej_install-1024x343.png\" alt=\"rds\" class=\"wp-image-14686\"\/><\/a><\/figure>\n\n\n\n<p>Open the php.ini file and make the following changes once all the packages have been installed.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo vim \/etc\/php\/8.0\/apache2\/php.ini<\/pre>\n\n\n\n<p>Do the mentioned changes in the file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">memory_limit = 256M\nupload_max_filesize = 150M\nmax_execution_time = 360\ndate.timezone = Asia\/Kolkata<\/pre>\n\n\n\n<p>Save and close the file. Then restart the web server as well as the database server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl restart apache2\nsudo systemctl restart mysql<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysqldb_apache_restart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"912\" height=\"123\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysqldb_apache_restart.png\" alt=\"db\" class=\"wp-image-14687\"\/><\/a><\/figure>\n\n\n\n<p>Now, let&#8217;s move to the next part of configuring the database for the CS cart.<\/p>\n\n\n\n<p><strong>MySQL Configuration:<\/strong><\/p>\n\n\n\n<p>Please follow the instructions below if you are using a local database:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mysql -u root -p<\/pre>\n\n\n\n<p>If it asks for the password, simply hit enter.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CREATE DATABASE cscartdb;\nCREATE USER 'cscartuser'@'localhost' IDENTIFIED BY 'cscart';\nGRANT ALL ON cscartdb.* TO 'cscartuser'@'localhost' WITH GRANT OPTION;\nFLUSH PRIVILEGES;\nEXIT;<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysql-login.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"420\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/mysql-login-1024x420.png\" alt=\"mysql\" class=\"wp-image-14688\"\/><\/a><\/figure>\n\n\n\n<p>Follow the instructions below if you are using an <strong>AWS RDS<\/strong>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo mysql -h yourrdsendpoint -u username -p\nCREATE DATABASE cscartdb;\nCREATE USER 'cscartuser'@'%' IDENTIFIED BY 'cscart';\nGRANT ALL ON cscartdb.* TO 'cscartuser'@'%' WITH GRANT OPTION;\nFLUSH PRIVILEGES;\nEXIT;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install CS-cart<\/h2>\n\n\n\n<p>You should first download CS-Cart from their website in the most recent version. Click <a href=\"https:\/\/www.cs-cart.com\/download-cs-cart.html\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a> to download.<\/p>\n\n\n\n<p>When the download is successful, use the following command to extract the downloaded file:<\/p>\n\n\n\n<p>Let&#8217;s create a directory with the name &#8220;<strong>cscart<\/strong>&#8221; inside the mentioned path below.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mkdir \/var\/www\/html\/cscart<\/pre>\n\n\n\n<p>Now unzip the downloaded file in the previously created directory &#8220;cscart&#8221;.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo unzip cscart_v4.16.1_b2b.zip -d \/var\/www\/html\/cscart\/<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/unzip-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"388\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/unzip-1-1024x388.png\" alt=\"cscart\" class=\"wp-image-14690\"\/><\/a><\/figure>\n\n\n\n<p>Next, give permission and ownership to the files and directories.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo chown -R www-data:www-data \/var\/www\/html\/cscart\/\nsudo chmod -R 755 \/var\/www\/html\/cscart\/\ncd \/var\/www\/html\/cscart\nsudo chmod 666 config.local.php\nsudo chmod -R 777 design\/ images\/ var\/<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/permissions.png\"><img loading=\"lazy\" decoding=\"async\" width=\"929\" height=\"237\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/permissions.png\" alt=\"cscart\" class=\"wp-image-14704\"\/><\/a><\/figure>\n\n\n\n<p>Also, run the below-mentioned commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find design -type f -print0 | xargs -0 chmod 666\nfind images -type f -print0 | xargs -0 chmod 666\nfind var -type f -print0 | xargs -0 chmod 666<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/permision2.png\"><img loading=\"lazy\" decoding=\"async\" width=\"916\" height=\"146\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/permision2.png\" alt=\"cscart\" class=\"wp-image-14708\"\/><\/a><\/figure>\n\n\n\n<p>Let&#8217;s move to configure the web server for the SSL &amp; domain configuration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configuring Apache for the CS-Cart<\/h2>\n\n\n\n<p>We will use the default host file to host our CS cart. Use the below command to access the file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">vim \/etc\/apache2\/sites-available\/000-default.conf<\/pre>\n\n\n\n<p>Then, make the required changes in the file according to your domain name.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ServerName  kasumi.tk #Mentioned your domain name\nServerAdmin webmaster@localhost\nDocumentRoot \/var\/www\/html\/cscart<\/pre>\n\n\n\n<p>We also have to set up the SSL for the domain to be secure. Please click here to learn how to get <a href=\"https:\/\/cloudkul.com\/blog\/how-to-get-free-https-on-your-website-using-lets-encrypt-ssl\/\">Let&#8217;s encrypt certificates<\/a>.<\/p>\n\n\n\n<p>Once the certs are applied to the domain. You have to mention the certs path in the default SSL file and edit the file accordingly.<\/p>\n\n\n\n<p>Now open apache.conf file and edit the mentioned lines.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">vim \/etc\/apache2\/apache2.conf<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;Directory \/var\/www\/html\/cscart\/>\n        Options Indexes FollowSymLinks\n        AllowOverride All\n        Require all granted\n&lt;\/Directory><\/pre>\n\n\n\n<p>Then restart the web server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service apache2 restart<\/pre>\n\n\n\n<p>Once all the above configurations are done. Do proceed with the CS-cart installation. Hit your domain in your favorite browser and click on Install.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_page.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"555\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_page-1024x555.png\" alt=\"cscart\" class=\"wp-image-14734\"\/><\/a><\/figure>\n\n\n\n<p>After clicking on the install button agree to the terms and conditions and click on the &#8220;<strong>next step<\/strong>&#8221; button.<\/p>\n\n\n\n<p>Once you click on the &#8220;next step&#8221; button, you will be redirected to the page where you have to fill in your database credentials and then click on the &#8220;<strong>Install<\/strong>&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/page_3.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"555\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/page_3-1024x555.png\" alt=\"next\" class=\"wp-image-14735\"\/><\/a><\/figure>\n\n\n\n<p>Start the CS-Cart installation, select &#8220;Trial&#8221; for licensing, or enter your license key if you have one.<\/p>\n\n\n\n<p>Now, click on the &#8220;<strong>select<\/strong>&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/adminpage-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"541\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/adminpage-1-1024x541.png\" alt=\"cscart\" class=\"wp-image-14739\"\/><\/a><\/figure>\n\n\n\n<p>Woohoo! You have successfully installed and configured the Cs-cart. Now you can create your online store easily.<\/p>\n\n\n\n<p><strong>Note<\/strong>: Now there are some recommended steps that we have to take to protect our current installation and the source code.<\/p>\n\n\n\n<p>First, remove the &#8220;<strong>install<\/strong>&#8221; directory from the root path. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\/cscart\/\nrm -rf install\/<\/pre>\n\n\n\n<p>It&#8217;s also advised to change the file permission. To change, run the below commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo chmod 644 config.local.php\nsudo chmod 644 design\/.htaccess images\/.htaccess\nsudo chmod 664 var\/.htaccess var\/themes_repository\/.htaccess\nsudo chmod 644 design\/index.php images\/index.php\nsudo chmod 664 var\/index.php var\/themes_repository\/index.php<\/pre>\n\n\n\n<p>To access the admin page and storefront. Use the below URLs with your domain.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">https:\/\/yourdomain\/admin.php #toacessadminpage\nhttps:\/\/yourdomain\/ #toaccessstorefront<\/pre>\n\n\n\n<p>If you find this blog helpful, Please give us your valuable time to provide us feedback for the same.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need Support?<\/h2>\n\n\n\n<p>Thank You for reading this Blog!<\/p>\n\n\n\n<p>For further more interesting blogs, keep in touch with us. If you need any kind of support, simply raise a ticket at&nbsp;<strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.uvdesk.com\/en\/<\/a>.<\/strong><\/p>\n\n\n\n<p>You may also visit our CS-Cart development services and quality&nbsp;<strong><a href=\"https:\/\/store.webkul.com\/index.php\/Odoo.html\" target=\"_blank\" rel=\"noreferrer noopener\">CS-Cart Extensions<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>For further help or queries, please&nbsp;<a href=\"https:\/\/cloudkul.com\/contact\/\" target=\"_blank\" rel=\"noreferrer noopener\">contact<\/a>&nbsp;us or raise a&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">ticket<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can host your online store with ease using the straightforward and effective eCommerce platform <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":42,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[32,492,87,86],"tags":[16,811,33,804,556],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to setup cs-cart on AWS - Cloudkul<\/title>\n<meta name=\"description\" content=\"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup cs-cart on AWS - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-13T08:19:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-24T12:02:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_apache-1024x361.png\" \/>\n<meta name=\"author\" content=\"kshitiz pathak\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\",\"name\":\"How to setup cs-cart on AWS - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2023-02-13T08:19:43+00:00\",\"dateModified\":\"2024-12-24T12:02:11+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f\"},\"description\":\"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup cs-cart on AWS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f\",\"name\":\"kshitiz pathak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"kshitiz pathak\"},\"url\":\"https:\/\/cloudkul.com\/blog\/author\/kshitizpathak-cloud\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup cs-cart on AWS - Cloudkul","description":"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.","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:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/","og_locale":"en_US","og_type":"article","og_title":"How to setup cs-cart on AWS - Cloudkul","og_description":"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.","og_url":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/","og_site_name":"Cloudkul","article_published_time":"2023-02-13T08:19:43+00:00","article_modified_time":"2024-12-24T12:02:11+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/install_apache-1024x361.png"}],"author":"kshitiz pathak","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/","url":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/","name":"How to setup cs-cart on AWS - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2023-02-13T08:19:43+00:00","dateModified":"2024-12-24T12:02:11+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f"},"description":"You can host your online store with ease using an eCommerce platform known as CS-Cart. Here we will learn how to install CS-Cart on an Ubuntu 20.04 server.","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/how-to-setup-cs-cart-on-aws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to setup cs-cart on AWS"}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f","name":"kshitiz pathak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"kshitiz pathak"},"url":"https:\/\/cloudkul.com\/blog\/author\/kshitizpathak-cloud\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/14479"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/42"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=14479"}],"version-history":[{"count":70,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/14479\/revisions"}],"predecessor-version":[{"id":19244,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/14479\/revisions\/19244"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=14479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=14479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=14479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}