From 9cd913a2dd94474588857fdea6bcb516d0d4557a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 12 Nov 2008 13:15:33 -0500 Subject: [PATCH] some memory and execution time management darcs-hash:20081112181533-5ed1f-d1c2d3ff28153afaf640eb127e9bcf4867952d36.gz --- scripts/fixup_inboxes.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/fixup_inboxes.php b/scripts/fixup_inboxes.php index 415dea4dc7..8436106ed9 100755 --- a/scripts/fixup_inboxes.php +++ b/scripts/fixup_inboxes.php @@ -24,6 +24,11 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { exit(); } +ini_set("max_execution_time", "0"); +ini_set("max_input_time", "0"); +set_time_limit(0); +mb_internal_encoding('UTF-8'); + define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); define('LACONICA', true); @@ -42,4 +47,6 @@ while ($user->fetch()) { 'FROM subscription JOIN notice ON subscription.subscribed = notice.profile_id ' . 'WHERE subscription.subscriber = ' . $user->id . ' ' . 'AND notice.created >= subscription.created'); + $inbox->free(); + unset($inbox); }