Hello everyone.
This may seem as a silly question, but I went through the
documentation and it wasn't explicit on this issue, at least for me.
Let's say that I'm on an 128kb/s upload. I need to upload an 100mb
file through a POST. PHP has, by default, 90 seconds execution limit
time.
So, the qu
Andy Pieters wrote:
Hi all
We develop our software with built-in debug handlers that are very talkative.
Each class registers itself to a central debug handler. When a conditional
define NODEBUG is set, that debughandler just does a return null but
obviously it takes time to perform that cal
Hi all
We develop our software with built-in debug handlers that are very talkative.
Each class registers itself to a central debug handler. When a conditional
define NODEBUG is set, that debughandler just does a return null but
obviously it takes time to perform that call.
We are thinking of
[EMAIL PROTECTED]
> Sent: Wednesday, December 01, 2004 7:02 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Execution time?
>
>
> Best groupmember,
>
> How do I find the execution time for a php-script on a webserver? ms?
>
> --
> - Best Of Times
> /Peter Lauri
Best groupmember,
How do I find the execution time for a php-script on a webserver? ms?
--
- Best Of Times
/Peter Lauri
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Jul 14, 2003, "Marek Kilimajer" claimed that:
|I use this function:
|function echo_pt($add='') {
| static $pt = 0;
| if($pt==0) {
| $pt = miro_time();
| return;
| }
| $time_start = explode(' ', $pt);
| $time_end = explode(' ', microtime());
| $parse_time = number_format(($
I use this function:
function echo_pt($add='') {
static $pt = 0;
if($pt==0) {
$pt = miro_time();
return;
}
$time_start = explode(' ', $pt);
$time_end = explode(' ', microtime());
$parse_time = number_format(($time_end[1] + $time_end[0] -
($time_start[1] + $time_start[0]
I use this:
function getmicrotime()
{
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec*1000);
}
// Start script
$time=getmicrotime();
...
...
...
// Script finished
echo "Page was generated in
".sprintf("%01.7f",((getmicrotime()-$time)/1000))." seconds.";
Hi all,
We are "debugging" some web applications to try to determine where the
problems with long execution time is.
Is it possible to log the execution time of each script executed to a
logfile? The PHP processes are run as FastCGI under Zeus.
Regards
--
Lasse Laursen · VP, Hosting Technology ·
Edit your php.ini, change "max_execution_time" to something greater than
30.
Mark
> -Original Message-
> From: Pong-TC [mailto:[EMAIL PROTECTED]]
> Sent: Friday, October 04, 2002 2:44 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Execution Time
>
>
&g
Hello All
I have a problem with the execution time. I use PHP to update database,
but it could not perform well due to the limited execution time. How
could I extend the execution time? Here is my error:
Fatal error: Maximum execution time of 30 seconds exceeded in
d:\inetpub\wwwroot\cgi-bin\
> I have a php script that runs every 30 minutes. It takes the contents of a
> directory (which is constantly being updated) and dumps them into a mysql
> database. Recently this directory has become increasingly large and the php
> script only updates a portion of it before it stops execution.
>
2:03 PM
Subject: [PHP] execution time
>
> I have a slight problem and was wondering if anyone could help.
>
> I have a php script that runs every 30 minutes. It takes the contents of a
> directory (which is constantly being updated) and dumps them into a mysql
> database. Recentl
Sent: Friday 27 July 2001 ?. 3:03 PM
Subject: [PHP] execution time
I have a slight problem and was wondering if anyone could help.
I have a php script that runs every 30 minutes. It takes the contents of a
directory (which is constantly being updated) and dumps them into a mysql
d
I have a slight problem and was wondering if anyone could help.
I have a php script that runs every 30 minutes. It takes the contents of a
directory (which is constantly being updated) and dumps them into a mysql
database. Recently this directory has become increasingly large and the php
script
15 matches
Mail list logo