Adam Pietrasiak
Adam Pietrasiak

Reputation: 13224

XAMP stop php execution without server restart

Im using xamp for local php server. Is it possible to end execution of some really long script without restarting xamp php service?

Upvotes: 0

Views: 1896

Answers (2)

user2286243
user2286243

Reputation:

To set maximum execution time of a specific PHP page, use set_time_limit in your PHP page.

To set maximum execution time of all PHP pages at once, use max_execution_time in php.ini file.

Upvotes: 0

Jarek.D
Jarek.D

Reputation: 1294

Restarting Apache only might be quicker

Upvotes: 1

Related Questions