{"id":84164,"date":"2024-11-19T17:34:56","date_gmt":"2024-11-19T12:04:56","guid":{"rendered":"https:\/\/www.seminarsonly.com\/news\/?p=84164"},"modified":"2024-11-19T21:59:25","modified_gmt":"2024-11-19T16:29:25","slug":"http-error-500-19-internal-server-error-how-to-fix-it","status":"publish","type":"post","link":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/","title":{"rendered":"http error 500.19 Internal Server Error | How to Fix it"},"content":{"rendered":"<h2><span style=\"color: #800000;\">http error 500.19 Internal Server Error | How to Fix it<\/span><\/h2>\n<h3><span style=\"color: #008000;\"><strong><em>Let&#8217;s troubleshoot this HTTP Error 500.19. This error means something&#8217;s wrong with your web server&#8217;s configuration, preventing it from serving your website. <\/em><\/strong><\/span><\/h3>\n<p data-sourcepos=\"1:1-1:200\">Here&#8217;s a breakdown of how we can tackle it:<\/p>\n<h2 data-sourcepos=\"3:1-3:27\"><span style=\"color: #800000;\"><strong>Understanding the Error<\/strong><\/span><\/h2>\n<ul data-sourcepos=\"5:1-7:0\">\n<li data-sourcepos=\"5:1-5:55\"><strong>500:<\/strong> This indicates a general server-side error.<\/li>\n<li data-sourcepos=\"6:1-7:0\"><strong>19:<\/strong> This specifies that it&#8217;s a configuration issue.<\/li>\n<\/ul>\n<h2 data-sourcepos=\"8:1-8:17\"><span style=\"color: #800000;\"><strong>Common Causes<\/strong><\/span><\/h2>\n<p data-sourcepos=\"10:3-10:140\"><strong>1. IIS Configuration:<\/strong> Problems with your Internet Information Services (IIS) settings are the most frequent culprits. This could include:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul data-sourcepos=\"11:5-16:0\">\n<li data-sourcepos=\"11:5-11:109\"><strong>Permissions:<\/strong> Incorrect file or folder permissions on your website files or IIS configuration files.<\/li>\n<li data-sourcepos=\"12:5-12:167\"><strong>Locked Sections:<\/strong> Parts of your <code>web.config<\/code> file might be locked at a higher level (like the server level), preventing your application from modifying them.<\/li>\n<li data-sourcepos=\"13:5-13:124\"><strong>Corrupted Configuration:<\/strong> Your <code>applicationHost.config<\/code> or <code>web.config<\/code> files might have errors or invalid entries.<\/li>\n<li data-sourcepos=\"14:5-14:79\"><strong>Modules or Handlers:<\/strong> Issues with registered HTTP modules or handlers.<\/li>\n<li data-sourcepos=\"15:5-16:0\"><strong>Application Pool:<\/strong> Problems with the application pool assigned to your website (e.g., wrong .NET version, identity settings).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p data-sourcepos=\"17:3-17:74\"><strong>2. Other Causes:<\/strong> Though less common, these factors can also contribute:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul data-sourcepos=\"18:5-20:0\">\n<li data-sourcepos=\"18:5-18:76\"><strong>Firewall:<\/strong> A firewall could be blocking necessary ports or traffic.<\/li>\n<li data-sourcepos=\"19:5-20:0\"><strong>Antivirus:<\/strong> Security software might be interfering with your web server.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>Also Read : <a href=\"https:\/\/www.seminarsonly.com\/news\/error-500-bancolombia-codigo-de-error-500-bancolombia\/\">Error 500 Bancolombia<\/a><\/h3>\n<h2 data-sourcepos=\"21:1-21:25\"><span style=\"color: #800000;\"><strong>Troubleshooting Steps<\/strong><\/span><\/h2>\n<ol data-sourcepos=\"23:1-57:0\">\n<li data-sourcepos=\"23:1-25:0\">\n<p data-sourcepos=\"23:4-23:30\"><strong>Detailed Error Message:<\/strong><\/p>\n<ul data-sourcepos=\"24:4-25:0\">\n<li data-sourcepos=\"24:4-25:0\">The error message often provides a more specific reason. Look for details like the <strong>configSource<\/strong> attribute, the <strong>module<\/strong> name, or the specific <strong>error code<\/strong>. This will give you a clearer direction.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"26:1-30:0\">\n<p data-sourcepos=\"26:4-26:22\"><strong>Check IIS Logs:<\/strong><\/p>\n<ul data-sourcepos=\"27:4-30:0\">\n<li data-sourcepos=\"27:4-27:44\">Navigate to <code>C:\\inetpub\\logs\\LogFiles<\/code>.<\/li>\n<li data-sourcepos=\"28:4-28:60\">Open the latest log file corresponding to your website.<\/li>\n<li data-sourcepos=\"29:4-30:0\">Look for error messages related to the 500.19 error.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"31:1-34:0\">\n<p data-sourcepos=\"31:4-31:19\"><strong>Permissions:<\/strong><\/p>\n<ul data-sourcepos=\"32:4-34:0\">\n<li data-sourcepos=\"32:4-32:84\">Ensure the <code>IIS_IUSRS<\/code> group has read access to your website files and folders.<\/li>\n<li data-sourcepos=\"33:4-34:0\">Grant the appropriate permissions to the <code>applicationHost.config<\/code> and <code>web.config<\/code> files.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"35:1-39:0\">\n<p data-sourcepos=\"35:4-35:23\"><strong>Locked Sections:<\/strong><\/p>\n<ul data-sourcepos=\"36:4-39:0\">\n<li data-sourcepos=\"36:4-36:95\">Open your <code>applicationHost.config<\/code> file (usually in <code>C:\\Windows\\System32\\inetsrv\\config<\/code>).<\/li>\n<li data-sourcepos=\"37:4-37:59\">Search for the section mentioned in the error message.<\/li>\n<li data-sourcepos=\"38:4-39:0\">If you find <code>&lt;location allowOverride=\"false\"&gt;<\/code>, change it to <code>&lt;location allowOverride=\"true\"&gt;<\/code> to unlock the section.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"40:1-46:0\">\n<p data-sourcepos=\"40:4-40:24\"><strong>Application Pool:<\/strong><\/p>\n<ul data-sourcepos=\"41:4-46:0\">\n<li data-sourcepos=\"41:4-41:47\">In IIS Manager, go to &#8220;Application Pools.&#8221;<\/li>\n<li data-sourcepos=\"42:4-42:83\">Right-click on your website&#8217;s application pool and select &#8220;Advanced Settings.&#8221;<\/li>\n<li data-sourcepos=\"43:4-43:65\">Verify the .NET CLR version is correct for your application.<\/li>\n<li data-sourcepos=\"44:4-44:100\">Check the &#8220;Identity&#8221; setting \u2013 try setting it to <code>ApplicationPoolIdentity<\/code> or <code>NetworkService<\/code>.<\/li>\n<li data-sourcepos=\"45:4-46:0\">Recycle the application pool.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"47:1-51:0\">\n<p data-sourcepos=\"47:4-47:35\"><strong>.NET Framework Registration:<\/strong><\/p>\n<ul data-sourcepos=\"48:4-51:0\">\n<li data-sourcepos=\"48:4-51:0\">If you&#8217;re using ASP.NET, try re-registering the .NET Framework:\n<ul data-sourcepos=\"49:6-51:0\">\n<li data-sourcepos=\"49:6-49:44\">Open Command Prompt as administrator.<\/li>\n<li data-sourcepos=\"50:6-51:0\">Run <code>aspnet_regiis -i<\/code> (for ASP.NET) or <code>dism \/online \/enable-feature \/featurename:IIS-ASPNET45<\/code> (for ASP.NET 4.5 and above).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"52:1-54:0\">\n<p data-sourcepos=\"52:4-52:32\"><strong>Configuration Validation:<\/strong><\/p>\n<ul data-sourcepos=\"53:4-54:0\">\n<li data-sourcepos=\"53:4-54:0\">Use the &#8220;Configuration Editor&#8221; in IIS Manager to validate your <code>web.config<\/code> settings.<\/li>\n<\/ul>\n<\/li>\n<li data-sourcepos=\"55:1-57:0\">\n<p data-sourcepos=\"55:4-55:29\"><strong>Temporary Disablement:<\/strong><\/p>\n<ul data-sourcepos=\"56:4-57:0\">\n<li data-sourcepos=\"56:4-57:0\">Temporarily disable your firewall and antivirus to see if they are the cause. If so, configure them to allow your web server&#8217;s traffic.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>http error 500.19 Internal Server Error | How to Fix it Let&#8217;s troubleshoot this HTTP Error 500.19. This error means something&#8217;s wrong with your web server&#8217;s configuration, preventing it from&hellip;<\/p>\n","protected":false},"author":1,"featured_media":84165,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-84164","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>http error 500.19 Internal Server Error | How to Fix it - Seminarsonly.com<\/title>\n<meta name=\"description\" content=\"Let&#039;s troubleshoot this HTTP Error 500.19. This error means something&#039;s wrong with your web server&#039;s configuration, preventing it from serving your website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"http error 500.19 Internal Server Error | How to Fix it\" \/>\n<meta property=\"og:description\" content=\"Let&#039;s troubleshoot this HTTP Error 500.19. This error means something&#039;s wrong with your web server&#039;s configuration, preventing it from serving your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\" \/>\n<meta property=\"og:site_name\" content=\"Seminarsonly.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/seminarsonly\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-19T12:04:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-19T16:29:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"683\" \/>\n\t<meta property=\"og:image:height\" content=\"353\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Freddy John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:site\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Freddy John\" \/>\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:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\"},\"author\":{\"name\":\"Freddy John\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"headline\":\"http error 500.19 Internal Server Error | How to Fix it\",\"datePublished\":\"2024-11-19T12:04:56+00:00\",\"dateModified\":\"2024-11-19T16:29:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\"},\"wordCount\":415,\"image\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp\",\"articleSection\":[\"news\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\",\"url\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\",\"name\":\"http error 500.19 Internal Server Error | How to Fix it - Seminarsonly.com\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp\",\"datePublished\":\"2024-11-19T12:04:56+00:00\",\"dateModified\":\"2024-11-19T16:29:25+00:00\",\"author\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"description\":\"Let's troubleshoot this HTTP Error 500.19. This error means something's wrong with your web server's configuration, preventing it from serving your website.\",\"breadcrumb\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage\",\"url\":\"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp\",\"contentUrl\":\"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp\",\"width\":683,\"height\":353,\"caption\":\"http error 500.19 internal server error\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seminarsonly.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"http error 500.19 Internal Server Error | How to Fix it\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\",\"url\":\"https:\/\/seminarsonly.com\/news\/\",\"name\":\"Seminarsonly.com\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seminarsonly.com\/news\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\",\"name\":\"Freddy John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"caption\":\"Freddy John\"},\"sameAs\":[\"https:\/\/seminarsonly.com\/news\"],\"url\":\"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"http error 500.19 Internal Server Error | How to Fix it - Seminarsonly.com","description":"Let's troubleshoot this HTTP Error 500.19. This error means something's wrong with your web server's configuration, preventing it from serving your website.","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:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/","og_locale":"en_US","og_type":"article","og_title":"http error 500.19 Internal Server Error | How to Fix it","og_description":"Let's troubleshoot this HTTP Error 500.19. This error means something's wrong with your web server's configuration, preventing it from serving your website.","og_url":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/","og_site_name":"Seminarsonly.com","article_publisher":"https:\/\/facebook.com\/seminarsonly","article_published_time":"2024-11-19T12:04:56+00:00","article_modified_time":"2024-11-19T16:29:25+00:00","og_image":[{"width":683,"height":353,"url":"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp","type":"image\/webp"}],"author":"Freddy John","twitter_card":"summary_large_image","twitter_creator":"@seminarsonly","twitter_site":"@seminarsonly","twitter_misc":{"Written by":"Freddy John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#article","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/"},"author":{"name":"Freddy John","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"headline":"http error 500.19 Internal Server Error | How to Fix it","datePublished":"2024-11-19T12:04:56+00:00","dateModified":"2024-11-19T16:29:25+00:00","mainEntityOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/"},"wordCount":415,"image":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp","articleSection":["news"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/","url":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/","name":"http error 500.19 Internal Server Error | How to Fix it - Seminarsonly.com","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage"},"image":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp","datePublished":"2024-11-19T12:04:56+00:00","dateModified":"2024-11-19T16:29:25+00:00","author":{"@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"description":"Let's troubleshoot this HTTP Error 500.19. This error means something's wrong with your web server's configuration, preventing it from serving your website.","breadcrumb":{"@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#primaryimage","url":"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp","contentUrl":"https:\/\/seminarsonly.com\/news\/wp-content\/uploads\/2024\/11\/http-error-500.19.webp","width":683,"height":353,"caption":"http error 500.19 internal server error"},{"@type":"BreadcrumbList","@id":"https:\/\/seminarsonly.com\/news\/http-error-500-19-internal-server-error-how-to-fix-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seminarsonly.com\/news\/"},{"@type":"ListItem","position":2,"name":"http error 500.19 Internal Server Error | How to Fix it"}]},{"@type":"WebSite","@id":"https:\/\/seminarsonly.com\/news\/#website","url":"https:\/\/seminarsonly.com\/news\/","name":"Seminarsonly.com","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seminarsonly.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd","name":"Freddy John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","caption":"Freddy John"},"sameAs":["https:\/\/seminarsonly.com\/news"],"url":"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/"}]}},"_links":{"self":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/84164","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/comments?post=84164"}],"version-history":[{"count":0,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/84164\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media\/84165"}],"wp:attachment":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media?parent=84164"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/categories?post=84164"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/tags?post=84164"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}