{"id":101413,"date":"2017-11-10T13:21:02","date_gmt":"2017-11-10T13:21:02","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=101413"},"modified":"2021-07-16T11:09:56","modified_gmt":"2021-07-16T11:09:56","slug":"setup-akeneo2-php7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/","title":{"rendered":"How to setup Akeneo V2 with PHP7.1"},"content":{"rendered":"\n<p>We already have an article related to&nbsp;<a href=\"https:\/\/webkul.com\/blog\/setup-akeneo-php7\/\">What is Akeneo and how can we set up with Ubuntu14.04.2 and php7?&nbsp;<\/a><\/p>\n\n\n\n<p>In this article, we are going to setup&nbsp;Akeneo v2.&nbsp;We can install Akeneo using 2 ways, using Docker or using manual installation. Here, we use manual<\/p>\n\n\n\n<p><strong>Ubuntu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;16.04<\/strong><\/p>\n\n\n\n<p><strong>Apache2 &nbsp; &nbsp; &nbsp; &nbsp;\u2265 2.4<\/strong><\/p>\n\n\n\n<p><strong>Php &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7.1<\/strong><\/p>\n\n\n\n<p><strong>Mysql &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5.7<\/strong><\/p>\n\n\n\n<p>My Installation directory is &nbsp;<strong>\/var\/www\/akeneo<\/strong><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><strong>Install all necessary packages(LAMP and php extensions)<\/strong><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">sudo su\n#Mysql\napt install mysql-server\n#PHP\nadd-apt-repository ppa:ondrej\/php\napt update\napt install php7.1-apcu php7.1-bcmath php7.1-cli php7.1-curl php7.1-fpm php7.1-gd php7.1-intl php7.1-mcrypt php7.1-mysql php7.1-soap php7.1-xml php7.1-zip\n#Apache\napt install apache2\na2enmod rewrite proxy_fcgi\nsystemctl restart apache2\n<\/pre>\n\n\n\n<p><span style=\"text-decoration: underline;\"><strong>Install Elastic Search (5.5+)<\/strong><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">apt install apt-transport-https\nwget -O - https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | apt-key add -\necho \"deb https:\/\/artifacts.elastic.co\/packages\/5.x\/apt stable main\" | tee -a \/etc\/apt\/sources.list.d\/elastic-5.x.list\napt update\napt install openjdk-8-jre-headless\napt install elasticsearch\n# You will probably need to increase the MAX_MAP_COUNT Linux kernel setting\nsysctl -w vm.max_map_count=262144\necho \"vm.max_map_count=262144\" | tee \/etc\/sysctl.d\/elasticsearch.conf\nsystemctl restart elasticsearch\n# service elasticsearch restart\n<\/pre>\n\n\n\n<p><span style=\"text-decoration: underline;\"><strong>Notes related to Elastic Search installation<\/strong><\/span><br>1. Elastic should be installed\/ running else tables will not create properly and setup will not work.<br>2. If memory issue is coming then we need to create\/ increase swap memory (in case of low memory).<br>3. If you are facing some kind of issue at time of installation (apt install openjdk-8-jre-headless) then you can try this link to install java http:\/\/tipsonubuntu.com\/2016\/07\/31\/install-oracle-java-8-9-ubuntu-16-04-linux-mint-18\/<\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><strong>Php configuration<\/strong><\/span><br>Configure timezone and memory limit &nbsp;in &nbsp;<strong>\/etc\/php\/7.1\/cli\/php.ini<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">sudo vim \/etc\/php\/7.1\/cli\/php.ini\nmemory_limit = 1024M\ndate.timezone = Etc\/UTC\n<\/pre>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Database configuration<\/span><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">#Login to your mysql root\n#create user and database for akeneo. \n#please use the username and database given below or the installation will not work.\nmysql -u root -p\nmysql&gt; CREATE DATABASE akeneo_pim;\nmysql&gt; GRANT ALL PRIVILEGES ON akeneo_pim.* TO akeneo_pim@localhost IDENTIFIED BY 'akeneo_pim';\nmysql&gt; EXIT\n<\/pre>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Install Node<\/span><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">curl -sL https:\/\/deb.nodesource.com\/setup_8.x | bash -\napt-get install -y nodejs\n<\/pre>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Install Yarn<\/span><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">curl -sS https:\/\/dl.yarnpkg.com\/debian\/pubkey.gpg | apt-key add -\necho \"deb https:\/\/dl.yarnpkg.com\/debian\/ stable main\" | tee \/etc\/apt\/sources.list.d\/yarn.list\napt-get update &amp;&amp; apt-get install yarn\n<\/pre>\n\n\n\n<p>Now our system is ready to setup Akeneo.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Install Akeneo Community Edition<\/span><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">wget https:\/\/download.akeneo.com\/pim-community-standard-v2.0-latest-icecat.tar.gz #for icecat version\n# Define your installation path here, I already have \/var\/www\/akeneo\n# mkdir -p \/path\/to\/installation\n# tar -xvzf pim-community-standard-v2.0-latest-icecat.tar.gz -C \/path\/to\/installation\/\n# The PIM will be extracted in the folder \/path\/to\/installation\/pim-community-standard\ntar -xvzf pim-community-standard-v2.0-latest-icecat.tar.gz -C \/var\/www\/akeneo\ncd \/var\/www\/akeneo\/pim-community-standard\nphp -d memory_limit=3G ..\/composer.phar install --optimize-autoloader --prefer-dist\nyarn install\nphp bin\/console cache:clear --no-warmup --env=prod\nphp bin\/console pim:installer:assets --symlink --clean --env=prod\nbin\/console pim:install --force --symlink --clean --env=prod\nyarn run webpack\n<\/pre>\n\n\n\n<p class=\"brush:shell\"><span style=\"text-decoration: underline;\"><strong>Virtual Host configuration<\/strong><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">&lt;VirtualHost *:80&gt;\nServerName pim.pim # your website name\nDocumentRoot \/var\/www\/akeneo\/pim-community-standard\/web\nCustomLog \/var\/log\/apache2\/akeneo_access.log combined\nErrorLog  \/var\/log\/apache2\/akeneo_error.log\n   &lt;Directory \/var\/www\/akeneo\/pim-community-standard\/web&gt;\n        Require all granted\n        AllowOverride all\n   &lt;\/Directory&gt;\n&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p class=\"brush:shell\">Rewrite apache module and restart apache service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">a2enmod rewrite\nservice apache2 restart\n<\/pre>\n\n\n\n<p class=\"brush:shell\">Make host entry in \/etc\/hosts<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:shell\">127.0.0.1    pim.pim # Your website name<\/pre>\n\n\n\n<p>Open pim.pim (Your website) in the browser. If you see this page then you have successfully installed Akeneo.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png\" alt=\"\" class=\"wp-image-101463\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-250x141.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-300x169.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-768x432.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12.png 1920w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\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\n\n\n<p><strong>Resources:&nbsp;<\/strong>All documents are available at <a href=\"https:\/\/docs.akeneo.com\/latest\/install_pim\/manual\/index.html\">Akeneo doc site<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We already have an article related to&nbsp;What is Akeneo and how can we set up with Ubuntu14.04.2 and php7?&nbsp; In this article, we are going to setup&nbsp;Akeneo v2.&nbsp;We can install Akeneo using 2 ways, using Docker or using manual installation. Here, we use manual Ubuntu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;16.04 Apache2 &nbsp; &nbsp; &nbsp; &nbsp;\u2265 <a href=\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5709,723,2707,2708,10],"tags":[3649,2717],"class_list":["post-101413","post","type-post","status-publish","format-standard","hentry","category-akeneo","category-orocrm","category-symfony","category-symfony2","category-ubuntu","tag-akeneo","tag-installation"],"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 V2 with PHP7.1 - 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-akeneo2-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 V2 with PHP7.1 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"We already have an article related to&nbsp;What is Akeneo and how can we set up with Ubuntu14.04.2 and php7?&nbsp; In this article, we are going to setup&nbsp;Akeneo v2.&nbsp;We can install Akeneo using 2 ways, using Docker or using manual installation. Here, we use manual Ubuntu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;16.04 Apache2 &nbsp; &nbsp; &nbsp; &nbsp;\u2265 [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/setup-akeneo2-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=\"2017-11-10T13:21:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T11:09:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png\" \/>\n<meta name=\"author\" content=\"Nikhil Malik\" \/>\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=\"Nikhil Malik\" \/>\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-akeneo2-php7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\"},\"author\":{\"name\":\"Nikhil Malik\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9a90e1b1a80142fc7445195c9ca8c8a4\"},\"headline\":\"How to setup Akeneo V2 with PHP7.1\",\"datePublished\":\"2017-11-10T13:21:02+00:00\",\"dateModified\":\"2021-07-16T11:09:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\"},\"wordCount\":279,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png\",\"keywords\":[\"Akeneo\",\"installation\"],\"articleSection\":[\"Akeneo\",\"orocrm\",\"Symfony\",\"Symfony2\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\",\"url\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\",\"name\":\"How to setup Akeneo V2 with PHP7.1 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png\",\"datePublished\":\"2017-11-10T13:21:02+00:00\",\"dateModified\":\"2021-07-16T11:09:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup Akeneo V2 with PHP7.1\"}]},{\"@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\/9a90e1b1a80142fc7445195c9ca8c8a4\",\"name\":\"Nikhil Malik\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/335b26b1a56ac61c8dcf3b6fa4c8c3d1e68ed57cd9db7e6f5dfa97cc506cf0d5?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\/335b26b1a56ac61c8dcf3b6fa4c8c3d1e68ed57cd9db7e6f5dfa97cc506cf0d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Nikhil Malik\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/nikhil\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup Akeneo V2 with PHP7.1 - 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-akeneo2-php7\/","og_locale":"en_US","og_type":"article","og_title":"How to setup Akeneo V2 with PHP7.1 - Webkul Blog","og_description":"We already have an article related to&nbsp;What is Akeneo and how can we set up with Ubuntu14.04.2 and php7?&nbsp; In this article, we are going to setup&nbsp;Akeneo v2.&nbsp;We can install Akeneo using 2 ways, using Docker or using manual installation. Here, we use manual Ubuntu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;16.04 Apache2 &nbsp; &nbsp; &nbsp; &nbsp;\u2265 [...]","og_url":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-11-10T13:21:02+00:00","article_modified_time":"2021-07-16T11:09:56+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png","type":"","width":"","height":""}],"author":"Nikhil Malik","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Nikhil Malik","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/"},"author":{"name":"Nikhil Malik","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9a90e1b1a80142fc7445195c9ca8c8a4"},"headline":"How to setup Akeneo V2 with PHP7.1","datePublished":"2017-11-10T13:21:02+00:00","dateModified":"2021-07-16T11:09:56+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/"},"wordCount":279,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png","keywords":["Akeneo","installation"],"articleSection":["Akeneo","orocrm","Symfony","Symfony2","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/","url":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/","name":"How to setup Akeneo V2 with PHP7.1 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12-1200x675.png","datePublished":"2017-11-10T13:21:02+00:00","dateModified":"2021-07-16T11:09:56+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/11\/Screenshot-from-2017-11-10-16-56-12.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/setup-akeneo2-php7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to setup Akeneo V2 with PHP7.1"}]},{"@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\/9a90e1b1a80142fc7445195c9ca8c8a4","name":"Nikhil Malik","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/335b26b1a56ac61c8dcf3b6fa4c8c3d1e68ed57cd9db7e6f5dfa97cc506cf0d5?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\/335b26b1a56ac61c8dcf3b6fa4c8c3d1e68ed57cd9db7e6f5dfa97cc506cf0d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Nikhil Malik"},"url":"https:\/\/webkul.com\/blog\/author\/nikhil\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/101413","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=101413"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/101413\/revisions"}],"predecessor-version":[{"id":296429,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/101413\/revisions\/296429"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=101413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=101413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=101413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}