{"id":96994,"date":"2025-10-14T11:10:55","date_gmt":"2025-10-14T05:40:55","guid":{"rendered":"https:\/\/www.seminarsonly.com\/news\/?p=96994"},"modified":"2025-10-14T11:25:00","modified_gmt":"2025-10-14T05:55:00","slug":"error-fixed-error-establishing-a-redis-connection-to-disable-redis","status":"publish","type":"post","link":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/","title":{"rendered":"Error Fixed : Error Establishing a Redis Connection to Disable Redis"},"content":{"rendered":"<h3><span style=\"color: #008000;\"><em>To disable Redis when encountering an &#8220;Error establishing a Redis connection,&#8221; particularly in a WordPress environment, the primary method involves removing the object-cache.php file.<\/em><\/span><\/h3>\n<p data-start=\"0\" data-end=\"161\">If you&#8217;re seeing an <strong data-start=\"20\" data-end=\"63\">&#8220;Error establishing a Redis connection&#8221;<\/strong> (often in web apps or WordPress), it typically means your application is trying to use Redis but:<\/p>\n<ul data-start=\"163\" data-end=\"281\">\n<li data-start=\"163\" data-end=\"184\">\n<p data-start=\"165\" data-end=\"184\">Redis isn\u2019t running<\/p>\n<\/li>\n<li data-start=\"185\" data-end=\"241\">\n<p data-start=\"187\" data-end=\"241\">The connection settings (host\/port\/password) are wrong<\/p>\n<\/li>\n<li data-start=\"242\" data-end=\"281\">\n<p data-start=\"244\" data-end=\"281\">Redis is misconfigured or unreachable<\/p>\n<\/li>\n<\/ul>\n<p data-start=\"283\" data-end=\"364\">If you <strong data-start=\"290\" data-end=\"315\">want to disable Redis<\/strong>, here&#8217;s how to do that, depending on your setup:<\/p>\n<hr data-start=\"366\" data-end=\"369\" \/>\n<h2 data-start=\"371\" data-end=\"410\"><span style=\"color: #800000;\">\ud83d\udd27 1. <strong data-start=\"380\" data-end=\"410\">Disable Redis in WordPress<\/strong><\/span><\/h2>\n<p data-start=\"412\" data-end=\"516\">If you&#8217;re using Redis for object caching (via a plugin like <strong data-start=\"472\" data-end=\"494\">Redis Object Cache<\/strong>), follow these steps:<\/p>\n<h3 data-start=\"518\" data-end=\"553\"><span style=\"color: #000080;\">\u2705 Option A: Via WordPress Admin<\/span><\/h3>\n<ol data-start=\"555\" data-end=\"631\">\n<li data-start=\"555\" data-end=\"597\">\n<p data-start=\"558\" data-end=\"597\">Go to <strong data-start=\"564\" data-end=\"595\">WP Admin \u2192 Settings \u2192 Redis<\/strong><\/p>\n<\/li>\n<li data-start=\"598\" data-end=\"631\">\n<p data-start=\"601\" data-end=\"631\">Click <strong data-start=\"607\" data-end=\"631\">Disable Object Cache<\/strong><\/p>\n<\/li>\n<\/ol>\n<h3 data-start=\"633\" data-end=\"677\"><span style=\"color: #000080;\">\u2705 Option B: Manually via <code data-start=\"662\" data-end=\"677\">wp-config.php<\/code><\/span><\/h3>\n<p data-start=\"679\" data-end=\"756\">Edit your <code data-start=\"689\" data-end=\"704\">wp-config.php<\/code> and comment out or remove Redis-related lines like:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\">\n<div class=\"absolute end-0 bottom-0 flex h-9 items-center pe-2\">\n<div class=\"bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs\"><\/div>\n<\/div>\n<\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-php\"><span class=\"hljs-title function_ invoke__\">define<\/span>(<span class=\"hljs-string\">'WP_REDIS_HOST'<\/span>, <span class=\"hljs-string\">'127.0.0.1'<\/span>);<br \/>\n<span class=\"hljs-title function_ invoke__\">define<\/span>(<span class=\"hljs-string\">'WP_REDIS_PORT'<\/span>, <span class=\"hljs-number\">6379<\/span>);<br \/>\n<span class=\"hljs-title function_ invoke__\">define<\/span>(<span class=\"hljs-string\">'WP_CACHE'<\/span>, <span class=\"hljs-literal\">true<\/span>);<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"865\" data-end=\"941\">Also remove or disable any Redis-related plugins from <code data-start=\"919\" data-end=\"940\">wp-content\/plugins\/<\/code>.<\/p>\n<h3 data-start=\"865\" data-end=\"941\">Also Read : <a href=\"https:\/\/www.seminarsonly.com\/news\/error-fixed-the-media-you-are-trying-to-play-is-not-yet-cached-on-the-debrid-service\/\">Error Fixed : The Media you are Trying to Play is not yet Cached on the Debrid Service<\/a><\/h3>\n<hr data-start=\"943\" data-end=\"946\" \/>\n<h2 data-start=\"948\" data-end=\"996\"><span style=\"color: #800000;\">\ud83d\udd27 2. <strong data-start=\"957\" data-end=\"996\">Disable Redis in Laravel \/ PHP apps<\/strong><\/span><\/h2>\n<p data-start=\"998\" data-end=\"1073\">If you&#8217;re using Redis as a cache or queue backend (Laravel, Symfony, etc.):<\/p>\n<h3 data-start=\"1075\" data-end=\"1086\"><span style=\"color: #000080;\">Laravel<\/span><\/h3>\n<p data-start=\"1087\" data-end=\"1120\">Edit your <code data-start=\"1097\" data-end=\"1103\">.env<\/code> file and change:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\">\n<div class=\"absolute end-0 bottom-0 flex h-9 items-center pe-2\">\n<div class=\"bg-token-bg-elevated-secondary text-token-text-secondary flex items-center gap-4 rounded-sm px-2 font-sans text-xs\"><\/div>\n<\/div>\n<\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-env\">CACHE_DRIVER=file<br \/>\nQUEUE_CONNECTION=sync<br \/>\nSESSION_DRIVER=file<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1194\" data-end=\"1250\">That switches from Redis to file-based or local drivers.<\/p>\n<hr data-start=\"1252\" data-end=\"1255\" \/>\n<h2 data-start=\"1257\" data-end=\"1303\"><span style=\"color: #800000;\">\ud83d\udd27 3. <strong data-start=\"1266\" data-end=\"1303\">Stop Redis Service (Linux Server)<\/strong><\/span><\/h2>\n<p data-start=\"1305\" data-end=\"1340\">If Redis is running but not needed:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo systemctl stop redis<br \/>\nsudo systemctl <span class=\"hljs-built_in\">disable<\/span> redis<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1410\" data-end=\"1454\">Or, if you&#8217;re using <code data-start=\"1430\" data-end=\"1444\">redis-server<\/code> manually:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">pkill redis-server<br \/>\n<\/code><\/div>\n<\/div>\n<hr data-start=\"1488\" data-end=\"1491\" \/>\n<h2 data-start=\"1493\" data-end=\"1518\"><span style=\"color: #800000;\">\ud83d\udd27 4. <strong data-start=\"1502\" data-end=\"1518\">Docker Users<\/strong><\/span><\/h2>\n<p data-start=\"1520\" data-end=\"1577\">If Redis runs in Docker, stop\/remove the Redis container:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">docker stop redis<br \/>\ndocker <span class=\"hljs-built_in\">rm<\/span> redis<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1626\" data-end=\"1670\">Or remove it from your <code data-start=\"1649\" data-end=\"1669\">docker-compose.yml<\/code>.<\/p>\n<hr data-start=\"1672\" data-end=\"1675\" \/>\n<h2 data-start=\"1677\" data-end=\"1718\"><span style=\"color: #800000;\">\ud83e\uddfc 5. <strong data-start=\"1686\" data-end=\"1718\">Clear Redis Cache (Optional)<\/strong><\/span><\/h2>\n<p data-start=\"1720\" data-end=\"1780\">If you\u2019re disabling Redis and want to clean old cached data:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">redis-cli flushall<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1814\" data-end=\"1895\"><em data-start=\"1814\" data-end=\"1895\">(Only run this if you\u2019re sure no other apps are using the same Redis instance.)<\/em><\/p>\n<hr \/>\n<h2><span style=\"color: #800000;\">Steps to Disable Redis (primarily for WordPress):<\/span><\/h2>\n<div class=\"zMgcWd dSKvsb\" data-il=\"\">\n<div data-crb-p=\"\">\n<div class=\"xFTqob\">\n<h3 class=\"Gur8Ad\"><span style=\"color: #000080;\" data-huuid=\"15826613254055748971\"><strong>1. Access your WordPress installation directory:<\/strong><\/span><\/h3>\n<ul>\n<li class=\"Gur8Ad\"><span data-huuid=\"15826613254055749242\">Use an FTP client or your hosting provider&#8217;s file manager to connect to your website&#8217;s server.<\/span><\/li>\n<\/ul>\n<h3><span style=\"color: #000080;\">2. Navigate to the wp-content directory:<\/span><\/h3>\n<ul>\n<li>This directory typically contains plugins, themes, and other site-specific content.<\/li>\n<\/ul>\n<h3><span style=\"color: #000080;\">3. Locate and delete object-cache.php:<\/span><\/h3>\n<ul>\n<li>Find the file named object-cache.php within the \/wp-content\/ directory. This file is responsible for integrating Redis as an object cache in WordPress. Deleting it will effectively disable Redis caching for your site.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<hr data-start=\"1897\" data-end=\"1900\" \/>\n<h2 data-start=\"1902\" data-end=\"1930\"><span style=\"color: #800000;\">\u2753 Still Seeing the Error?<\/span><\/h2>\n<p data-start=\"1932\" data-end=\"2050\">If the error persists even after disabling Redis, the app may be hardcoded to require it. In that case, you&#8217;d need to:<\/p>\n<ul data-start=\"2052\" data-end=\"2140\">\n<li data-start=\"2052\" data-end=\"2083\">\n<p data-start=\"2054\" data-end=\"2083\">Remove Redis integration code<\/p>\n<\/li>\n<li data-start=\"2084\" data-end=\"2105\">\n<p data-start=\"2086\" data-end=\"2105\">Modify config files<\/p>\n<\/li>\n<li data-start=\"2106\" data-end=\"2140\">\n<p data-start=\"2108\" data-end=\"2140\">Revert to default caching system<\/p>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>To disable Redis when encountering an &#8220;Error establishing a Redis connection,&#8221; particularly in a WordPress environment, the primary method involves removing the object-cache.php file. If you&#8217;re seeing an &#8220;Error establishing&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6048],"tags":[],"class_list":["post-96994","post","type-post","status-publish","format-standard","hentry","category-error-fix"],"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>Error Fixed : Error Establishing a Redis Connection to Disable Redis - Seminarsonly.com<\/title>\n<meta name=\"description\" content=\"To disable Redis when encountering an &quot;Error establishing a Redis connection,&quot; particularly in a WordPress environment, the primary method involves removing the object-cache.php file.\" \/>\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\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error Fixed : Error Establishing a Redis Connection to Disable Redis\" \/>\n<meta property=\"og:description\" content=\"To disable Redis when encountering an &quot;Error establishing a Redis connection,&quot; particularly in a WordPress environment, the primary method involves removing the object-cache.php file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\" \/>\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=\"2025-10-14T05:40:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-14T05:55:00+00:00\" \/>\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\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\"},\"author\":{\"name\":\"Freddy John\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"headline\":\"Error Fixed : Error Establishing a Redis Connection to Disable Redis\",\"datePublished\":\"2025-10-14T05:40:55+00:00\",\"dateModified\":\"2025-10-14T05:55:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\"},\"wordCount\":397,\"commentCount\":0,\"articleSection\":[\"Error Fix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\",\"url\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\",\"name\":\"Error Fixed : Error Establishing a Redis Connection to Disable Redis - Seminarsonly.com\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\"},\"datePublished\":\"2025-10-14T05:40:55+00:00\",\"dateModified\":\"2025-10-14T05:55:00+00:00\",\"author\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"description\":\"To disable Redis when encountering an \\\"Error establishing a Redis connection,\\\" particularly in a WordPress environment, the primary method involves removing the object-cache.php file.\",\"breadcrumb\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seminarsonly.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Error Fixed : Error Establishing a Redis Connection to Disable Redis\"}]},{\"@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":"Error Fixed : Error Establishing a Redis Connection to Disable Redis - Seminarsonly.com","description":"To disable Redis when encountering an \"Error establishing a Redis connection,\" particularly in a WordPress environment, the primary method involves removing the object-cache.php file.","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\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/","og_locale":"en_US","og_type":"article","og_title":"Error Fixed : Error Establishing a Redis Connection to Disable Redis","og_description":"To disable Redis when encountering an \"Error establishing a Redis connection,\" particularly in a WordPress environment, the primary method involves removing the object-cache.php file.","og_url":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/","og_site_name":"Seminarsonly.com","article_publisher":"https:\/\/facebook.com\/seminarsonly","article_published_time":"2025-10-14T05:40:55+00:00","article_modified_time":"2025-10-14T05:55:00+00:00","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\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#article","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/"},"author":{"name":"Freddy John","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"headline":"Error Fixed : Error Establishing a Redis Connection to Disable Redis","datePublished":"2025-10-14T05:40:55+00:00","dateModified":"2025-10-14T05:55:00+00:00","mainEntityOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/"},"wordCount":397,"commentCount":0,"articleSection":["Error Fix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/","url":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/","name":"Error Fixed : Error Establishing a Redis Connection to Disable Redis - Seminarsonly.com","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/#website"},"datePublished":"2025-10-14T05:40:55+00:00","dateModified":"2025-10-14T05:55:00+00:00","author":{"@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"description":"To disable Redis when encountering an \"Error establishing a Redis connection,\" particularly in a WordPress environment, the primary method involves removing the object-cache.php file.","breadcrumb":{"@id":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/seminarsonly.com\/news\/error-fixed-error-establishing-a-redis-connection-to-disable-redis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seminarsonly.com\/news\/"},{"@type":"ListItem","position":2,"name":"Error Fixed : Error Establishing a Redis Connection to Disable Redis"}]},{"@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\/96994","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=96994"}],"version-history":[{"count":0,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/96994\/revisions"}],"wp:attachment":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media?parent=96994"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/categories?post=96994"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/tags?post=96994"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}