Questions tagged [request-timed-out]

83 questions
1
vote
0 answers

Server timeout waiting for the HTTP request from the client

I do a small for loop in PHP on my localhost machine, it contains sleep(60) to echo some text every 60 seconds .. but before the first loop finishes, I got an error in the browser that says: Request Time-out Server timeout waiting for the HTTP…
JAHelia
  • 4,684
  • 14
  • 52
  • 102
1
vote
2 answers

PHP Uploading Multiple files always gives me timeout error

Ok, I don't quite understand why, but no matter what I seem to set in PHP's ini_set function, I am unable to upload multiple files or the files that I'm uploading are too big... I don't understand it. Here's what I am setting so far within the…
Solomon Closson
  • 5,592
  • 10
  • 54
  • 106
0
votes
0 answers

Heroku H12 Error, Request Timeout, Status 503

I have a Nodejs Web application with postgresql(psql) database and is deployed in Heroku Platform. The web application is working properly in my localhost with the local database and psql url, all the database operations are executed properly. But…
0
votes
1 answer

Getting 503 error on some endpoints after restarting heroku server (Ruby on Rails)

I am stuck in wired situation. I deployed my code around 7-8 days ago on heroku. The application was working fine and all micro services were working fine. But on Monday night server was taking too much memory so after some time i restart my server.…
0
votes
0 answers

Saml okta smart card authentication timed out after 30 seconds after selecting certificate and irrespective of pin entry

Saml okta smart card authentication request timed out after 30 seconds after selecting certificate and irrespective of pin entry (auth/cert/prinaryAuth)
0
votes
1 answer

DNS resolves correctly using command line tools but fails on browser

Dig, wget, nslookup and curl commands work perfectly for a specific URL I have pointed to another server less than 24 hours ago. Problem is, it just refuses to be resolved by the browser (Chrome, Safari and Firefox). The strangest part is that it is…
StackMaster
  • 169
  • 1
  • 1
  • 16
0
votes
0 answers

How to resolve HTTPSConnectionPool(host='ads.google.com', port=443): Read timed out. (read timeout=3600) error?

I have been using a python script to download a report from google AdManager using a saved query. However, when I try to run the script to download the report I face the timeout error. I tried to find a solution for it but haven't been able to…
0
votes
0 answers

What is the best approach to implement a background job in a MERN app?

I made a small MERN app where users can upload images, and I've used multer for that. While it works fine in development, after deploying to heroku, every time I try to upload an image I get an error with code=H12(Request timeout), and it says that…
0
votes
0 answers

Node oracledb: NJS-040: connection request timeout. Request exceeded queueTimeout of 60000

I have an nodejs application that using oracledb module to connect many oracle database. This application is monitoring all databases in one place. But there is a problem. I am creating a file to connect to oracle db and execute sql's. I am using…
Emrah
  • 3
  • 2
0
votes
0 answers

How to get rid of error: connection timed out

I am using angular v10 and getting the error: Connection timed out. To resolve this, we are planning to do the below: The front end will trigger a request to the API layer which will give job id in response. On receipt of the Job Id, the front end…
kirti
  • 47
  • 7
0
votes
2 answers

Google Sheet Error: Service Spreadsheets timed out while accessing document with id

I get this error "Service Spreadsheets timed out while accessing document with id ..." every time I run a very simple code, in which I am basically copying data from one google sheet to another using getValues() and setValues(). I don't think it is…
0
votes
1 answer

Uploading and Playing large videos. HttpRuntime tag settings Combination. Asp.net4.0 , C#

net page to upload a large file and a generic handler to play these large wmv video files of size which can be upto 150 MB's. I have the file content stored in varbinary type in SQL Server 2005. I have set following settings in httpRuntime in…
AbhiRoczz...
  • 254
  • 2
  • 13
0
votes
0 answers

Why am I constantly getting H12 error code AKA 503 status code on Heroku?

Everything works fine while I was in development mode and now when I uploaded my app to heroku I keep getting this error, and the only thing it says is that is a Request timeout. heroku[router]: at=error code=H12 desc="Request timeout" method=GET…
0
votes
2 answers

How to use Angular Http Interceptors to handle request Time out in Angular

My get request of one BACKEND API i am calling is getting more than 2 minutes.And i am trying to handle this using Angular Http Interceptors.When i added "timeout": 360000 in proxy.config my problem solved to some extent.But still sometimes it…
0
votes
1 answer

Flask form POST request not able to handle data

I am trying to execute a form post request for a user management system I have created. I have sessions enable on a flask backend server. The request is a profile update of a user, I have two conditions this can be executed 1- When the user is…