{"id":347373,"date":"2022-08-08T10:56:11","date_gmt":"2022-08-08T10:56:11","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=347373"},"modified":"2022-08-08T10:56:19","modified_gmt":"2022-08-08T10:56:19","slug":"create-replica-of-existing-prestashop-website","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/","title":{"rendered":"Create replica of existing PrestaShop website"},"content":{"rendered":"\n<p>Usually when PrestaShop is installed, the server domain, folder etc are stored in PrestaShop database and parameters. Hence it becomes hectic to create replica of existing PrestaShop website because all URL configuration are pointing to old website location in database. So here we will talk about steps to transfer or create replica of existing PrestaShop website on another server or folder in same server.<\/p>\n\n\n\n<p>There are 5 steps required to create replica of existing PrestaShop website:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Copy PrestaShop folder to target location<\/li><li>Prepare database backup and install on new database<\/li><li>Update new URL in database and PrestaShop files<\/li><li>Update new database details in PrestaShop files<\/li><li>Clear cache<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1 : Copy PrestaShop folder to new location:<\/strong><\/h2>\n\n\n\n<p>You need to copy all files from PrestaShop root folder to new location. For example, If your old PrestaShop files are in <strong>\/public_html\/ <\/strong>folder and the new server folder is <strong>\/public_html\/newprestashop<\/strong>, then you need to copy every file from \/public_html and copy to <strong>\/public_html\/newprestashop<\/strong>. <\/p>\n\n\n\n<p>From this step, you will decide <em>physical_uri<\/em> of your new PrestaShop. The physical URI is the relative path of PrestaShop root folder from server root folder. In above example, if the server root folder is <em>\/public_html\/<\/em> and you are copying PrestaShop in <em>\/public_html\/newprestashop<\/em>\/, then the physical URI is &#8220;<em>\/newprestashop\/<\/em>&#8220;. The physical URI is added to domain to create base URL of PrestaShop website.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 2 : Prepare database backup and install on new database<\/strong><\/h2>\n\n\n\n<p>In this step, you will copy the database from old PrestaShop database to your new database. The simplest way to do this is to create database backup from old PrestaShop backoffice. After backup is created, create a new database in new location and import the backup file. This will copy all data from old database to new database. <\/p>\n\n\n\n<p>Additionally, you will get the database details for new PrestaShop website replica from this step:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Database host<\/li><li>Database name<\/li><li>Login username <\/li><li>Password<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3 : Update new URL in database and PrestaShop files<\/strong><\/h2>\n\n\n\n<p>Since you already have domain of your server and physical URI for new PrestaShop location, you need to update these details in database and PrestaShop files.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>To update the URLs in database, you need to update values in two tables: shop_url and configuration.<ul><li>Login to new database<\/li><li>Open shop_url table, you will see one row with old PrestaShop domain and physical URI<\/li><li>update this table row with new domain in domain and domain_ssl and physical URI in physical_uri field.<\/li><li>Open configuration table and search for &#8220;PS_SHOP_DOMAIN&#8221; and &#8220;PS_SHOP_DOMAIN_SSL&#8221; in name column.<\/li><li>Update your domain in value for these names in configuration table.<\/li><\/ul><\/li><li>Lastly, you need to update domain in htaccess file in PrestaShop root directory.<ul><li>Open .htaccess file located in new PrestaShop folder.<\/li><li>You will see old PrestaShop domain everywhere in htaccess file.<\/li><li>Change the old domain to new domain.<\/li><\/ul><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4 : Update new database details in PrestaShop files<\/strong><\/h2>\n\n\n\n<p>The new database details must be updated in the files to make sure the new PrestaShop uses the new database. To update new database details:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Open \/app\/config\/parameters.php file.<\/li><li>You will see a list of settings for PrestaShop along with database details like in the screenshot:<\/li><\/ul>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\" alt=\"image-20\" class=\"wp-image-347385\" width=\"313\" height=\"405\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png 352w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20-232x300.png 232w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20-193x249.png 193w\" sizes=\"(max-width: 313px) 100vw, 313px\" loading=\"lazy\" \/><\/figure>\n<\/div><\/div>\n<\/div>\n\n\n\n<ul class=\"wp-block-list\"><li>Update database_host, database_port, database_name, database_user and database_password in the respective fields.<\/li><\/ul>\n\n\n\n<p>After these steps are done, the new PrestaShop is ready to use the new database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 5 : Clear cache<\/strong><\/h2>\n\n\n\n<p>This step is to ensure the old PrestaShop cache does not conflict with new PrestaShop settings. Please delete \/var\/cache\/dev and \/var\/cache\/prod folders from new PrestaShop root folder.<\/p>\n\n\n\n<p>After all above steps are done, the new PrestaShop replica website is ready. This PrestaShop will have everything from old PrestaShop including all data, all modules and all file changes (if any) also.<\/p>\n\n\n\n<p>That&#8217;s all about how to create replica of existing PrestaShop website. If any issue or doubt in the above process, please feel free to let us know in the comment section. <\/p>\n\n\n\n<p>I would be happy to help.<\/p>\n\n\n\n<p>Also, you can explore our <a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a>  and a large range of quality <a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at <a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Usually when PrestaShop is installed, the server domain, folder etc are stored in PrestaShop database and parameters. Hence it becomes hectic to create replica of existing PrestaShop website because all URL configuration are pointing to old website location in database. So here we will talk about steps to transfer or create replica of existing PrestaShop <a href=\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":264,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[2065,12987,12988],"class_list":["post-347373","post","type-post","status-publish","format-standard","hentry","category-prestashop","tag-prestashop","tag-replica","tag-test-site"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create replica of existing PrestaShop website - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create replica of existing PrestaShop website - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-08T10:56:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-08T10:56:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\" \/>\n<meta name=\"author\" content=\"Ram Chandra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ram Chandra\" \/>\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:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\"},\"author\":{\"name\":\"Ram Chandra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/abcd2edf640c51cd905386b99118ad71\"},\"headline\":\"Create replica of existing PrestaShop website\",\"datePublished\":\"2022-08-08T10:56:11+00:00\",\"dateModified\":\"2022-08-08T10:56:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\"},\"wordCount\":699,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\",\"keywords\":[\"prestashop\",\"replica\",\"test site\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\",\"name\":\"Create replica of existing PrestaShop website - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\",\"datePublished\":\"2022-08-08T10:56:11+00:00\",\"dateModified\":\"2022-08-08T10:56:19+00:00\",\"description\":\"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png\",\"width\":352,\"height\":455,\"caption\":\"image-20\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create replica of existing PrestaShop website\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/abcd2edf640c51cd905386b99118ad71\",\"name\":\"Ram Chandra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a237e2b96f2a8989c930db6c377971a3d52601b0bba3c5e3dc79a88205178d26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a237e2b96f2a8989c930db6c377971a3d52601b0bba3c5e3dc79a88205178d26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ram Chandra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ram-chandra178\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create replica of existing PrestaShop website - Webkul Blog","description":"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.","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:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/","og_locale":"en_US","og_type":"article","og_title":"Create replica of existing PrestaShop website - Webkul Blog","og_description":"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.","og_url":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-08-08T10:56:11+00:00","article_modified_time":"2022-08-08T10:56:19+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png","type":"","width":"","height":""}],"author":"Ram Chandra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ram Chandra","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/"},"author":{"name":"Ram Chandra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/abcd2edf640c51cd905386b99118ad71"},"headline":"Create replica of existing PrestaShop website","datePublished":"2022-08-08T10:56:11+00:00","dateModified":"2022-08-08T10:56:19+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/"},"wordCount":699,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png","keywords":["prestashop","replica","test site"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/","url":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/","name":"Create replica of existing PrestaShop website - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png","datePublished":"2022-08-08T10:56:11+00:00","dateModified":"2022-08-08T10:56:19+00:00","description":"Here are 5 easy steps to instantly create replica of existing PrestaShop website with all data, modules and files from old PrestaShop website.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/image-20.png","width":352,"height":455,"caption":"image-20"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-replica-of-existing-prestashop-website\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create replica of existing PrestaShop website"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/abcd2edf640c51cd905386b99118ad71","name":"Ram Chandra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a237e2b96f2a8989c930db6c377971a3d52601b0bba3c5e3dc79a88205178d26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a237e2b96f2a8989c930db6c377971a3d52601b0bba3c5e3dc79a88205178d26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ram Chandra"},"url":"https:\/\/webkul.com\/blog\/author\/ram-chandra178\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/347373","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/264"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=347373"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/347373\/revisions"}],"predecessor-version":[{"id":347395,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/347373\/revisions\/347395"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=347373"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=347373"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=347373"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}