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.

In my case, I no longer encountered any problems with webpilot which I was able to use all day :wink:

What’s goin on my peeps! I just double-checked all my chats and added/removed some plugins, and it seems to be working fine [for now]!

Have any of you noticed all is working on your end now …or still seeing error issues?

I’ve had this for weeks. What’s happening!? and why hasn’t OpenAI helped at all?

Same problem here. No plugins. If I use a VPN, I can get in. Without it, I just get the Oops message on the chat site.