#Network Error

325 messages · Page 1 of 1 (latest)

raven jungle
#

It's annoying that whenever it writes more than like 20 lines of code it just instantly says "Network Error". I partially feel like it's intentional but can you teel me if it's just my wifi being dumb or what?

#

btw this was before it went down

devout jetty
#

same happens with me but I got good wifi and I never get lag on mine

raven jungle
#

i also have good wifi

rotund cloud
#

same here

slender ingot
#

same

#

is he responding to you guys now?

#

he is not to me

#

requerst timed out

raven jungle
#

i just sent hi and not responding so far

slender ingot
#

:/

odd condor
#
Too Many Requests```
devout jetty
#

Well i hope this gets resolved soon

slender ingot
#

i got Request timed out

devout jetty
#

me to

raven jungle
#

i don't mind how it's down for now, but the network error is srsly annoying

rose whale
#

Sorry guys my friend tried "Tell me a paradox" and now it's down 😄

raven jungle
#

D:

devout jetty
#

l:

slender ingot
#

he is such a amazing ai he helped me with my ai homework

#

he wrote me some code

#

in python

odd condor
#

I like how you guys are calling it a he lol

raven jungle
#

i'm so using this for my ela class

devout jetty
#

Hes helped me write neuro code saved a lot of animals do to this ai

raven jungle
#

also, when it doesn't show network error when writting the code, it'll just stop writting and mark it as done

raven jungle
marsh root
#

im keep on getting this error i cant make any submissons in chatgpt

exotic cedar
#

same issue here, how do i fix it

rancid lava
#

yo whats with the network error?

elder wharf
#

Same issue.

pearl leaf
#

Today is not stable

exotic cedar
#

is this only a today thing?

jaunty geyser
#

Same issue here.

south sphinx
#

yeah same her very annoying making it unusable almost

oak venture
#

Same issue here.

lucid aurora
#

Same here

errant oxide
#

Same, I just ask to tell me a story

#

I hope the word limit can be expand

novel bobcat
#

Same here

long sphinx
#

Same here.

hoary tinsel
#

same. over 20 lines or 1min it will end up with error

queen onyx
#

Same here.

tired lance
#

Same

jolly jackal
#

same

#

any solutions?

candid imp
#

Same here

jolly jackal
#

you guys think itll be fixed today

rugged galleon
#

Same, maybe can only wait until it will have been fixed

supple swallow
#

A great robot, a poor CEO

bronze marsh
#

same here, it always happen when GPT try to write huge response. Writes about half A4 page in 8p font and done. I tried also to ask to split messages to smaler chunks and ask me to prompt for continuation but it doesn't help. It crash earlier then

jolly jackal
#

how long would you guys guess until it works again?

paper gorge
#

sorry guys. i asked gpt to shut itself down a couple of hours ago. It must've complied 😉

next sonnet
#

same here

lone meadow
#

same here

hearty cedar
#

Same

flat belfry
#

Not sure how long the outage will be for, probably just experiencing a high user traffic right now thats overwhelming the servers

prisma heart
#

same

candid imp
#

Still showing it

undone wren
#

still getting network error and too many requests

vivid herald
gleaming moon
#

Same here

feral vine
#

So are we saying that once the high traffic is gone we won't get the network erros?

#

errors?*

pearl leaf
#

It doesn't work. No solution yet?

quick pond
quick pond
#

I think they do

delicate anchor
#

It seems that if the calculation exceeds 50 seconds, there will be a network error

jaunty geyser
#

I don't know how coudflare works, maybe there is some way to notify the server that we are connected

flint flax
#

same issue in chinese

#

it will be better when i change the language into englist to ask

tired lance
#

same issue with me, read it somewhere that servers got attacked and so the team is fixing it. i hope it gets resolved soon

quiet stratus
#

This one appears, before even the AI finishes the reply, very annoying bug.

quick pond
pearl leaf
quick pond
#

The Dev's sent a solution! Apparently you do this? I'm a little lost

jaunty geyser
quick pond
#

Any idea what he means by that, sorry i'm a little dumb

jaunty geyser
#

you need to download the app

quick pond
#

I have the app

#

What do i do from here?

jaunty geyser
#

then, u put navigator.userAgent on the browse copy and paste on "userAgent -> youroperativesystem"

quick pond
#

would my operative system be windows? or my user?

#

yeah i messed something up

#

What! That can't be right

languid sigil
languid sigil
random crypt
#

Is there any solution to the network error yet?

late notch
#

Is there any solution to the network error yet?

upbeat igloo
#

same here

candid imp
quick pond
#

Literally don't know

#

It doesn't work anyway

candid imp
#

It's a server side problem not a client side

quick pond
#

I'm sure the dev will fix it

candid imp
#

Why won't they use websockets for the chat with the bot

quick pond
#

Idk

quick pond
compact pumice
#

same

quick pond
#

We finally have something solid on the Network Error

#

They updated cloudflare to combat bots, and they may fix it eventually

dusty patio
# quick pond I'm sure the dev will fix it

Yep, I guess that is the problem.. whenever answer is big it just doesn't finish it and give network error anything I can do to avoid that ? RN or how much time would it take to fix

quick pond
#

It will probably take like a week to fix knowing ChatGTP, What are you trying to use ChatGPT to do? theres a couple ways to alleviate network error

candid imp
#

One thing I'm doing is keep copying the code answer so if it becomes to a "Network error"
I will edit the message and write "Continue this and send me the rest: {WHAT I'VE COPIED}"

dusty patio
quick pond
#

Try saying, write the first tens lines of _______

dusty patio
quick pond
#

Weird

#

what do you need your script to do?

candid imp
dusty patio
#

you were writing this code and stopped in the middle
#include <gtk/gtk.h>
#include <stdio.h>
#include <time.h>

// Function to calculate the day of the week for a given date
int day_of_week(int d, int m, int y)
{
static int t[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
y -= m < 3;
return (y + y/4 - y/100 + y/400 + t[m-1] + d) % 7;
}

// Function to handle the "clicked" event of the "Calculate" button
static void calculate_day_of_week(GtkWidget *button, gpointer data)
{
// Retrieve the values of the day, month, and year from the spin buttons
GtkSpinButton *day_spin = GTK_SPIN_BUTTON(data);
int day = gtk_spin_button_get_value_as_int(day_spin);
GtkSpinButton *month_spin = GTK_SPIN_BUTTON(data);
int month = gtk_spin_button_get_value_as_int(month_spin);
GtkSpinButton *year_spin = GTK_SPIN_BUTTON(data);
int year = gtk_spin_button_get_value_as_int(year_spin);

// Calculate and print the day of the week for the given date
int day_index = day_of_week(day, month, year);
const char *day_names[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
printf("The day of the week is: %s\n", day_names[day_index]);

}

int main(int argc, char *argv[])
{
// Initialize GTK+
gtk_init(&argc, &argv);

// Create a new window
G

complete the code (for giving the day for any date)(finish this)

I gave this prompt and it gives network error before the answer finishes

candid imp
#

For me when I'm telling "send me the rest" it just sends me the rest and not the whole thing

dusty patio
#

"send me the rest"

ok let me use this.. Hopefully it works

quick pond
#

I just try to use "Write the first 10 lines of a C script that _______"
Then use "Write the next 10 lines of code"
It works with python, maybe not c though

#

I hope the guys who manage the site fix this soon

dusty patio
quick pond
#

Great!

candid imp
#

or maybe it will I don't know

quick pond
#

Hopefully it will, it kind of sucks because you could write full scripts like 3 days ago when i found ChatGPT

candid imp
#

Really? for me it just stopped writing if it was long, and now the difference is it just shows the "network error" and removing the whole message

quick pond
#

Weird

dusty patio
#

btw.. any body knows about GTK ? I need some help

trim berry
#

i guess the error shows up on "longer convesations" what i mean is with longer contexts and stuff like that

desert dove
#

😆

pearl leaf
#

Where are chatgpt's engineers?Can you fix this problem?

whole mural
#

same

random crypt
jovial elbow
fair fiber
celest idol
surreal jolt
#

Same here

fair fiber
# celest idol i don't understand what you have to do

@surreal jolt @celest idol
It tells you to change your browser's user agent. If you google "show user agent" you can see your current user agent. I changed my user agent to:
Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1

I am using Brave as a browser, it is Chromium based and other Chromium based browsers should have the same technique to change user agent. Follow these steps:

a) Menu button => More tools => Developer tools In the upper right of Dev Tools widow is a b) “three-dot menu” => More Tools => Network Conditions Network Conditions tab is displayed at bottom third of window (it’s scroll-able or you can move that window pane up). c) For User agent, un-check Select Automatically, then fill in whatever UA string you’d like in the Custom field.

vast oar
bronze berry
#

It's chatgpt issues

vast oar
#

Soo, there is no workaround for it?

tired lance
#

horrified oh gawd

late plinth
#

Whenever I change my User Agent, I am stuck in an infinite loop of Captcha checks from Cloudflare. So annoying.

north topaz
#

Same happen to me

bronze berry
#

Then don't use it making it useless

#

Maybe you might make it short

late plinth
safe slate
#

someone post that this afternoon, it's not from me :

#

let current_text = "";
let old = window.PubSub.publish;
window.PubSub.publish = function(code, obj) {

if (obj.flag !== undefined) {
    obj.text = `${obj.text}\n${current_text}`;
    current_text = "";
    delete obj.flag;
} else {
    current_text = obj.text;
}

old(code, obj)

}

#

put this code in console from you navigator

#

it allows you to remember the text before it crashes

bronze berry
late plinth
bronze berry
#

Well if you want find to another way plans. Oh well good luck for finding other ways. ¯_(ツ)_/¯

late plinth
chrome kettle
#

same

icy atlas
safe slate
#

here :

#

@icy atlas put the text here, and press enter

icy atlas
#

@safe slate Uncaught SyntaxError: Unexpected token '{'

safe slate
#

take from here

icy atlas
#

Okay it did work I'll let you know if i still get the error

#

Okay text didnt go away but the error still here so it stops writing

safe slate
#

ya

icy atlas
#

So no fix to dat? :l

safe slate
#

nop, just wait fix from dev

icy atlas
#

damn

#

Thanks g

quartz kestrel
raven jungle
#

yes

#

the devs need to fix it

raven jungle
untold viper
#

Same here

true wyvern
#

is there any chance it will fix itself?

quick pond
#

Not really, if it is because of ChatGTP Updating is cloudflare system to stop bots, then the website devs just need to add a bit of code that pings the cloudflare server, I asked the dev and he just said to wait for the official announcement.

true wyvern
#

ok

limber pine
#

how can i fix it?

quick pond
#

There's no real way to fix it, you can get ChatGPT to write shorter answers, but other than that, not much.

#

The website/app devs need to fix it, but it looks like theres no way to contact them, as they are seperate from the AI dev on github

limber pine
#

aaaaaaaaaaaaaaaaa

tired lance
# safe slate

How does this work? Does it copy the ai output to your clipboard ?

tribal copper
tired lance
tribal copper
#

how?

tired lance
#

tell it to write you a snake game or smth

true wyvern
#

I'll do it for him

tired lance
#

goodluck

tribal copper
tired lance
#

This is more than enough proof

tribal copper
#

exactly

tired lance
#

🙂

next lance
#

that code doesnt fix it , it just doesnt show anymore

safe slate
#

we never said that it fixes

#

but just keep the message before delete

stray ridge
bronze berry
#

And you know there is no ETA when fixes it issue is solved.

quick pond
quick pond
# tribal copper

Would you be able to ask it to write a 1000 word story about something? or something along the lines of "write a unity c# script that creates the game snake" that seems to always end in a network error for me.

jaunty geyser
safe slate
#

was on chatgpt-bugs channel end of this afternoon

bronze berry
#

Don't you know? bruh

#

Just wait like few days

limber pine
#

In safari is

tall jasperBOT
#

@plain beacon

Message from Jack P#4678 blocked by AutoMod

We're committed to maintaining a positive atmosphere and have expanded our AutoMod filters to help protect the community from disruptive words and topics. Thank you for your understanding.

plain beacon
#

Yeah the network error is painful

solid hare
#

It always starts off so well and then it just gets the error, so sad ;_;

dull gyro
#

It gives network error after it types for exactly 1minute, trying to figure out how to tell it to stop typing but having no luck, if anyone could help me do so?

#

At least we know the cause of "Network Error"

solar hemlock
#

unusable rn

#

"network error" everytime it gives me a long answer

jaunty geyser
#

unusable

solid hare
#

this looks promising.

#

aww. It was worth a try.

#

Is there any discussion onto when that's gonna be fixed? I ain't gonna meet my deadline for this homework, but it'd be great to know when I can actually use it again.

safe slate
#

Time to Google

raven jungle
#

;-; i asked 1 question and apparently if i try to ask a second time, that's too many requests

clear tartan
#

works fine for me

viscid plank
#

Its messed up for me too, rip

ashen niche
#

Im still getting the "network error" when the answer is to long, does anybody knows if this is gonna be fixed?

potent crown
#

I somehow managed to get it to work. I dont get the error anymore, it just stops and I need to say continue.

#

but I bet when I start a new thread, I get the error again. For now, he is creating a complete app for me. Rip devs

#

WOW, it worked for over an hour. As SOON as I typed the above I got network error wtf

clear tartan
#

what if you just set the max word count to something reasonable

potent crown
#

yes Im trying to do that right now with limiting to 40 seconds outputs

clear tartan
#

instead of the time it takes to output just limit the actual token length to below 4000 tokens (1 token = 4 characters)

#

thats what the api has as its limit so maybe that will work for you as well

glossy osprey
#

this is because we are using a demo

tall light
#

Is there an actual solution

quick pond
#

If anybody wanted to know, the mods know about network error, and are going to fix it probably within the next 2 days. RIP Students
#chatgpt-discussions message

tired lance
#

hope we get a solution soon

tranquil merlin
#

same here

tired lance
#

i guess we'll just have to code step by step

#

oh , i just finished a code without the error..try click spamming the copy button till the ai gives the final output..let us know if it works out on your end

tired lance
jaunty geyser
flat belfry
#

the devs are working as hard as they can to address server issues due to too many users, people aren’t sleeping and worked over the weekends

pearl leaf
#

When can we access to the premium version of ChatGPT because the free version is full of disconnection?

delicate anchor
#

is there any official here

quick pond
#

no

jaunty geyser
#

we need to collect signatures hahah

quick pond
#

lol

tired lance
quick pond
#

Its the ChatGPT app

#

that fix doesn't work btw

clever mason
#

same here

wild lake
#

When are they gonna solve this problem? Kind of sad and useless tool if it just crashing after 10 lines….

burnt helm
#

When using it, at certain point(20 lines) it just stops and then after 1 minute the program send me a network error

ember marlin
clever mason
jolly jackal
#

Bois I was going to use this to complete my class and I’m ducked now

#

I deserve it

quick pond
tired lance
potent pelican
#

Is it fixed?

tired lance
#

Try closing out the browser, and clearing cookies, and logging out and back in

limber pine
#

@quick pond It is solved?

tired lance
limber pine
#

Ok

#

In iPhone how?

#

@tired lance

tired lance
#

Oh I have no clue

next lance
#

Go to Settings -> Safari -> Advanced ( all the way down) -> Remove All Website Data

#

@limber pine

limber pine
#

ok

#

thanks

cobalt gull
#

i use Edge instead Chrome and it can fix

olive jackal
#

Sounds good, doesnt work

#

Same with edge

limber pine
tired lance
limber pine
olive viper
#

Its working for me now!

median void
#

Before I logged on, it notified me that there was increased demand at the moment. When I gave my prompts, the chat would generate an answer, stop midway, and display a network error. Any idea whether that's intentional or related to network issues? (I have a great internet connection and am asking questions about brief biographical data about prominent public figures)

tired lance
olive viper
#

No solution, just not getting the network errors anymore on long responses

tired lance
olive viper
#

I just waited. Ive had the problem since yesterday but as of 15 minutes ago everything was working

tired lance
#

Nice!

#

See guys

#

Patience goes a long way

high heart
#

Seems fixed for me. I no longer see "Network Error".

tired lance
#

Yea I rarely see it now

#

Either it stops after writing a sh*t ton of code and then I just type continue, or it just writes the entire thing out for me

high heart
tired lance
high heart
#

I actually had to specify which line I wanted it to continue from

quick pond
#

Network error is techinically fixed now! You just have to tell it to continue, so i guess thats cool

snow fossil
#

LMFAO everyone here has the network error because we tried to let AI code for us but failed

true wyvern
#

when will the world end?

paper gorge
#

not having network errors anymore. seems fixed! thanks devs!

shell oracle
paper gorge
#

didnt do anything special. just luck?

shell oracle
#

hmm

jaunty geyser
quick pond
true wyvern
#

yey life is good!

sharp glen
#

Hello friends, while answering my questions, it is interrupted and does not continue. How can I solve this problem?

high heart
#

Nooooooooooooooooo

quick pond
candid imp
#

For me the network error problem fixed

#

Try clear history and cache

rancid lava
tired lance
#

network error is fixed but still stops randomly

rancid lava
#

yea, u only need to tell him to continue with the code