{"id":15118,"date":"2025-06-20T15:56:02","date_gmt":"2025-06-20T10:26:02","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15118"},"modified":"2025-06-20T18:07:23","modified_gmt":"2025-06-20T12:37:23","slug":"how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/","title":{"rendered":"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p>When running PHP-FPM on a cPanel server, especially after system updates or migrations, you may encounter PHP-FPM Startup Error Due to Missing libargon2.so.0 or similar errors like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/opt\/cpanel\/ea-phpXX\/root\/usr\/sbin\/php-fpm: error while loading shared libraries: libargon2.so.0: cannot open shared object file: No such file or directory<\/code><\/pre>\n\n\n\n<p>This PHP-FPM Startup Error Due to Missing libargon2.so.0 typically occurs because PHP-FPM relies on certain system libraries to function correctly. If one of these shared libraries is not present or not properly configured, PHP-FPM fails to start. In this case, libargon2.so.0 is missing or <a href=\"https:\/\/www.php.net\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">PHP<\/mark><\/a> can\u2019t find it. This guide walks you through resolving this issue for all installed PHP versions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">What is libargon2?<\/h3>\n\n\n\n<p>libargon2 is a password hashing library used by PHP (especially with password functions like password_hash() using ARGON2I or ARGON2ID).<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Step-by-Step Fix<\/h2>\n\n\n\n<p>1. Install libargon2<\/p>\n\n\n\n<p>If you&#8217;re using AlmaLinux 9, RHEL 9, or CentOS Stream, install the missing library with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dnf install libargon2<\/code><\/pre>\n\n\n\n<p>On older systems (CentOS 7 \/ AlmaLinux 8), use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>yum install libargon2<\/code><\/pre>\n\n\n\n<p>For Ubuntu\/Debian:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install libargon2-1<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">What If the Library Is Installed But Still Errors?<\/h2>\n\n\n\n<p>Sometimes, PHP-FPM expects libargon2.so.0 but only libargon2.so.1 is present. You can resolve this by creating a symbolic link:<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-locate-the-installed-library\">Step 1: Locate the Installed Library<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/usr -name \"libargon2.so*\"\n\nExample output:\n\/usr\/lib64\/libargon2.so.1             # RHEL-based\n\/usr\/lib\/x86_64-linux-gnu\/libargon2.so.1   # Debian-based<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-create-a-symlink\">Step 2: Create a Symlink<\/h3>\n\n\n\n<p>RHEL\/CentOS:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ln -s \/usr\/lib64\/libargon2.so.1 \/usr\/lib64\/libargon2.so.0<\/code><\/pre>\n\n\n\n<p>Ubuntu\/Debian:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ln -s \/usr\/lib\/x86_64-linux-gnu\/libargon2.so.1 \/usr\/lib\/x86_64-linux-gnu\/libargon2.so.0<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-refresh-the-linker-cache\">Step 3: Refresh the Linker Cache<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>ldconfig<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-4-restart-php-fpm-any-version\">Step 4: Restart PHP-FPM (any version)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart ea-php74-php-fpm     # For cPanel (ea-php)\nsystemctl restart php7.4-fpm           # For Ubuntu\/Debian-style PHP<\/code><\/pre>\n\n\n\n<p>Use the following command to check which PHP versions are installed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls \/opt\/cpanel\/ | grep ea-php<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h3>\n\n\n\n<p>Missing shared libraries are a common cause of PHP-FPM startup errors. The solution is usually straightforward: install the missing package, create a symlink if necessary, and restart PHP-FPM. This general approach applies to other libraries as well \u2014 not just libargon2.&nbsp;<\/p>\n\n\n\n<p>Note: Always ensure you restart the correct PHP-FPM version after the fix.<\/p>\n\n\n\n<p>If you&#8217;re facing challenges resolving the PHP-FPM Startup Error Due to Missing libargon2.so.0 or other similar shared library issues, our expert support team is here to help. At Skynats, we specialize in advanced <a href=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a> and troubleshooting, ensuring minimal downtime and secure environments. Contact us today to quickly fix PHP-FPM startup errors and restore your server functionality with confidence.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction When running PHP-FPM on a cPanel server, especially after system updates or migrations, you may encounter PHP-FPM Startup Error Due to Missing libargon2.so.0 or similar errors like: This PHP-FPM Startup Error Due to Missing libargon2.so.0 typically occurs because PHP-FPM relies on certain system libraries to function correctly. If one of these shared libraries is [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1055,871,302],"class_list":["post-15118","post","type-post","status-publish","format-standard","hentry","category-blog","tag-libargon2-so-0","tag-php-fpm-2","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>PHP-FPM Startup Error Due to Missing libargon2.so.0 Fix Guide<\/title>\n<meta name=\"description\" content=\"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!\" \/>\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-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)\" \/>\n<meta property=\"og:description\" content=\"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/\" \/>\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=\"2025-06-20T10:26:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-20T12:37:23+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\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=\"Sourav AJ\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)\",\"datePublished\":\"2025-06-20T10:26:02+00:00\",\"dateModified\":\"2025-06-20T12:37:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/\"},\"wordCount\":339,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"libargon2.so.0\",\"PHP-FPM\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/\",\"name\":\"PHP-FPM Startup Error Due to Missing libargon2.so.0 Fix Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-06-20T10:26:02+00:00\",\"dateModified\":\"2025-06-20T12:37:23+00:00\",\"description\":\"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)\"}]},{\"@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\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP-FPM Startup Error Due to Missing libargon2.so.0 Fix Guide","description":"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!","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-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)","og_description":"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-06-20T10:26:02+00:00","article_modified_time":"2025-06-20T12:37:23+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)","datePublished":"2025-06-20T10:26:02+00:00","dateModified":"2025-06-20T12:37:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/"},"wordCount":339,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["libargon2.so.0","PHP-FPM","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/","url":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/","name":"PHP-FPM Startup Error Due to Missing libargon2.so.0 Fix Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-06-20T10:26:02+00:00","dateModified":"2025-06-20T12:37:23+00:00","description":"Fix the PHP-FPM Startup Error Due to Missing libargon2.so.0 with our expert guide. Get support now to restore your server quickly!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-php-fpm-startup-error-due-to-missing-libargon2-so-0-or-other-shared-libraries\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix PHP-FPM Startup Error Due to Missing libargon2.so.0 (or Other Shared Libraries)"}]},{"@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\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15118","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\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15118"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15118\/revisions"}],"predecessor-version":[{"id":15122,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15118\/revisions\/15122"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15118"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15118"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15118"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}