Exactly the same problem for me. it affects 3 or 4 of my chats (always with some plugins active). Impossible to remove the chat or edit plugins

Exactly with the same problem here. I noticed that if i use the plugins “code Academy” and “AI agents” the chat keeps crashing. Even old chats that i had, with a long history, i cannot use them, and i used them since chat already had the previous knowledge from the conversation.

Hi all, i have the same problem, i tryed a lot of things for solve it but without good results. I dont known if contact with support or wait until fix this problem alone.

Es algo muy molesto si, esperemos que pronto lo solucionen !!

Hello,

I’ve created a Greasemonkey script that automatically modifies server responses to prevent this issue.

Why Use Greasemonkey? Greasemonkey allows for automatic application of changes in every browsing session, providing a lasting, effortless solution.

Steps to Apply the Patch:

  1. Install Greasemonkey: Ensure Greasemonkey is installed on your browser.
  2. Create a New Script: Click on the Greasemonkey icon and choose “New User Script…”.
  3. Configure the Script: Fill in the script details.
  4. Write the Script: Copy and paste the script I provided, which intercepts server responses and modifies them as needed to avoid empty responses.
  5. Save and Test: Save the script and visit the ChatGPT page to test its effectiveness.
// ==UserScript==
// @name         ChatGPT Fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fix ChatGPT issue
// @author       Laurent Warin
// @match        https://chat.openai.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to modify the server's response
    function modifyServerResponse(originalResponse) {
        let modifiedResponse = originalResponse;
        // Check and modify modifiedResponse as needed
        // For example, check if certain properties are null and replace them
        if (modifiedResponse.terms_of_use === null) {
            modifiedResponse.terms_of_use = { is_required: false };
        }
        return modifiedResponse;
    }

    // Intercept XHR requests
    XMLHttpRequest.prototype.realSend = XMLHttpRequest.prototype.send;
    XMLHttpRequest.prototype.send = function(value) {
        this.addEventListener('load', function() {
            if (this.responseURL === "https://chat.openai.com/backend-api/compliance") {
                let response = JSON.parse(this.responseText);
                let modified = modifyServerResponse(response);
                Object.defineProperty(this, 'responseText', { writable: true });
                this.responseText = JSON.stringify(modified);
            }
        });
        this.realSend(value);
    };
})();


By following these steps, you should be able to permanently resolve issues with empty responses on ChatGPT.

i have the same browser issue but android works fine. it’s a open ai server issue

Is there a chance we can have the conversations back? I mean i’ve invested a lot of time and creativity on that, besides the money. Is Open AI ever answering anything here?

1 Like

Most of mine are still not working. Everything that is basically over a few days old. I have a few I created in a certain time frame that are still functioning. But most are not. This isn’t usable.

Only solution is to use ChatGPT is using it on mobile or tablet. Even older chats loaded with plugins would work.

I have the same issue and cannot access any of my previous chats that were done with plug-ins and now that I disabled plug-ins I can create new ones. The older one are still not accessible.

Not able to access any chats in my CHAT GPT 4, Please fix this issue open AI.

Help, im starting to get the same error everytime i try to use a plugin

how to fix?

I’ve experience the same issue last night. Issue still hasn’t resolved. Only using plugins is when I get the “oops an error has occurred”. I tried different combinations of plug ins it seems like it’s just plugins in general causing the issue because when I try normal gpt 4 there is no issue. I hope the issue gets resolved soon.

I messed with my plugins. Wikipedia plugin was the offender for me, Wolfram seems fine. Hopes this helps!

I just resolved the issue, for me at least. I’ve tried different browsers, incognito, etc. What has worked is going into the plugin store and uninstalling vox script and AI PDF. Web pilot works for me when I do this. I haven’t put much more time into this but I can confirm webpilot works on gpt4. If I try to enable AI PDF again, for example, I get the Oops error. Not sure if it’s due to more than one plugin or if the plugin providers are playing catch up to get their code to work with a chatgpt update. I’m working again with webpilot and gpt4, for sure.

2 Likes

I removed all plugins and it starts to work fine.

Does anyone know if this fix actually works?

I tried this advice, open in incognito mode uninstall the plugins and It works for me!!

This worked for me
primary DNS
1.1.1.1
Secondary DNS
8.8.8.8

what wasn’t working
1.1.1.1
1.0.0.1

so i essentially used cloudflare and backed up with google. For now, it works

2 Likes

The error message disappeared. I did not change a thing! The plugins I had enabled still work. I use Wikipedia and Wolfram Alpha.