{"id":1137,"date":"2016-08-20T16:29:46","date_gmt":"2016-08-20T16:29:46","guid":{"rendered":"http:\/\/cloudkul.com\/blog\/?p=1137"},"modified":"2017-06-14T11:33:56","modified_gmt":"2017-06-14T11:33:56","slug":"orocrm-with-php7-using-composer","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/","title":{"rendered":"Installation of OroCRM with PHP7 using Composer tool"},"content":{"rendered":"<p style=\"text-align: justify\">OroCRM is an open source customer relationship management system used for managing a company&#8217;s interaction with current and future customers. It will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, It has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.<\/p>\n<p>With the few easy steps you can install OroCRM on your system and enjoy the facilities provided by it.<\/p>\n<p>*OS: UBUNTU 14.04 LTS*<\/p>\n<p><strong>INSTALL APACHE SERVER AND MYSQL-SERVER:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">sudo su\r\n\r\napt-get update\r\n\r\napt-get install apache2\r\n\r\napt-get install mysql-server\r\n\r\nmysql -V\r\n\r\napache2 -v\r\n\r\napt-get install nodejs<\/pre>\n<p>OroCRM requires PHP 5.5.9 and above.<\/p>\n<p><strong>INSTALL PHP 7:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">sudo add-apt-repository ppa:ondrej\/php\r\n\r\nsudo apt-get update\r\n\r\nsudo apt-get install python-software-properties\r\n\r\nsudo apt-get update\r\n\r\nsudo apt-get install php7.0\r\n\r\nphp7.0 -v<\/pre>\n<p>Also ensure that following PHP extensions are installed.<\/p>\n<pre class=\"lang:default decode:true\">ctype, fileinfo, GD 2.0 and above, intl, JSON, Mcrypt, PCRE 8.0 and above, SimpleXML, Tokenizer, curl, mbstring, soap, xsl<\/pre>\n<p>And ensure the following PHP settings<\/p>\n<ul>\n<li>date.timezone must be set.<\/li>\n<li>memory_limit should be at least 512M.<\/li>\n<li>xdebug.scream must be disabled in php.ini.<\/li>\n<li>xdebug.show_exception_trace must be disabled in php.ini.<\/li>\n<li>Node.js (for JS minification).<\/li>\n<li>PHP-XML module installed.<\/li>\n<li>Uncomment extension=pdo.so, extension=pdo_mysql.so, extension=pdo_mysqli.so {Only if installer shows PDO drivers unavailable}<\/li>\n<\/ul>\n<h3><\/h3>\n<p><strong>CREATING A DATABASE:<\/strong><\/p>\n<pre class=\"lang:default decode:true\"> mysql -u root -p\r\n\r\n&gt; CREATE DATABASE oro_crm;\r\n\r\n&gt; GRANT ALL PRIVILEGES ON oro_crm.* TO 'oro_crm'@'localhost' IDENTIFIED BY 'oro_crm';\r\n\r\n&gt;FLUSH PRIVILEGES;\r\n\r\n&gt; quit<\/pre>\n<p><strong>DOWNLOAD COMPOSER:<\/strong><\/p>\n<pre class=\"installer\">php -r \"copy('https:\/\/getcomposer.org\/installer', 'composer-setup.php');\"\r\n\r\nphp -r \"if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;\"\r\n\r\nphp composer-setup.php\r\n\r\nphp -r \"unlink('composer-setup.php');\"<\/pre>\n<p>Make sure that <code>\/usr\/local\/bin<\/code> is in your <code>$PATH<\/code><\/p>\n<pre class=\"lang:default decode:true\">echo $PATH\r\n\r\nmv composer.phar \/usr\/local\/bin\/composer<\/pre>\n<p><strong>CLONE THE GITHUB REPOSITORY:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">cd \/var\/www\/html\r\n\r\ngit clone -b 1.9.0 https:\/\/github.com\/orocrm\/crm-application.git orocrm<\/pre>\n<p>Here we are using composer tool to install orocrm.<\/p>\n<p><strong>INSTALL BY COMPOSER:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">apt-get install unzip\r\n\r\ncd orocrm\r\n\r\ncomposer install --prefer-dist --no-dev<\/pre>\n<p>Now if all the required php extensions are not installed, you will receive errors. Check for the missing php extensions and install them. If everything goes right, then at the end of the <code class=\"docutils literal\"><span class=\"pre\">composer<\/span> <span class=\"pre\">install<\/span><\/code> command, you will be asked to enter some configuration parameters in the console. The parameters are required to bootstrap the application.<\/p>\n<pre class=\"\">Creating the \"app\/config\/parameters.yml\" file\r\nSome parameters are missing. Please provide them.\r\ndatabase_driver (pdo_mysql):\r\ndatabase_host (127.0.0.1): \r\ndatabase_port (null):\r\ndatabase_name (oro_crm):\r\ndatabase_user (oro_crm):\r\ndatabase_password (null):\r\nmailer_transport (smtp):\r\nmailer_host (127.0.0.1):\r\nmailer_port (null):\r\nmailer_encryption (null):\r\nmailer_user (null):\r\nmailer_password (null):\r\nwebsocket_bind_address (0.0.0.0):\r\nwebsocket_bind_port (8080):\r\nwebsocket_frontend_host ('*'):\r\nwebsocket_frontend_port (8080):\r\nwebsocket_backend_host ('*'):\r\nwebsocket_backend_port (8080):\r\nsession_handler (session.handler.native_file):\r\nlocale (en):\r\nsecret (ThisTokenIsNotSoSecretChangeIt):\r\ninstalled (null):\r\nassets_version (null):\r\nassets_version_strategy: time_hash<\/pre>\n<p>Enter your database credentials or you can change the parameters in the \u201capp\/config\/parameters.yml\u201d file.<\/p>\n<p><strong>CREATING THE VIRTUAL HOST:<\/strong><code> <\/code><\/p>\n<pre class=\"lang:default decode:true\">nano \/etc\/apache2\/sites-available\/orocrm.conf<\/pre>\n<pre class=\"lang:default decode:true\">&lt;VirtualHost *:80&gt;\r\n    \r\n    ServerName orocrm.example.com\r\n\r\n    DirectoryIndex app.php\r\n    \r\n    DocumentRoot \/var\/www\/html\/orocrm\/web\r\n    &lt;Directory  \/var\/www\/html\/orocrm\/web&gt;\r\n    \r\n        # enable the .htaccess rewrites\r\n        AllowOverride All\r\n        Order allow,deny\r\n        Allow from All\r\n    \r\n    &lt;\/Directory&gt;\r\n\r\n    ErrorLog \/var\/log\/apache2\/orocrm_error.log\r\n    CustomLog \/var\/log\/apache2\/orocrm_access.log combined\r\n\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p><strong>GRANT OWNERSHIP AND PERMISSIONS:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">chown -R www-data:www-data \/var\/www\/html\/\r\n\r\nfind \/var\/www\/html\/ -type f -exec chmod 644 {} \\;\r\n\r\nfind \/var\/www\/html\/ -type d -exec chmod 755 {} \\;<\/pre>\n<p>Now enable this configuration.<\/p>\n<pre class=\"lang:default decode:true \"> a2ensite orocrm.conf<\/pre>\n<p>To enable URL rewrite<\/p>\n<pre class=\"lang:default decode:true\">a2enmod rewrite<\/pre>\n<p><code><\/code>For multiple PHP versions,<\/p>\n<pre class=\"lang:default decode:true \">nano \/etc\/apache2\/apache2.conf\r\n\r\nSetEnv ORO_PHP_PATH \/usr\/bin\/php7.0<\/pre>\n<p>Ensuring OroCRM compatibility with php-7.0,<\/p>\n<pre class=\"lang:default decode:true\">cd \/var\/www\/html\/orocrm\/vendor\/oro\/platform\/\r\n\r\nfind . -type f -exec   sed -i 's\/Condition\\\\False()\/Condition\\\\FalseCompatible()\/g' {} +\r\nfind . -type f -exec   sed -i 's\/Condition\\\\True()\/Condition\\\\TrueCompatible()\/g' {} +\r\nfind . -type f -exec   sed -i 's\/Condition\\\\False$\/Condition\\\\FalseCompatible\/g' {} +\r\nfind . -type f -exec   sed -i 's\/Condition\\\\True$\/Condition\\\\TrueCompatible\/g' {} +\r\nmv src\/Oro\/Component\/ConfigExpression\/Condition\/True.php src\/Oro\/Component\/ConfigExpression\/Condition\/TrueCompatible.php\r\nmv src\/Oro\/Component\/ConfigExpression\/Condition\/False.php src\/Oro\/Component\/ConfigExpression\/Condition\/FalseCompatible.php\r\nsed -i 's\/class True\/class TrueCompatible\/g' src\/Oro\/Component\/ConfigExpression\/Condition\/TrueCompatible.php\r\nsed -i 's\/class False\/class FalseCompatible\/g' src\/Oro\/Component\/ConfigExpression\/Condition\/FalseCompatible.php<\/pre>\n<p>Add orocrm.example.com to your hosts,<\/p>\n<pre class=\"lang:default decode:true\">127.0.0.1 orocrm.example.com<\/pre>\n<p><strong>RESTART APACHE AND MYSQL SERVER:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">service apache2 restart\r\n\r\nservice mysql restart<\/pre>\n<p>Hit the URL \u201chttp:\/\/orocrm.example.com\/install.php&#8221;<\/p>\n<ul>\n<li>Now click on <span class=\"guilabel\">Begin installation.<\/span><\/li>\n<li>The installation wizard will check the system configuration.<\/li>\n<li>Enter your database credentials and setup database connection.<\/li>\n<li>Database gets initialized.<\/li>\n<li>Enter the credentials in Administrative Setup and click on install button.<\/li>\n<li>Now finish the process.<\/li>\n<li>Click on Launch application button.<\/li>\n<\/ul>\n<p>Now you are all set to explore the world of OroCRM. Enter your login credentials and facilitate yourself with the interactive services provided by it.<\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center\"><a href=\"http:\/\/cloudkul.com\/contact\/\" target=\"_blank\" rel=\"noopener noreferrer\">\u00a0IN CASE OF ANY QUERY,CONTACT US<\/a><\/p>\n<hr \/>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>OroCRM is an open source customer relationship management system used for managing a company&#8217;s interaction <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":7,"featured_media":1197,"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":[1],"tags":[74,80,72,81,75,73,79],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installation of OroCRM with PHP7 using Composer tool - Cloudkul<\/title>\n<meta name=\"description\" content=\"OroCRM is an open source customer relationship management system used for managing a company&#039;s interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.\" \/>\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\/orocrm-with-php7-using-composer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installation of OroCRM with PHP7 using Composer tool - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"OroCRM is an open source customer relationship management system used for managing a company&#039;s interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2016-08-20T16:29:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-06-14T11:33:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2016\/08\/ORO-CRM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"848\" \/>\n\t<meta property=\"og:image:height\" content=\"422\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alankrit Srivastava\" \/>\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\/orocrm-with-php7-using-composer\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/\",\"name\":\"Installation of OroCRM with PHP7 using Composer tool - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2016-08-20T16:29:46+00:00\",\"dateModified\":\"2017-06-14T11:33:56+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/fc06bfd7f18d9a606dd94062d205af16\"},\"description\":\"OroCRM is an open source customer relationship management system used for managing a company's interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installation of OroCRM with PHP7 using Composer tool\"}]},{\"@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\/fc06bfd7f18d9a606dd94062d205af16\",\"name\":\"Alankrit Srivastava\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/955c3dda2678272c436c5153832e401f?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/955c3dda2678272c436c5153832e401f?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"Alankrit Srivastava\"},\"description\":\"DevOps Manager at Webkul Software Privated Limited\",\"sameAs\":[\"http:\/\/cloudkul.com\"],\"url\":\"https:\/\/cloudkul.com\/blog\/author\/alankrit-srivastava256\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installation of OroCRM with PHP7 using Composer tool - Cloudkul","description":"OroCRM is an open source customer relationship management system used for managing a company's interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.","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\/orocrm-with-php7-using-composer\/","og_locale":"en_US","og_type":"article","og_title":"Installation of OroCRM with PHP7 using Composer tool - Cloudkul","og_description":"OroCRM is an open source customer relationship management system used for managing a company's interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.","og_url":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/","og_site_name":"Cloudkul","article_published_time":"2016-08-20T16:29:46+00:00","article_modified_time":"2017-06-14T11:33:56+00:00","og_image":[{"width":848,"height":422,"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2016\/08\/ORO-CRM.png","type":"image\/png"}],"author":"Alankrit Srivastava","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/","url":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/","name":"Installation of OroCRM with PHP7 using Composer tool - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2016-08-20T16:29:46+00:00","dateModified":"2017-06-14T11:33:56+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/fc06bfd7f18d9a606dd94062d205af16"},"description":"OroCRM is an open source customer relationship management system used for managing a company's interaction with current and future customers. OroCRM will capture everything you need to know about each customer in a complete 360\u00b0 view. With OroCRM you\u2019re able to get information from 5 years ago and create reports that will show you who your top customers were of your store at that time. Shopping cart abandonment is a huge concern, OroCRM has a feature that allows you to have access to the items and the customers who have discarded them. Also, giving you the tools that you need to correct the situation.","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/orocrm-with-php7-using-composer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installation of OroCRM with PHP7 using Composer tool"}]},{"@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\/fc06bfd7f18d9a606dd94062d205af16","name":"Alankrit Srivastava","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/955c3dda2678272c436c5153832e401f?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/955c3dda2678272c436c5153832e401f?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"Alankrit Srivastava"},"description":"DevOps Manager at Webkul Software Privated Limited","sameAs":["http:\/\/cloudkul.com"],"url":"https:\/\/cloudkul.com\/blog\/author\/alankrit-srivastava256\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/1137"}],"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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1137"}],"version-history":[{"count":30,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/1137\/revisions"}],"predecessor-version":[{"id":2881,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/1137\/revisions\/2881"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media\/1197"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}