Under update_status and checking the status no update error but when you click on run cron. this error will pop up: warning: set_time_limit() has been disabled for security reasons in /home/www/(domain)/includes/common.inc on line 1982.

Any chance of fixing this error from this module or does the set_time_limit disable make this module unworkable?

Comments

merlinofchaos’s picture

Status: Active » Closed (won't fix)

common.inc is core Drupal, not this module. Looks like you might have an edge case that's causing cron to actually fail on your system, because set_time_limit is disabled but you're NOT in safe mode.

This means that pretty much *anything* that uses cron isn't going to work on your system.

To get this work you can probably just comment out the line (includes/common.inc 1982) for now, and file a bug against the Drupal project -- but I don't know that it'll get much attention unless there's some easy way to tell ahead of time if set_time_limit() is disabled.