Most voted "timeout" questions
25 questions
Sort by count of
-
5
votes3
answers2856
viewsWhat can cause file_get_contents to give "timeout" error?
I asked that question here, but hardly, because it is a problem that seems to be specific, the solution would be something that would be something generic. But it occurred to me in this question I…
-
4
votes2
answers2215
views -
3
votes1
answer653
viewsHow to hide a div with timeout in Angularjs?
I’m new at Angularjs and I’m getting beaten to solve simple problems. I have my controller mainAppControllers.controller('NomeCtrl', ['myservice','$rootScope','$scope', '$routeParams',…
-
2
votes2
answers420
viewsC# Web Forms - Missing Session
I have an application in Web Forms that stores the session when the user logs in, with a time limit of 21 minutes without using the application to expire the session: <sessionState timeout="21"…
-
2
votes1
answer173
viewsMysql - Problems changing the "max_execution_time" variable
I have a Mysql Server 5.7 installed on a Windows server, when I change the variable "max_execution_time" to 6000, when I run the query below with ODBC to confirm that the change was made: show…
-
2
votes1
answer673
viewsSet timeout on thread execution and save return value
Hello, I have a web service, with backend in java 7. At some point, the backend makes a broadcast RPC call to N servers that are listening. Except that there is no predefined timeout in the call, I…
-
1
votes0
answers77
viewsSession-timeout works on-premises and gives cloud error
Running the application locally timeout works, but when I put the application in the cloud I get this error message The requested resource is not available after time runs out. What I am doing wrong…
-
1
votes1
answer543
viewsVariable reading in C with timeout
Does anyone know how to limit the time the user can enter a value? Example: My program prints a value on the screen and the user has 4 seconds to type and enter, if what he typed is = to the printed…
-
1
votes2
answers2392
viewsHow to make setTimeout run "infinitely"
I need a function run every 2 minutes. I found in this link a solution to my need: Link The Code below, calls an Alert after 5 seconds while leaving the mouse stationary. Observing I put 5 seconds…
-
1
votes1
answer169
viewsFunction does not run without setTimeout
I’m having a problem executing a function by clicking on icheck. In case, the function is only called if I give a setTimeout 1 millisecond, less than that or without timeout the function is not…
-
1
votes1
answer432
viewsHow to remove time out? PHP
I’m using a cron to run a script that reads a txt file of 18 thousand lines and goes inserting in the bank, but is running at most a thousand lines, from nothing to, did not fall into any of the…
-
1
votes0
answers23
viewsTreat link drop with JPA Hibernate bank timeout
I need to treat fall link application with the bank in addition to keeping a low timeout, since the standard in my tests is 15 seconds. Fault: Caused by:…
-
1
votes0
answers21
views -
1
votes1
answer1544
viewsLog out and redirect user to ASP NET MVC login screen / C#
I am looking for a way to terminate my session and redirect the user to the login screen when my system der Timeout. I tried to use Session.Abandon() according to some examples I researched. But I…
-
1
votes3
answers415
viewsHow do I timeout and replay a command line in Python?
I have a request for information that simply does not receive information and stands still, so forward executed and I have the answer. Then, how to have the command line be canceled after a time…
-
0
votes1
answer223
viewsRequest timeout with Nginx, Unicorn and Rails
I have an application in Rails that runs with Unicorn in production. Some calls take a long time to process. I set the server to increase the timeout, so that the server does not respond with error.…
-
0
votes2
answers804
viewsProblem with timeout in classic Asp
I’m having a problem that after a normal user visualizes the comparative on the chart they need, after spending a few minutes if they click the "OK" button again without having touched anything…
-
0
votes1
answer230
viewstimeout to $http request (search for 5 seconds, if not found, returns 'error')
I am setting up a $http request for zip code, it happens that sometimes the API takes too long to return a reply, and the user gets stuck to proceed at checkout. function worked, but when I tried to…
-
0
votes1
answer33
viewsClose Activity if Idle
I have an app and I need Activity automatically close if idle, that is, if the user does not touch the screen for 30 seconds, the Activity automatically closes. While the user is using (tapping) a…
-
0
votes1
answer178
viewsHow do I set the call timeout of an EJB function?
At the end of a service my project has a function that takes an EJB from another project that is installed on the same server, and accesses one of its functions. My function that takes the EJB and…
-
0
votes2
answers32
viewsTimeout Connectiostring
I have a question about the Timeout value that can be passed in Connectionstring, this value is related to seconds or milestones? <connectionStrings> <add name="MyConnection"…
-
0
votes2
answers63
viewsClientdisconnected due to error: Timeout and Ready with no player
Hello, I have a connection problem in my multiplayer project. When creating a local match, everything seems to work fine, however, the console displays the following warnings when I build and create…
-
-1
votes2
answers847
viewsHow to "bypass" the Maximum Execution time of 30 Seconds exceeded in php?
I have a script that imports the properties of a real estate by an xml. When there are many properties, it gives timeout after 30 seconds (Maximum Execution time of 30 Seconds exceeded). Is there…
-
-2
votes3
answers327
viewsFatal error: Maximum Execution
I had an error running a code in Php Fatal error: Maximum Execution time of 30 Seconds exceeded $validade = mysql_query($sql) or die (mysql_error()); The code works perfectly. Except I get this code…
-
-4
votes1
answer319
viewsMysql queries always busy
I have a task cron which obtains remote data every 2 minutes, via webservice, by entering the values obtained in a database. At the end of each day, more than 50,000 records are created. The problem…