From 0f1a34a5cea5c57876d95ccc855185413365ea25 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Mon, 2 Jun 2008 21:26:34 +0000 Subject: [PATCH] This is a lousy hack, but it may help prevent some of the out-of-sync errors reported by users that try to (for instance) add a node, but get no indication of failure b/c the operation has timed out, but later the node will be added, but without a node network. --- php/header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/header.php b/php/header.php index 5172894..7fbe4da 100644 --- a/php/header.php +++ b/php/header.php @@ -117,7 +117,7 @@ class PLCAPI curl_setopt($curl, CURLOPT_HTTPHEADER, $header); // Set some miscellaneous options - curl_setopt($curl, CURLOPT_TIMEOUT, 30); + curl_setopt($curl, CURLOPT_TIMEOUT, 180); // Get the output of the request curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -- 2.43.0