user201349
user201349

Reputation: 31

How do you get a Cronjob executing a PHP script to run longer than 30 seconds?

How can I rewrite this into a cron that will run every day for longer than 30 seconds? Also, do I need to edit the .htaccess or php.ini file in the cron.php directory to say something? Over the browser it runs just fine for longer than 30 seconds; over the shell, it runs just fine too. But as a cron set task, it dies after 30 seconds. I'm on 1and1 share hosting.

0 12 * * * php5 /this/is/the/file/cron.php

Upvotes: 3

Views: 5979

Answers (6)

Yevgeniy Afanasyev
Yevgeniy Afanasyev

Reputation: 41440

You don't need to set a higher max_execution_time if you use PHP CLI:

CLI SAPI default value for "max_execution_time" is set to unlimited.

https://www.php.net/manual/en/features.commandline.differences.php

Upvotes: 2

sole
sole

Reputation: 2077

You could also use ini_set('max_execution_time', 60)

But as the manual page says, in some cases (i.e. running in safe mode) this will have no effect at all: http://uk.php.net/manual/en/info.configuration.php#ini.max-execution-time

It could also be possible that the php.ini for client line has different max execution values than for the browser. I have seen it sometimes.

Upvotes: -1

Joe
Joe

Reputation: 610

ini_set('max_execution_time', 600);

Add this to the top of your php file and it will run for 600 seconds. Anything more is not recommended but you can have a go if you want.

Upvotes: 2

Brendon-Van-Heyzen
Brendon-Van-Heyzen

Reputation: 2493

I would just use wget http://path.to.myscript.php

If it's dying after 30 you may need to set max_execution_time = 60 in your php.ini to allow the script to run longer than 30 seconds.

Upvotes: 0

Lars D
Lars D

Reputation: 8573

Use this syntax to start php:

php -c /path/to/another/php.ini /this/is/the/file/cron.php

Then you can specify a different timeout (or no timeout) in a different php.ini file.

Upvotes: 2

coreyward
coreyward

Reputation: 80128

There are several things that could be terminating your script. One could be the maximum execution time set in the php.ini file. If that's the case, you can override it in your script with set_time_limit(0); where zero means no limit and any number greater than zero is the number of seconds to allow the script to run for before being terminated. It's important to note that this time does NOT include the time it takes for the browser to make the request, so file upload time wouldn't count here.

If you're in a shared hosting environment (like Dreamhost), they have process watches that will kill off any PHP process after a set time limit. You cannot get around these. You would need to contact the hosting provider to see what you need to do to get access to run the script for longer (for Dreamhost, they want you to have a they're PS offering).

Upvotes: 3

Related Questions