{"id":21309,"date":"2013-03-04T20:01:04","date_gmt":"2013-03-04T20:01:04","guid":{"rendered":"http:\/\/wiki.iserversupport.com\/?p=76"},"modified":"2025-11-13T20:31:17","modified_gmt":"2025-11-13T20:31:17","slug":"got-a-packet-bigger-than-max_allowed_packet-bytes","status":"publish","type":"post","link":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/","title":{"rendered":"MySQL Error 1153 &#8211; Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes"},"content":{"rendered":"<p class=\"p4\">MySQL throws the error <span class=\"s3\"><b>\u201cGot a packet bigger than \u2018max_allowed_packet\u2019 bytes\u201d<\/b><\/span> when the server receives a query larger than the configured packet size.<\/p>\n<p class=\"p4\">This usually happens during:<\/p>\n<ul>\n<li>\n<p class=\"p1\">Large INSERT or UPDATE queries<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Importing big SQL dumps<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Handling large BLOB\/TEXT fields<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Running WordPress\/WooCommerce sites with large metadata<\/p>\n<\/li>\n<li>\n<p class=\"p1\">API-heavy applications with oversized payloads<\/p>\n<\/li>\n<\/ul>\n<p class=\"p4\">This error stops the query completely and often breaks backups, migrations, or application functionality.<\/p>\n<p class=\"p4\">If you want MySQL experts to handle this safely in production, explore our <a href=\"https:\/\/iserversupport.com\/linux-server-management\/\"><span class=\"s4\"><b>Linux Server Management<\/b><\/span><\/a>\u00a0or <a href=\"https:\/\/iserversupport.com\/server-optimization-service\/\"><span class=\"s4\"><b>Server Optimization Service<\/b><\/span><\/a>.<\/p>\n<hr \/>\n<h1><b>1. Why This Error Happens<\/b><\/h1>\n<p class=\"p4\">MySQL limits the maximum size of a single packet it can process.<\/p>\n<p class=\"p4\">Default values:<\/p>\n<ul>\n<li>\n<p class=\"p1\">MySQL: <span class=\"s1\"><b>4MB<\/b><\/span><\/p>\n<\/li>\n<li>\n<p class=\"p1\">MariaDB: <span class=\"s1\"><b>16MB<\/b><\/span><\/p>\n<\/li>\n<\/ul>\n<p class=\"p4\">If your application sends a packet larger than that (for example, a massive JSON payload, binary file, or large SQL import), MySQL rejects it and throws:<\/p>\n<pre><code>ERROR 1153 (08S01): Got a packet bigger than 'max_allowed_packet' bytes<\/code><\/pre>\n<p class=\"p1\">This is a <span class=\"s1\"><b>server-level limit<\/b><\/span>, not an application bug.<\/p>\n<hr \/>\n<h1><b>2. Fix: Increase <\/b><\/h1>\n<h1><b>max_allowed_packet<\/b><\/h1>\n<h1><b> in my.cnf<\/b><\/h1>\n<p class=\"p1\">Edit:<\/p>\n<pre><code>\/etc\/my.cnf<\/code><\/pre>\n<p class=\"p1\">Under <span class=\"s1\">[mysqld]<\/span>, add or modify:<\/p>\n<pre><code>max_allowed_packet = 256M<\/code><\/pre>\n<p class=\"p1\">Or for high-intensity systems:<\/p>\n<pre><code>max_allowed_packet = 512M<\/code><\/pre>\n<p class=\"p1\">Restart MySQL:<\/p>\n<pre><code>systemctl restart mysqld<\/code><\/pre>\n<p class=\"p1\">MariaDB:<\/p>\n<pre><code>systemctl restart mariadb<\/code><\/pre>\n<p class=\"p1\">Verify value:<\/p>\n<pre><code>mysql -e \"SHOW VARIABLES LIKE 'max_allowed_packet';\"<\/code><\/pre>\n<hr \/>\n<h1><b>3. Fix: Increase Packet Limit for Client Tools Too<\/b><\/h1>\n<p class=\"p3\">If you use:<\/p>\n<ul>\n<li>\n<p class=\"p1\">mysql<\/p>\n<\/li>\n<li>\n<p class=\"p1\">mysqldump<\/p>\n<\/li>\n<li>\n<p class=\"p1\">phpMyAdmin<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Adminer<\/p>\n<\/li>\n<li>\n<p class=\"p1\">API clients<\/p>\n<\/li>\n<\/ul>\n<p class=\"p3\">\u2026you MUST update client-side settings as well.<\/p>\n<h3><b>For CLI clients:<\/b><\/h3>\n<p class=\"p3\">Edit:<\/p>\n<pre><code>\/etc\/my.cnf<\/code><\/pre>\n<p class=\"p1\">Add:<\/p>\n<pre><code>[client]\r\nmax_allowed_packet = 256M<\/code><\/pre>\n<hr \/>\n<h1><b>4. Fix: For phpMyAdmin Users<\/b><\/h1>\n<p class=\"p3\">Update:<\/p>\n<pre><code>php.ini<\/code><\/pre>\n<p class=\"p1\">Set:<\/p>\n<pre><code>upload_max_filesize = 512M\r\npost_max_size = 512M\r\nmemory_limit = 1024M<\/code><\/pre>\n<p class=\"p1\">Restart Apache\/Nginx + PHP-FPM.<\/p>\n<hr \/>\n<h1><b>5. Fix: During SQL Import (mysql or mysqldump)<\/b><\/h1>\n<p class=\"p1\">Run import with packet override:<\/p>\n<pre><code>mysql --max_allowed_packet=512M -u root -p database &lt; backup.sql<\/code><\/pre>\n<p class=\"p1\">For mysqldump:<\/p>\n<pre><code>mysqldump --max_allowed_packet=512M -u root -p database &gt; dump.sql<\/code><\/pre>\n<hr \/>\n<h1><b>6. Fix: Repair Corrupted or Oversized Rows<\/b><\/h1>\n<p class=\"p3\">If the error appears mid-query, you may have:<\/p>\n<ul>\n<li>\n<p class=\"p1\">A corrupted row<\/p>\n<\/li>\n<li>\n<p class=\"p1\">A binary BLOB too large<\/p>\n<\/li>\n<li>\n<p class=\"p1\">A broken JSON entry<\/p>\n<\/li>\n<li>\n<p class=\"p1\">A huge WordPress meta row<\/p>\n<\/li>\n<\/ul>\n<p class=\"p3\">Check largest rows:<\/p>\n<pre><code>SELECT table_name, data_length \r\nFROM information_schema.tables \r\nORDER BY data_length DESC \r\nLIMIT 10;<\/code><\/pre>\n<p class=\"p1\">Check for large meta rows (WordPress):<\/p>\n<pre><code>SELECT meta_key, LENGTH(meta_value) \r\nFROM wp_postmeta \r\nORDER BY LENGTH(meta_value) DESC LIMIT 20;<\/code><\/pre>\n<hr \/>\n<h1><b>7. Fix: For WordPress &amp; WooCommerce Sites<\/b><\/h1>\n<p class=\"p3\">Common causes:<\/p>\n<ul>\n<li>\n<p class=\"p1\">Oversized WooCommerce session rows<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Broken serialized data<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Large plugin-generated meta entries<\/p>\n<\/li>\n<\/ul>\n<p class=\"p3\">You can clean them:<\/p>\n<pre><code>DELETE FROM wp_options WHERE option_name LIKE '%_transient_%';\r\nDELETE FROM wp_postmeta WHERE meta_key = '_wc_session_expires';<\/code><\/pre>\n<hr \/>\n<h1><b>8. Fix: For Applications Using APIs or BLOBs<\/b><\/h1>\n<p class=\"p3\">Check if your app is sending:<\/p>\n<ul>\n<li>\n<p class=\"p1\">Huge JSON payloads<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Large file uploads inside the query<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Base64 encoded BLOB chunks<\/p>\n<\/li>\n<\/ul>\n<p class=\"p3\">Either:<\/p>\n<ul>\n<li>\n<p class=\"p1\">Increase packet size<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Reduce payload size<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Use streaming instead of full BLOB insert<\/p>\n<\/li>\n<\/ul>\n<hr \/>\n<h1><b>9. Fix: For MariaDB Users With Large Joins<\/b><\/h1>\n<p class=\"p3\">MariaDB sometimes hits the limit during large temp table merges.<\/p>\n<p class=\"p3\">Increase:<\/p>\n<pre><code>max_heap_table_size = 512M\r\ntmp_table_size = 512M<\/code><\/pre>\n<p class=\"p1\">Restart server.<\/p>\n<hr \/>\n<h1><b>10. Final Checklist<\/b><\/h1>\n<p class=\"p1\">Before retrying:<\/p>\n<ul>\n<li>\n<p class=\"p1\">Restart MySQL<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Verify max_allowed_packet<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Verify client packet limits<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Check php.ini if using phpMyAdmin<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Check application logs<\/p>\n<\/li>\n<li>\n<p class=\"p1\">Try re-importing with higher limits<\/p>\n<\/li>\n<\/ul>\n<p class=\"p1\">With these steps, 99% of packet-related errors disappear instantly.<\/p>\n<p class=\"p1\">If you need help fixing this on a production environment, our team handles it under <a href=\"https:\/\/iserversupport.com\/emergency-server-support\/\"><span class=\"s2\"><b>Emergency Server Support<\/b><\/span><\/a>.<\/p>\n<hr \/>\n<h1><b>Conclusion<\/b><\/h1>\n<p class=\"p1\">The \u201cGot a packet bigger than \u2018max_allowed_packet\u2019 bytes\u201d error occurs when MySQL rejects a query that exceeds the allowed packet size. Increasing the limit on both the server and client side usually fixes the issue. For persistent problems, review large BLOBs, corrupted tables, or oversized application data.<\/p>\n<p class=\"p1\">For safe database tuning, migration handling, or performance optimization, explore our <a href=\"https:\/\/iserversupport.com\/server-optimization-service\/\"><span class=\"s2\"><b>Server Optimization Service<\/b><\/span><\/a>\u00a0or <a href=\"https:\/\/iserversupport.com\/linux-server-management\/\"><span class=\"s2\"><b>Linux Server Management<\/b><\/span><\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL throws the error \u201cGot a packet bigger than \u2018max_allowed_packet\u2019 bytes\u201d when the server receives a query larger than the configured packet size. This usually happens during: Large INSERT or [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes<\/title>\n<meta name=\"description\" content=\"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes\" \/>\n<meta property=\"og:description\" content=\"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Company - Outsourced Webhosting Service\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/iserversupport\" \/>\n<meta property=\"article:published_time\" content=\"2013-03-04T20:01:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:31:17+00:00\" \/>\n<meta name=\"author\" content=\"iServerSupport\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@iserversupport\" \/>\n<meta name=\"twitter:site\" content=\"@iserversupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"iServerSupport\" \/>\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:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\"},\"author\":{\"name\":\"iServerSupport\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/414757a5feb39cada3a64aece076ce39\"},\"headline\":\"MySQL Error 1153 &#8211; Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes\",\"datePublished\":\"2013-03-04T20:01:04+00:00\",\"dateModified\":\"2025-11-13T20:31:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\"},\"wordCount\":479,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\",\"url\":\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\",\"name\":\"Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes\",\"isPartOf\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/#website\"},\"datePublished\":\"2013-03-04T20:01:04+00:00\",\"dateModified\":\"2025-11-13T20:31:17+00:00\",\"description\":\"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#website\",\"url\":\"https:\/\/iserversupport.com\/blog\/\",\"name\":\"Server Management Company - Outsourced Webhosting Service\",\"description\":\"Complete server management service\",\"publisher\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/iserversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#organization\",\"name\":\"iServerSupport\",\"url\":\"https:\/\/iserversupport.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/iserversupport.com\/wp-content\/uploads\/2020\/09\/I-SERVER-SUPPORT-07-1-e1606382474222.png\",\"contentUrl\":\"https:\/\/iserversupport.com\/wp-content\/uploads\/2020\/09\/I-SERVER-SUPPORT-07-1-e1606382474222.png\",\"width\":20,\"height\":19,\"caption\":\"iServerSupport\"},\"image\":{\"@id\":\"https:\/\/iserversupport.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/iserversupport\",\"https:\/\/x.com\/iserversupport\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/414757a5feb39cada3a64aece076ce39\",\"name\":\"iServerSupport\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ab568d65092a1e7994bb3aa6f4a4a1ba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ab568d65092a1e7994bb3aa6f4a4a1ba?s=96&d=mm&r=g\",\"caption\":\"iServerSupport\"},\"sameAs\":[\"https:\/\/iserversupport.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes","description":"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.","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:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/","og_locale":"en_US","og_type":"article","og_title":"Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes","og_description":"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.","og_url":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/","og_site_name":"Server Management Company - Outsourced Webhosting Service","article_publisher":"https:\/\/facebook.com\/iserversupport","article_published_time":"2013-03-04T20:01:04+00:00","article_modified_time":"2025-11-13T20:31:17+00:00","author":"iServerSupport","twitter_card":"summary_large_image","twitter_creator":"@iserversupport","twitter_site":"@iserversupport","twitter_misc":{"Written by":"iServerSupport","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/#article","isPartOf":{"@id":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/"},"author":{"name":"iServerSupport","@id":"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/414757a5feb39cada3a64aece076ce39"},"headline":"MySQL Error 1153 &#8211; Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes","datePublished":"2013-03-04T20:01:04+00:00","dateModified":"2025-11-13T20:31:17+00:00","mainEntityOfPage":{"@id":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/"},"wordCount":479,"commentCount":0,"publisher":{"@id":"https:\/\/iserversupport.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/","url":"https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/","name":"Got a Packet Bigger than \u2018max_allowed_packet\u2019 bytes","isPartOf":{"@id":"https:\/\/iserversupport.com\/blog\/#website"},"datePublished":"2013-03-04T20:01:04+00:00","dateModified":"2025-11-13T20:31:17+00:00","description":"Fix the MySQL \u201cGot a packet bigger than max_allowed_packet bytes\u201d error. Learn causes, server and client-side fixes, import solutions, and optimization tips.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/iserversupport.com\/blog\/got-a-packet-bigger-than-max_allowed_packet-bytes\/"]}]},{"@type":"WebSite","@id":"https:\/\/iserversupport.com\/blog\/#website","url":"https:\/\/iserversupport.com\/blog\/","name":"Server Management Company - Outsourced Webhosting Service","description":"Complete server management service","publisher":{"@id":"https:\/\/iserversupport.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/iserversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/iserversupport.com\/blog\/#organization","name":"iServerSupport","url":"https:\/\/iserversupport.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/iserversupport.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/iserversupport.com\/wp-content\/uploads\/2020\/09\/I-SERVER-SUPPORT-07-1-e1606382474222.png","contentUrl":"https:\/\/iserversupport.com\/wp-content\/uploads\/2020\/09\/I-SERVER-SUPPORT-07-1-e1606382474222.png","width":20,"height":19,"caption":"iServerSupport"},"image":{"@id":"https:\/\/iserversupport.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/iserversupport","https:\/\/x.com\/iserversupport"]},{"@type":"Person","@id":"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/414757a5feb39cada3a64aece076ce39","name":"iServerSupport","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/iserversupport.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ab568d65092a1e7994bb3aa6f4a4a1ba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab568d65092a1e7994bb3aa6f4a4a1ba?s=96&d=mm&r=g","caption":"iServerSupport"},"sameAs":["https:\/\/iserversupport.com"]}]}},"_links":{"self":[{"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/posts\/21309"}],"collection":[{"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=21309"}],"version-history":[{"count":2,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/posts\/21309\/revisions"}],"predecessor-version":[{"id":25162,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/posts\/21309\/revisions\/25162"}],"wp:attachment":[{"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=21309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=21309"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/iserversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=21309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}