summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-08-30 22:38:44 -0400
committerEvan Prodromou <evan@prodromou.name>2008-08-30 22:38:44 -0400
commit902ba87a8bba348be248d2b01187232c83a4c657 (patch)
treec55bf676878ad0acc5ad2e23f3ea29afca2019e2 /scripts
parented2aeecfddcbf02a9183a5b5b29262ebda4c27fe (diff)
add some sanity-check stuff for long-running daemons
darcs-hash:20080831023844-84dde-b8c9ce5f38d33c7fd8a42dc0d3640d500e653011.gz
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ombqueuehandler.php3
-rwxr-xr-xscripts/publicqueuehandler.php3
-rwxr-xr-xscripts/smsqueuehandler.php3
-rwxr-xr-xscripts/xmppconfirmhandler.php3
-rwxr-xr-xscripts/xmppdaemon.php3
-rwxr-xr-xscripts/xmppqueuehandler.php3
6 files changed, 18 insertions, 0 deletions
diff --git a/scripts/ombqueuehandler.php b/scripts/ombqueuehandler.php
index fa3446853..da089feab 100755
--- a/scripts/ombqueuehandler.php
+++ b/scripts/ombqueuehandler.php
@@ -62,6 +62,9 @@ class OmbQueueHandler extends QueueHandler {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$id = ($argc > 1) ? $argv[1] : NULL;
diff --git a/scripts/publicqueuehandler.php b/scripts/publicqueuehandler.php
index 7176c345b..bbb95f1fc 100755
--- a/scripts/publicqueuehandler.php
+++ b/scripts/publicqueuehandler.php
@@ -93,6 +93,9 @@ class PublicQueueHandler extends QueueHandler {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$resource = ($argc > 1) ? $argv[1] : (common_config('xmpp','resource') . '-public');
diff --git a/scripts/smsqueuehandler.php b/scripts/smsqueuehandler.php
index aa07ca46d..9968a7861 100755
--- a/scripts/smsqueuehandler.php
+++ b/scripts/smsqueuehandler.php
@@ -52,6 +52,9 @@ class SmsQueueHandler extends QueueHandler {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$id = ($argc > 1) ? $argv[1] : NULL;
diff --git a/scripts/xmppconfirmhandler.php b/scripts/xmppconfirmhandler.php
index d2dbe4abc..ff166485d 100755
--- a/scripts/xmppconfirmhandler.php
+++ b/scripts/xmppconfirmhandler.php
@@ -176,6 +176,9 @@ class XmppConfirmHandler {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$resource = ($argc > 1) ? $argv[1] : (common_config('xmpp', 'resource').'-confirm');
diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php
index 77cfc1963..37d638b02 100755
--- a/scripts/xmppdaemon.php
+++ b/scripts/xmppdaemon.php
@@ -306,6 +306,9 @@ class XMPPDaemon {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$resource = ($argc > 1) ? $argv[1] : (common_config('xmpp','resource') . '-listen');
diff --git a/scripts/xmppqueuehandler.php b/scripts/xmppqueuehandler.php
index 5015274c6..8e86fe9bb 100755
--- a/scripts/xmppqueuehandler.php
+++ b/scripts/xmppqueuehandler.php
@@ -98,6 +98,9 @@ class XmppQueueHandler extends QueueHandler {
}
}
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
mb_internal_encoding('UTF-8');
$resource = ($argc > 1) ? $argv[1] : (common_config('xmpp','resource') . '-queuehandler');