{"id":17424,"date":"2026-03-09T17:05:44","date_gmt":"2026-03-09T11:35:44","guid":{"rendered":"https:\/\/www.skynats.com\/blog\/?p=17424"},"modified":"2026-03-09T17:05:47","modified_gmt":"2026-03-09T11:35:47","slug":"how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/","title":{"rendered":"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>The mcrypt extension was once a popular <a href=\"https:\/\/www.php.net\/\" type=\"link\" id=\"https:\/\/www.php.net\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">PHP<\/mark><\/a> library used for encryption and decryption. However, starting with PHP 7.2 and above, it was removed from the core PHP distribution and deprecated due to security concerns. Because of this, it is no longer installed by default in cPanel servers via EasyApache. But if you still need it for legacy applications, it\u2019s possible to install it manually using PECL and enable it with a few extra steps to Enable mcrypt Extension in PHP 7.2 cPanel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before you begin, make sure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have <strong>root SSH access<\/strong> to your server.<br><\/li>\n\n\n\n<li>You know your target PHP version (e.g., PHP 7.2, 7.4, 8.0).<br><\/li>\n\n\n\n<li>Your server uses <strong>php-fpm<\/strong> and you can restart it.<\/li>\n<\/ul>\n\n\n\n<p>Your system uses one of the supported Linux distributions (CentOS, AlmaLinux, CloudLinux, Ubuntu, etc.).<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Steps<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>1. Install Required Libraries<\/strong><\/h3>\n\n\n\n<p>First install the <strong>libmcrypt<\/strong> library and development packages required to compile the extension:<\/p>\n\n\n\n<p>For <strong>RedHat-based systems<\/strong> (AlmaLinux, CentOS, CloudLinux):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>yum install libmcrypt libmcrypt-devel epel-release<\/code><\/pre>\n\n\n\n<p>For <strong>Ubuntu<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install libmcrypt libmcrypt-dev<\/code><\/pre>\n\n\n\n<p>These libraries provide the core mcrypt functions and headers needed to build the extension.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>2. Install mcrypt via PECL<\/strong><\/h3>\n\n\n\n<p>PECL is a repository of PHP extensions. Use the PECL tool included with your chosen PHP version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/opt\/cpanel\/ea-php##\/root\/usr\/bin\/pecl install mcrypt<\/code><\/pre>\n\n\n\n<p>Replace ## with your actual PHP version number, e.g., ea-php72 for PHP 7.2.<\/p>\n\n\n\n<p>During installation, PECL may ask for a \u201clibmcrypt prefix\u201d.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Edit the <\/strong><strong>pecl.ini<\/strong><strong> File<\/strong><\/h3>\n\n\n\n<p>After installation, you need to tell PHP to load the extension.For that:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"extension=mcrypt.so\" > \/opt\/cpanel\/ea-php##\/root\/etc\/php.d\/zzzzzzz-pecl.ini<\/code><\/pre>\n\n\n\n<p>Here, zzzzzzz-pecl.ini is just a descriptive filename \u2014 it helps you identify the custom ini file later if needed. This line tells PHP to load mcrypt.so when PHP starts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Restart PHP-FPM<\/strong><\/h3>\n\n\n\n<p>For the changes to take effect, you must restart PHP-FPM:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart ea-php##-php-fpm<\/code><\/pre>\n\n\n\n<p>Again, replace ## with your PHP version (e.g., 72, 74). This ensures that PHP reloads all extensions, including the newly installed mcrypt. Restarting php_fpm is crucial \u2014 without it the extension won\u2019t be recognized.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Installing the mcrypt extension on PHP 7.2 and above with cPanel is possible, but it\u2019s no longer supported directly by cPanel or EasyApache. To Enable mcrypt Extension in PHP 7.2 cPanel, you must manually install the required libraries, use PECL to install the mcrypt module, create a custom configuration file (such as <code>zzzzzzz-pecl.ini<\/code>) to load the extension, and then restart php-fpm so the changes take effect.<\/p>\n\n\n\n<p>Although this approach allows legacy applications to continue functioning, it requires proper server configuration and careful handling of dependencies. Tasks like these are often handled through professional <a href=\"https:\/\/www.skynats.com\/server-management\/\" type=\"link\" id=\"https:\/\/www.skynats.com\/server-management\/\">Server Management Services<\/a> that specialize in maintaining and optimizing hosting environments. With expert <a href=\"https:\/\/www.skynats.com\/cpanel-server-management-services\" type=\"link\" id=\"https:\/\/www.skynats.com\/cpanel-server-management-services\">cPanel Server Management<\/a>, administrators can safely configure PHP modules, manage extensions, and ensure that the server runs smoothly without affecting other services.<\/p>\n\n\n\n<p>However, it\u2019s important to remember that mcrypt has been deprecated due to security concerns. While enabling it can help support older applications, modern software should move toward more secure encryption libraries such as OpenSSL or libsodium to ensure better security and long-term compatibility.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The mcrypt extension was once a popular PHP library used for encryption and decryption. However, starting with PHP 7.2 and above, it was removed from the core PHP distribution and deprecated due to security concerns. Because of this, it is no longer installed by default in cPanel servers via EasyApache. But if you still [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[18,1225,1257,1256,302],"class_list":["post-17424","post","type-post","status-publish","format-standard","hentry","category-blog","tag-cpanel","tag-mcrypt-extension","tag-openssl","tag-php-7-2","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Enable mcrypt Extension in PHP 7.2 cPanel: Easy Guide<\/title>\n<meta name=\"description\" content=\"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)\" \/>\n<meta property=\"og:description\" content=\"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-09T11:35:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-09T11:35:47+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Merin John\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)\",\"datePublished\":\"2026-03-09T11:35:44+00:00\",\"dateModified\":\"2026-03-09T11:35:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/\"},\"wordCount\":485,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"cpanel\",\"mcrypt extension\",\"OpenSSL\",\"PHP 7.2\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/\",\"name\":\"Enable mcrypt Extension in PHP 7.2 cPanel: Easy Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-03-09T11:35:44+00:00\",\"dateModified\":\"2026-03-09T11:35:47+00:00\",\"description\":\"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Enable mcrypt Extension in PHP 7.2 cPanel: Easy Guide","description":"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!","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:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)","og_description":"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2026-03-09T11:35:44+00:00","article_modified_time":"2026-03-09T11:35:47+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)","datePublished":"2026-03-09T11:35:44+00:00","dateModified":"2026-03-09T11:35:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/"},"wordCount":485,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["cpanel","mcrypt extension","OpenSSL","PHP 7.2","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/","url":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/","name":"Enable mcrypt Extension in PHP 7.2 cPanel: Easy Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2026-03-09T11:35:44+00:00","dateModified":"2026-03-09T11:35:47+00:00","description":"Enable mcrypt Extension in PHP 7.2 cPanel easily. Learn the step-by-step process and fix compatibility issues today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-enable-the-mcrypt-extension-in-php-7-2-and-above-cpanel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable the mcrypt Extension in PHP 7.2 and Above (cPanel)"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17424","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=17424"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17424\/revisions"}],"predecessor-version":[{"id":17425,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17424\/revisions\/17425"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17424"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17424"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17424"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}