{"id":231009,"date":"2020-02-13T14:38:19","date_gmt":"2020-02-13T14:38:19","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=231009"},"modified":"2020-03-04T13:55:09","modified_gmt":"2020-03-04T13:55:09","slug":"migrate-akeneo-from-3-2-to-4-0","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/","title":{"rendered":"Migration Akeneo from 3.2 to 4.0"},"content":{"rendered":"\n<p>This blog helps you to migrate\/upgrade Akeneo Project from 3.2 version to 4.0. <\/p>\n\n\n\n<p><strong>Step1:<\/strong> Stop the running daemon service.<\/p>\n\n\n\n<p><strong>Step2: <\/strong>Take the MySQL Dump of your Production Database using the terminal or <a href=\"https:\/\/store.webkul.com\/akeneo-backup-management.html\">Backup Akeneo Connector<\/a><\/p>\n\n\n\n<p><strong>Step3:<\/strong> Download the Akeneo PIM 4.0 composer.json<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Community Edition<br><\/strong> You can download the composer.json file directly from the Github repository: <a href=\"https:\/\/raw.githubusercontent.com\/akeneo\/pim-community-standard\/4.0\/composer.json\">https:\/\/raw.githubusercontent.com\/akeneo\/pim-community-standard\/4.0\/composer.json<\/a><\/p><\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Enterprise Edition<br><\/strong>You will find the composer.json file inside the Akeneo Enterprise Edition archive. Please visit your Akeneo Portal to download the archive.<\/p><\/blockquote>\n\n\n\n<p><strong>Step 4: <\/strong>Update the System Component (<a href=\"https:\/\/docs.akeneo.com\/4.0\/install_pim\/manual\/system_requirements\/system_install_ubuntu_1804.html#\">For Ubuntu<\/a>, <a href=\"https:\/\/docs.akeneo.com\/4.0\/install_pim\/manual\/system_requirements\/manual_system_installation_debian10.html\">For Debian 10&nbsp;<\/a>)<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>PHP 7.3<\/li><li>MySQL 8<\/li><li>Elasticsearch 7.5<\/li><\/ul>\n\n\n\n<p><strong>Step 5: <\/strong>Update the Virtual Host Configuration<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>replace the public in place of web<\/li><li>replace the index.php in place of app.php<\/li><\/ol>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;VirtualHost&gt;\n    ServerName akeneo-pim.local\n\n    DocumentRoot \/path\/to\/installation\/pim-community-standard\/public\n    &lt;Directory \/path\/to\/installation\/pim-community-standard\/public&gt;\n        AllowOverride None\n        Require all granted\n\n        Options -MultiViews\n        RewriteEngine On\n        RewriteCond %{REQUEST_FILENAME} !-f\n        RewriteRule ^(.*)$ index.php [QSA,L]\n    &lt;\/Directory&gt;\n\n    &lt;Directory \/path\/to\/installation\/pim-community-standard\/public\/bundles&gt;\n        RewriteEngine Off\n    &lt;\/Directory&gt;\n\n    &lt;FilesMatch \\.php$&gt;\n        SetHandler &quot;proxy:unix:\/run\/php\/php7.3-fpm.sock|fcgi:\/\/localhost\/&quot;\n    &lt;\/FilesMatch&gt;\n\n    SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0\n\n    ErrorLog ${APACHE_LOG_DIR}\/akeneo-pim_error.log\n    LogLevel warn\n    CustomLog ${APACHE_LOG_DIR}\/akeneo-pim_access.log combined\n&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p><strong>Step 6: Prepare Akeneo<\/strong><\/p>\n\n\n\n<p>SSH and goto at your Akeneo 3.2 document root directory.  <\/p>\n\n\n\n<p>Remove the cache using the command<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">rm -rf var\/cache\/<\/pre>\n\n\n\n<p>Copy the Akeneo 4 composer.json  at the root directory using the command. <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cp \/path\/to\/pim-4.0-composer.json .<\/pre>\n\n\n\n<p><strong>Step 7: Install Akeneo 4.0 dependencies<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php -d memory_limit=4G \/usr\/local\/bin\/composer update<\/pre>\n\n\n\n<p><strong>Step 8:<\/strong> Update the current FileSystem Layout to match the <a href=\"http:\/\/fabien.potencier.org\/symfony4-directory-structure.html\">Symfony 4 structure.<\/a><\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>For the Akeneo PIM Community 4.0: <\/p><\/blockquote>\n\n\n\n<pre class=\"EnlighterJSRAW\">vendor\/akeneo\/pim-community-dev\/std-build\/migration\/prepare_32_to_40.sh<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>For the Akeneo PIM Enterprise 4.0: <\/p><\/blockquote>\n\n\n\n<pre class=\"EnlighterJSRAW\">vendor\/akeneo\/pim-enterprise-dev\/std-build\/migration\/prepare_32_to_40.sh<\/pre>\n\n\n\n<p><strong>Step 9: <\/strong> Update the MySQL and Elasticsearch Credentials<\/p>\n\n\n\n<p>edit the <strong>.env<\/strong> file from your Akeneo Document root directory. and update the parameters.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">APP_DATABASE_HOST=mysql-host\nAPP_DATABASE_PORT=3306\nAPP_DATABASE_NAME=akeneo_pim_db_name\nAPP_DATABASE_USER=akeneo_pim_user\nAPP_DATABASE_PASSWORD=akeneo_pim_password\nAPP_INDEX_HOSTS=elasticsearch-host:9200<\/pre>\n\n\n\n<p><strong>Step 10:<\/strong> Check the Akeneo 4 requirements that are fulfilled using the command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console pim:installer:check-requirements<\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>If this command detects something not working or not properly configured, please fix the problem before continuing.<\/p><\/blockquote>\n\n\n\n<p><strong>Step 11:<\/strong> Install the Frontend Dependencies and assets.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console pim:installer:assets --symlink --clean\nyarnpkg install\nyarnpkg run webpack<\/pre>\n\n\n\n<p><strong>Step 12:<\/strong> Migrate the Data<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console doctrine:migration:migrate<\/pre>\n\n\n\n<p>If you are facing any issue feel free to contact us. <\/p>\n\n\n\n<p>For More Detail Read Official Doc: <\/p>\n\n\n\n<p><a href=\"https:\/\/docs.akeneo.com\/4.0\/migrate_pim\/upgrade\/upgrade_from_32_to_40.html\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">https:\/\/docs.akeneo.com\/4.0\/migrate_pim\/upgrade_from_32_to_40.html#akeneo-pim-4-0-composer-json<\/a><\/p>\n\n\n\n<p>Also Read:<\/p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-webkul-blog\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/webkul.com\/blog\/installation-akeneo-v-4-x-pim\n<\/div><\/figure>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-webkul-blog\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/webkul.com\/blog\/how-to-apply-a-patch-akeneo\/\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>This blog helps you to migrate\/upgrade Akeneo Project from 3.2 version to 4.0. Step1: Stop the running daemon service. Step2: Take the MySQL Dump of your Production Database using the terminal or Backup Akeneo Connector Step3: Download the Akeneo PIM 4.0 composer.json Community Edition You can download the composer.json file directly from the Github repository: <a href=\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":189,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5709,1],"tags":[3649,8330,7150,7702,8329],"class_list":["post-231009","post","type-post","status-publish","format-standard","hentry","category-akeneo","category-uncategorized","tag-akeneo","tag-akeneo-3-0","tag-akeneo-data-migration","tag-akeneo-pim","tag-akeneo-product-information-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Migration Akeneo from 3.2 to 4.0 - Webkul Blog<\/title>\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\/migrate-akeneo-from-3-2-to-4-0\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Migration Akeneo from 3.2 to 4.0 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"This blog helps you to migrate\/upgrade Akeneo Project from 3.2 version to 4.0. Step1: Stop the running daemon service. Step2: Take the MySQL Dump of your Production Database using the terminal or Backup Akeneo Connector Step3: Download the Akeneo PIM 4.0 composer.json Community Edition You can download the composer.json file directly from the Github repository: [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\" \/>\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=\"2020-02-13T14:38:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-04T13:55:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Navneet Kumar\" \/>\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=\"Navneet Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\"},\"author\":{\"name\":\"Navneet Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/fba361b1101985561e7a6e0685079a8c\"},\"headline\":\"Migration Akeneo from 3.2 to 4.0\",\"datePublished\":\"2020-02-13T14:38:19+00:00\",\"dateModified\":\"2020-03-04T13:55:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\"},\"wordCount\":284,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Akeneo\",\"Akeneo 3.0\",\"Akeneo Data Migration\",\"Akeneo PIM\",\"Akeneo Product Information Management\"],\"articleSection\":[\"Akeneo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\",\"url\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\",\"name\":\"Migration Akeneo from 3.2 to 4.0 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2020-02-13T14:38:19+00:00\",\"dateModified\":\"2020-03-04T13:55:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migration Akeneo from 3.2 to 4.0\"}]},{\"@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\/fba361b1101985561e7a6e0685079a8c\",\"name\":\"Navneet Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d0ebf451d594c29d21e3f35988748bf30377c55a864d36dfe98891688ac796d6?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\/d0ebf451d594c29d21e3f35988748bf30377c55a864d36dfe98891688ac796d6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Navneet Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/navneetkumar-symfony813\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migration Akeneo from 3.2 to 4.0 - Webkul Blog","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\/migrate-akeneo-from-3-2-to-4-0\/","og_locale":"en_US","og_type":"article","og_title":"Migration Akeneo from 3.2 to 4.0 - Webkul Blog","og_description":"This blog helps you to migrate\/upgrade Akeneo Project from 3.2 version to 4.0. Step1: Stop the running daemon service. Step2: Take the MySQL Dump of your Production Database using the terminal or Backup Akeneo Connector Step3: Download the Akeneo PIM 4.0 composer.json Community Edition You can download the composer.json file directly from the Github repository: [...]","og_url":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2020-02-13T14:38:19+00:00","article_modified_time":"2020-03-04T13:55:09+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Navneet Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Navneet Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/"},"author":{"name":"Navneet Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/fba361b1101985561e7a6e0685079a8c"},"headline":"Migration Akeneo from 3.2 to 4.0","datePublished":"2020-02-13T14:38:19+00:00","dateModified":"2020-03-04T13:55:09+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/"},"wordCount":284,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Akeneo","Akeneo 3.0","Akeneo Data Migration","Akeneo PIM","Akeneo Product Information Management"],"articleSection":["Akeneo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/","url":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/","name":"Migration Akeneo from 3.2 to 4.0 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2020-02-13T14:38:19+00:00","dateModified":"2020-03-04T13:55:09+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/migrate-akeneo-from-3-2-to-4-0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Migration Akeneo from 3.2 to 4.0"}]},{"@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\/fba361b1101985561e7a6e0685079a8c","name":"Navneet Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d0ebf451d594c29d21e3f35988748bf30377c55a864d36dfe98891688ac796d6?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\/d0ebf451d594c29d21e3f35988748bf30377c55a864d36dfe98891688ac796d6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Navneet Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/navneetkumar-symfony813\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/231009","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\/189"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=231009"}],"version-history":[{"count":6,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/231009\/revisions"}],"predecessor-version":[{"id":236492,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/231009\/revisions\/236492"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=231009"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=231009"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=231009"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}