0
votes
0answers
22 views

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 ...
2
votes
0answers
18 views

about php safe_write timeout

all My error case is a normal web download service, and web server is lighttpd, and use php-fpm to process download request like this: $fp = fopen('php://output', 'w'); fwrite($fp, $data); But ...
-1
votes
1answer
31 views

What kind of computation can php handle? [closed]

So, just curious. I'm trying to write a contour mapping application. I've tried a lot of different API's and php libraries, but I couldn't find anything suitable. So, I decided to write my own. I'm ...
-1
votes
0answers
24 views

Parsererror with large script jQuery json

I have a problem with this script: http://jsfiddle.net/kVekG/ $.ajax({ url: "<?=$pg?>.php", contentType: "application/json", type: "GET", dataType: "json", timeout: 80000, // I chose 8 ...
0
votes
1answer
70 views

how secure is it to use client side idle timer / how do big web app developers do it?

I'm building a PHP based web app and have implemented a session variable based login method. Before anything is loaded, this method clears the "logged in" state of all those that have spent X amount ...
1
vote
1answer
32 views

GAE PHP timeout setting

My PHP app on GAE shows error logs: PHP Warning: file_get_contents(http://cx.xaa.cc/checkgs.asp): failed to open stream: Request deadline exceeded in ...
0
votes
2answers
40 views

Delay php script without occupying connection

I want to ask if anyone knows a way I can delay a php script without actually occupying a connection slot all the time. I am not completely aware of this but I was told that apache has a limit of ...
0
votes
0answers
16 views

MODX timeout limit

I have a script which generates 3 different image sizes from a library of images and as you may guess, it takes a while to do its job-approximately 5 minutes for 400 images. The default maximum ...
0
votes
1answer
41 views

PHP - Continue Execute Another Looping After Execute Looping

I have thousand email address in my database. I want to send a message to them. But every time I send it show error "500 Internal Server Error. Request Timeout. This request takes too long to process, ...
1
vote
2answers
53 views

socket_connect does not timeout

I am using sockets to send data to a server that may not be responding. So I am trying to define a timeout by using this solution in SO. Make PHP socket_connect timeout socket_set_option($socket, ...
0
votes
1answer
42 views

Script output after timeout command

i use symfony (php framework) task class to create cli scripts. Currently i wrote this kind of script: #!/bin/bash timeout 3600 ./symfony pparse:prices But there is no output, I need that script ...
0
votes
0answers
32 views

Long Php script + Ajax Post (duplicated?)

I have a problem with a php script triggered by an ajax POST that makes sql inserts in a loop. The ajax POST sends a time range (startDate and endDate). The php script inserts a row for each daily ...
0
votes
1answer
75 views

SMTP Timeout. Using our own server and swiftmailer. How can I increase the timeout? Error included

I'm looping through a list of customers, and sending files to them. The page often times out. Here is the exact error generated, minus my domain name. Fatal error: Uncaught exception ...
0
votes
0answers
43 views

Process each line separately to stop timeout in PHP cURL script

I am getting a timeout in my checker script. Is there a way I can get it to stop timing out? Also I would like it to post each echo line by line instead of waiting for script to end. Here is my code: ...
0
votes
1answer
75 views

HTTP/1.1 504 timeout response

I run a program which downloads data from a site and save it in a folder with file_get_contents. Simultaneously I insert the data (title etc) in my mysql database. Suddenly one day my program stopped ...
2
votes
1answer
42 views

Timeout fatal error handling

I need to send 500 emails and every email I wish to assign a time limit. Currently, I run an Ajax call to send the email. I need to have an answer to the client Javascript for each email and so fill ...
0
votes
0answers
36 views

How does php calculate execution time?

I am using a cloud hosting. The php script run time varies in difference Vertical scale setting: 10s: 128MB - 200Mhz 1s : 2Gb - 3 Ghz But I feel the execution time in both case less than 1s, ...
1
vote
0answers
36 views

PHP computation bottleneck. What next? [closed]

I have built an app in PHP which implements a data mining algorithm across a db. I am already using caching for all my db calls in APC, and believe the code is pretty well optimized. The problem ...
0
votes
0answers
71 views

PHP PDO SQLSRV - Can't set LoginTimeout

I'm using PHP/PDO/SQLSRV to try to connect to a SQL database to see if the box is up and ready to receive DB commands. I want to limit the timeout to 15 seconds, but I'm unable to make the change to ...
4
votes
1answer
142 views

creating an automatic logout page in php

i am trying to write a automatic logout script which seems to work but not to my expectations,i do not know what exactly im doing wrong,i want to put the timeout.php on every page so that when the ...
0
votes
1answer
44 views

PHP: what happens if required script stops because of timeout

Scenario: a php script with som pre-code, a require xxxx.php; and some postcode. Wanting and believing that because of using require and not include, the script will stop at the "require" statement if ...
0
votes
1answer
58 views

When I link to my PHP file on my webserver, it will not load, but when I link to it on local WAMP server it works perfectly

I have build a website using jQuery, jQueryMobile, and HTML5. When I link to a php page stored in my local WAMP test server, it works perfectly fine, but when I link to it on my web server, it will ...
0
votes
0answers
125 views

PHP Gateway Time-out error handling

I am writing error free script and other script causing error, (both are same except 1 thing) function test_function($errno, $errstr, $errfile, $errline){ echo "<p>$errno, $errstr, ...
0
votes
1answer
72 views

PHP ADOdB SQL query times out

Using ADOdb to access MS SQL Server in a database intensive PHP application. A few queries and stored procedures run longer than 30 seconds and ADODB throws an exception for a query timeout. There is ...
0
votes
1answer
88 views

PHPExcel Timeout occur

Please help me for the the problem exporting large data to excel format xlsx. i m exporting almost 45000 records at a time to single file and it timeout without saving file. the mysql select query is ...
0
votes
1answer
24 views

Timeout on “ON DUPLICATE KEY UPDATE”

My query was just fine but i needed to check if there are duplicates on the ID and date/time field so i used mysqli_query($link, " INSERT INTO wsmdata VALUES ('', ...
0
votes
1answer
59 views

simple PHP script with sleep function not working, Browser prompt to download .php file

When I execute following php file (after some time) browser will ask to download file <?php ini_set("max_execution_time", 0); set_time_limit(0); for($i=0;$i<10;$i++){ echo ...
2
votes
2answers
88 views

PHP Sessions expiry time - keeping session alive for a specific number of minutes/hours/days

I have a site that creates a Session for shopping carts. $_SESSION['cart']=array(); It seems as if the server automatically kills the session after X time of inactivity, I assume this is set in ...
0
votes
2answers
56 views

PHP script (algorithm) - only loops till a certain iteration after which it stops

I am running an algorithm in PHP which has a lot of data involved. All the processing happens within a nested for loop. Strangely, the outer for loop stops working after 'X' number of iterations ...
0
votes
1answer
79 views

AWS SDK PHP (2) cURL Timeout Security Check

Having some trouble with this code: $ec2 = Ec2Client::factory(array( 'AWS_KEY' => AWS_KEY, 'AWS_SECRET_KEY' => AWS_SECRET_KEY, 'region' => 'us-east-1', )); echo ...
0
votes
3answers
91 views

PHP Session ID - how long is a SID valid? [duplicate]

Theoretically, if a PHP session ID is stored in a cookie that has a lifetime of 365 days, will the session ID resume the right session data on day 365 or will the related session data be timed ...
0
votes
2answers
83 views

Logout inactive user

I have the following code on my website: session_set_cookie_params(7200, '.website.com', '', false, true); If I browse my website, sometimes I will be logged out of my website after the two hours. ...
0
votes
0answers
110 views

500 Internal Server Error When Uploading Small Image

What could cause a 500 Internal Server Error when uploading an image? I have a test image that is 700kb. Half the time it uploads it half the time it doesn't. I have seen a few similar questions here ...
1
vote
0answers
117 views

Query works in PgAdmin but not in CakePHP

I have this query (PostgreSQL): https://gist.github.com/patrickmaciel/74c72cdf1984bdcde804 It's works in PgAdmin, EMS Client, Navicat, Postgres Command Line, whatever. I test this query in 2 versions ...
0
votes
1answer
277 views

cURL timeouts from some sites, works perfectly on others [closed]

Im trying to fetch the source code of a blog. It does not matter if I try from PHP or from the command line. timeouts on both. Also tried get_file_contents() but same problem Problem When I try ...
0
votes
2answers
144 views

How to manage PHP odbc_exec timeout?

I've got a command-line PHP script that connects to SQL Server 2005 using an ODBC connection. It uses odbc_exec() to execute a stored procedure which may take a while to process, and I don't want it ...
0
votes
0answers
59 views

Facebook-PHP-SDK Timeout Error

I have a facebook app that does various things with Facebook. Everything usually works fine, but today I tried it and it times out at this line: $facebook = new Facebook(array( 'appId' => ...
1
vote
1answer
101 views

FTP Timeout for file_get_contents & file_put_contents

I am trying to append files on ftp server using file_put_contents("ftp://".$ftp_user_name.":".$ftp_user_pass."@".$ftp_server."/".$destFile, $outputStr, FILE_APPEND) This works fine, but it takes a ...
1
vote
2answers
39 views

Is there a resource/server that times out for testing? [closed]

I'm trying to recreate a problem that occurs when the source of file_get_contents times out. I'm attempting to write some PHP to check for this and display an error message within the site when this ...
0
votes
2answers
104 views

how to prevent server to block execution on long time running script

i have a big script written in php, which should import a lot of informations in a prestashop installation, using webservices, this script is written in "sections" I mean, there is a function that ...
0
votes
1answer
53 views

On PHP Server, how to get final search page content after a long wait?

I searched a lot of places, but couldn't find solution. What I want to do is: submit a form on PHP server to another server, the request is to search some results back; The search will take several ...
0
votes
3answers
107 views

How can I speed my php loop to finish before server times out?

Please bear with me, as I am a bit new to this. I have a page that calls another page after a form is submitted. The new page contains a lengthy php loop which runs before the page is displayed. The ...
3
votes
1answer
129 views

PHP 5.4 times out calling closure

I was just mocking up an intercept class I am working on. Idea is you instantiate the class through the Intercept class and then use that object as if it was the class you are intercepting. A ...
0
votes
1answer
314 views

jQuery ajax call never finishes (success and error callbacks are not fired)

I've an ajax request to the server and I only need to know when it finishes to redirect the user to a second page. It is working most of the times but if the server takes too long to answer (e.g. 10 ...
0
votes
1answer
56 views

Internal server error when user's IP changes (probably has something to do with PHP session file locking)

I have a website written in PHP. One of the users is in a building where they have two internet connections with two ISP's, but one network. So, any computer on the network may connect through either ...
0
votes
2answers
67 views

The best way to have a user log in in expire?

I am exploring a potential in-house content delivery system where we have to keep track of student time-on-task. As long as the student is interacting with the page, there is no problem. If the ...
0
votes
2answers
45 views

PHP set_time_limit and then reset database changes

I have an API which is used by a mobile app to create user profiles. It seems that occasionally the app is timing out and displays an error message but the server continues to create the profile. The ...
0
votes
1answer
170 views

PHP Script hangs even though max_execution_time & IIS7 Connection Timeout is set

I'm experiencing a very strange problem with my PHP script "hanging" even after the background processes have finished running. I am running PHP 5.3, Windows Server 2008 R2, IIS7 with Tomcat Apache ...
0
votes
1answer
82 views

Query timing out in php with sybase

I am puzzled about a recent problem I'm getting, there's a query that has always work before and started acting up recently. It is timing out after 60 seconds. It is a very heavy query, however worked ...
0
votes
3answers
140 views

Apache throwing 500 after 30 seconds

I'm running Apache2 and PHP5 on a dedicated VPS. I have a script that should finish anywhere from 20-50 seconds. It works just fine, but if it takes over 30 seconds due to the rows it selected, it ...

1 2 3 4 5 8