Questions tagged [max-execution-timeout]
20 questions
3
votes
1 answer
What is php max_execution_time actually measuring?
I have a web page which has a button on it that when clicked executes a single php function.
When a user clicks it, it takes 51081ms to return a page. 51376ms of this is something that's classed as 'Waiting' by the Network tab in my Firefox…

Jordan D
- 718
- 7
- 21
3
votes
1 answer
PHP max_execution_timeout is not evaluated
I am running PHP 7.0.22 and have a problem while trying to set the max_execution_timeout option inside a PHP script. max_execution_timeout is set correctly but it is not taken into consideration by PHP:

tonix
- 6,671
- 13
- 75
- 136
1
vote
1 answer
Limit the duration of the call to external scripts
I am using Symfony to talk to the Office365 mail server, by calling a Symfony command, in a cronned process (every minute).
Apparently, occasionally something in that communication gets stuck and my php script keeps running - even after the next…

userfuser
- 1,350
- 1
- 18
- 32
1
vote
0 answers
Why do I get an error that exceeds the maximum runtime when I use neo4jphp to manipulate the neo4j library in PHP?
I'm developing a website with thinkphp where I'm going to do an excel file to bulk import data into the neo4j library.Before adding data to the neo4j library, I need to check the correctness of the data and then create nodes into neo4j node by…

hucas
- 21
- 2
1
vote
2 answers
php function perform very slow over large chunk of data and output. How to make it fast without changing php.ini or max_execution_server setup
I have large indexed array where element of array can vary from 1 to 2*10^5 and php function goes out of Max_execution_timeout. how to make it fast or make it work properly without making changes in any other document directly (if there is a way to…

jay suthar
- 79
- 7
1
vote
4 answers
About max execution timeout
I have some question on server response max execution timeout.
If, I called server API to running something huge and not able to finish within time limit set in server php.ini max_execution_time config, will the process in server still continue to…

Yu Yenkan
- 745
- 1
- 9
- 32
0
votes
0 answers
Need help changing Max_Execution_Time in phpMyAdmin, I get #1227 - Access denied
phpMyAdmin will not allow me to change the Max_Execution_Time from 0 to 600. Whenever I try I receive the message "#1227 - Access denied; You need (at least one of) the SUPER privilege(s) for this operation. enter image description here
I am using…

Joshua Zammett
- 9
- 1
0
votes
1 answer
How to solve Maximum execution time of 60 seconds exceeded in Laravel without changeing into php.ini
I have a problem with my code where I have to export CSV which has more than 100,000 data.
But I am getting error like "Maximum execution time of 60 seconds exceeded".
I can not access to php.ini. Is it possible to to solve the issue without…

Md. Shamvil Hossain
- 340
- 6
- 24
0
votes
0 answers
Resolution to keep Mysql production server safe from Long running queries
Mysql: 5.7 on AWS RDS
On our production server some queries are running so long.
show processlist output
Here this select was running from 1278013 seconds. We have given the production read access to multiple users and even to the customers and…

Rdba
- 3
- 3
0
votes
0 answers
php 'Maximum execution time' analyse place of processing
I'm looking for a possibility to find out, where in the complex coding the error "Fatal error: Maximum execution time of 30 seconds exceeded" has occured. I'm interested in backtrace (call stack) of the place, where the coding was canceled. I've…

Annie W.
- 328
- 4
- 22
0
votes
0 answers
setting max execution time works in some functions and not in others, codeigniter
Been a long time since I've been here but I'm stumped on this one. Unclear if this is a codeignter thing or not but I have this function that pulls a lot of data and takes longer then 60seconds. In dev it allows me to go over 60 seconds but on…

Dylano236
- 305
- 3
- 15
0
votes
4 answers
Google app script exceeded maximum execution time
I am getting the error "exceeded maximum execution time" on running the below script. trying to run a cron on my website and each url takes time to process in my website which leads to exceeding the time limit. Once url processed in the website it…

Nisi t
- 13
- 6
0
votes
1 answer
PHP 7.4.8 max execution time for specific script only
first of all: sorry if this has already been answered. I made multiple searches and tests, but couldn't find a real answer to my question (some answers but for <7.0.0).
Issue: I would like to increase the max execution time for a given script (let…

Mtxz
- 3,749
- 15
- 29
0
votes
1 answer
PHP max execution time exceeded by far
I wonder if there's a way to change the maximum execution time except in the php.ini, because of having issues with scripts taking alot of time to be executed.
I wanted to force a termination via max execution time and set it to values around 30s.…

aphprentice
- 11
0
votes
0 answers
PHP server only run 300 seconds
I have a vps server, and set the max_execution_time as 0 in whm and cpanel, but php crawl script just only runs 300 seconds, even though I set the set_time_limit as 0 or 1000.
ignore_user_abort is also the true.
Where is the problem? Is it the…

CristianR
- 373
- 4
- 8