{"id":59659,"date":"2016-09-20T08:08:28","date_gmt":"2016-09-20T08:08:28","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=59659"},"modified":"2018-05-03T05:50:08","modified_gmt":"2018-05-03T05:50:08","slug":"setup-akeneo-php7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/","title":{"rendered":"How to setup akeneo with PHP7"},"content":{"rendered":"<p>Akeneo is an open source Product Information Management System(PIM) system designed for retailers to satisfy their multichannel needs. It is a tool for centralize informations of products and catalogs. Akeneo can manage your product inventory pretty well. It can easily extract data from any source like erp, e-commerce websites and marketplaces and manage it in central repository. We can easily import and export datas through akeneo PIM.<\/p>\n<p>Main features of akeneos are<\/p>\n<ol>\n<li>Easy product management<\/li>\n<li>Localization<\/li>\n<li>Import and export<\/li>\n<li>Quality control<\/li>\n<li>Configuration management<\/li>\n<\/ol>\n<p>In this tutorial I will show you how to setup akeneo.\u00a0I setup akeneo with these configurations.<\/p>\n<p><strong>Ubuntu \u00a0 \u00a0 \u00a0 \u00a0 \u00a014.04.2<\/strong><\/p>\n<p><strong>Apache2 \u00a0 \u00a0 \u00a0 \u00a02.4.7<\/strong><\/p>\n<p><strong>Php \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a07.0.10<\/strong><\/p>\n<p><strong>Mysql \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a05.5.50<\/strong><\/p>\n<p>You can use either Mysql or Mongodb as database server.<\/p>\n<p>My Installation directory is \u00a0<strong>\/var\/www\/akeneo<\/strong><\/p>\n<p><span style=\"text-decoration: underline\"><strong>Install all necessary packages(LAMP and php extensions)<\/strong><\/span><\/p>\n<pre class=\"brush:shell\">sudo su\r\nadd-apt-repository ppa:ondrej\/php\r\napt-get update\r\napt-get install mysql-server\r\napt-get install php7.0\r\n#Install php7 extensions\r\napt-get install php7.0-xml php7.0-zip php7.0-curl  php7.0-intl php7.0-mbstring php7.0-mysql php7.0-gd php7.0-mcrypt\r\napt-get install apache2 libapache2-mod-php7.0 php7.0-cli php7.0-apcu\r\n#If you want to use mongodb instead of mysql\r\napt-get install mongodb php7.0-mongo\r\n<\/pre>\n<p><span style=\"text-decoration: underline\"><strong>Php configuration<\/strong><\/span><\/p>\n<p>Configure timezone and memory limit \u00a0in \u00a0<strong>\/etc\/php\/7.0\/cli\/php.ini<\/strong> <strong>\u00a0<\/strong>and<strong> \u00a0etc\/php\/7.0\/apache\/php.ini<\/strong><\/p>\n<pre class=\"brush:shell\">date.timezone= Asia\/Kolkata # Set your time zone \r\nmemory_limit =768M # Recommended minimum memory<\/pre>\n<p><strong><span style=\"text-decoration: underline\">Database configuration<\/span><\/strong><\/p>\n<pre class=\"brush:shell\">#Login to your mysql root\r\nmysql -u root -p\r\n#create user and database for akeneo. \r\n#please use the username and database given below or the installation will not work.\r\ncreate database akeneo_pim;\r\ncreate user 'akeneo'@'localhost' identified by 'akeneo_pim';\r\ngrant all privileges on akeneo_pim.* to 'akeneo_pim'@'localhost';<\/pre>\n<p class=\"brush:shell\"><span style=\"text-decoration: underline\"><strong>Download and Install akeneo<\/strong><\/span><\/p>\n<pre class=\"brush:shell\">wget http:\/\/download.akeneo.com\/pim-community-standard-v1.6-latest-icecat.tar.gz # with demo data\r\nwget http:\/\/download.akeneo.com\/pim-community-standard-v1.6-latest.tar.gz #for minimal version\r\nmkdir \/var\/www\/akeneo  # akeneo installation directory\r\ntar -xvzf pim-community-standard-v1.6-latest-icecat.tar.gz -C \/var\/www\/akeneo\/\r\ncd \/var\/www\/akeneo\/pim-community-standard\r\nchmod +x \/var\/www\/akeneo\/composer.phar # Make composer.phar executable\r\n..\/composer.phar install --optimize-autoloader --prefer-dist  # optional for community edition\r\nphp app\/console cache:clear --env=dev \r\nphp app\/console pim:install --env=dev\r\nchown -R www-data:www-data \/var\/www\/akeneo<\/pre>\n<p class=\"brush:shell\">Sometime you will get error like this<\/p>\n<p class=\"brush:shell\"><img decoding=\"async\" class=\"alignnone wp-image-59661 size-full\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-error.png\" alt=\"akeneo-error\" width=\"728\" height=\"494\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-error.png 728w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-error-250x170.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-error-300x204.png 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" loading=\"lazy\" \/><\/p>\n<p class=\"brush:shell\">\u00a0In this case you need to make sure the extension is installed and enabled. To enable a gd extension run the command<\/p>\n<pre class=\"brush:shell\">phpenmod gd # To enable an extension run, phpenmod extension_name<\/pre>\n<p>If any other error occurs edit your php.ini file and fix the error.<\/p>\n<p class=\"brush:shell\"><span style=\"text-decoration: underline\"><strong>Virtual Host configuration<\/strong><\/span><\/p>\n<pre class=\"brush:shell\">&lt;VirtualHost *:80&gt;\r\nServerName akeneo.example.com # your website name\r\nDocumentRoot \/var\/www\/akeneo\/pim-community-standard\/web\r\nCustomLog \/var\/log\/apache2\/akeneo_access.log combined\r\nErrorLog  \/var\/log\/apache2\/akeneo_error.log\r\n   &lt;Directory \/var\/www\/akeneo\/pim-community-standard\/web&gt;\r\n        Require all granted\r\n        AllowOverride all\r\n   &lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p class=\"brush:shell\">Rewrite apache module and restart apache service.<\/p>\n<pre class=\"brush:shell\">a2enmod rewrite\r\nservice apache2 restart\r\n<\/pre>\n<p class=\"brush:shell\">Make host entry in \/etc\/hosts<\/p>\n<pre class=\"brush:shell\">127.0.0.1    akeneo.example.com # Your website name<\/pre>\n<p>Open akeneo.example.com(Your website) in the browser. If you see this page than you have successfully installed akeneo.<\/p>\n<p class=\"brush:shell\"><img decoding=\"async\" class=\"alignnone wp-image-59663 size-full\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo.png\" alt=\"akeneo\" width=\"1366\" height=\"768\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo.png 1366w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-250x141.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-300x169.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-768x432.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/akeneo-1200x675.png 1200w\" sizes=\"(max-width: 1366px) 100vw, 1366px\" loading=\"lazy\" \/><\/p>\n<p>Log in using username &#8220;admin&#8221; and password &#8220;admin&#8221; and explore akeneo. If you have any doubts regarding installation, you can ask me in the comment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Akeneo is an open source Product Information Management System(PIM) system designed for retailers to satisfy their multichannel needs. It is a tool for centralize informations of products and catalogs. Akeneo can manage your product inventory pretty well. It can easily extract data from any source like erp, e-commerce websites and marketplaces and manage it in <a href=\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":118,"featured_media":59727,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[3649,1815],"class_list":["post-59659","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-akeneo","tag-product-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to setup akeneo with PHP7 - 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\/setup-akeneo-php7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup akeneo with PHP7 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Akeneo is an open source Product Information Management System(PIM) system designed for retailers to satisfy their multichannel needs. It is a tool for centralize informations of products and catalogs. Akeneo can manage your product inventory pretty well. It can easily extract data from any source like erp, e-commerce websites and marketplaces and manage it in [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\" \/>\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=\"2016-09-20T08:08:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-05-03T05:50:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Suranjan Horrow\" \/>\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=\"Suranjan Horrow\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\"},\"author\":{\"name\":\"Suranjan Horrow\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8719ed7dc6170a075443833a80b14b0e\"},\"headline\":\"How to setup akeneo with PHP7\",\"datePublished\":\"2016-09-20T08:08:28+00:00\",\"dateModified\":\"2018-05-03T05:50:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\"},\"wordCount\":265,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png\",\"keywords\":[\"Akeneo\",\"product management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\",\"url\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\",\"name\":\"How to setup akeneo with PHP7 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png\",\"datePublished\":\"2016-09-20T08:08:28+00:00\",\"dateModified\":\"2018-05-03T05:50:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup akeneo with PHP7\"}]},{\"@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\/8719ed7dc6170a075443833a80b14b0e\",\"name\":\"Suranjan Horrow\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5ef430b248f9509d0d544ac15d0aad0f8b1e70bcf939f6149a14c350b4da30eb?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\/5ef430b248f9509d0d544ac15d0aad0f8b1e70bcf939f6149a14c350b4da30eb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Suranjan Horrow\"},\"sameAs\":[\"http:\/\/webkul.com\/blog\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/suranjan-horrow869\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup akeneo with PHP7 - 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\/setup-akeneo-php7\/","og_locale":"en_US","og_type":"article","og_title":"How to setup akeneo with PHP7 - Webkul Blog","og_description":"Akeneo is an open source Product Information Management System(PIM) system designed for retailers to satisfy their multichannel needs. It is a tool for centralize informations of products and catalogs. Akeneo can manage your product inventory pretty well. It can easily extract data from any source like erp, e-commerce websites and marketplaces and manage it in [...]","og_url":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-09-20T08:08:28+00:00","article_modified_time":"2018-05-03T05:50:08+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png","type":"image\/png"}],"author":"Suranjan Horrow","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Suranjan Horrow","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/"},"author":{"name":"Suranjan Horrow","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8719ed7dc6170a075443833a80b14b0e"},"headline":"How to setup akeneo with PHP7","datePublished":"2016-09-20T08:08:28+00:00","dateModified":"2018-05-03T05:50:08+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/"},"wordCount":265,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png","keywords":["Akeneo","product management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/","url":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/","name":"How to setup akeneo with PHP7 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png","datePublished":"2016-09-20T08:08:28+00:00","dateModified":"2018-05-03T05:50:08+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/setup-akeneo-php7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/09\/How-to-setup-akeneo-with-PHP7.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to setup akeneo with PHP7"}]},{"@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\/8719ed7dc6170a075443833a80b14b0e","name":"Suranjan Horrow","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5ef430b248f9509d0d544ac15d0aad0f8b1e70bcf939f6149a14c350b4da30eb?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\/5ef430b248f9509d0d544ac15d0aad0f8b1e70bcf939f6149a14c350b4da30eb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Suranjan Horrow"},"sameAs":["http:\/\/webkul.com\/blog"],"url":"https:\/\/webkul.com\/blog\/author\/suranjan-horrow869\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59659","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\/118"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=59659"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59659\/revisions"}],"predecessor-version":[{"id":59729,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59659\/revisions\/59729"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/59727"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=59659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=59659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=59659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}