From 62279bb901c6180b0939cff882e69d218ab2206c Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 14 Dec 2005 04:10:28 +0000 Subject: [PATCH] Increase URL length to 4k, only IE limits the length of the URL to 2083 bytes (http://support.microsoft.com/default.aspx?scid=KB;en-us;q208427). --- php_http_std_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_http_std_defs.h b/php_http_std_defs.h index 7f65f84..4b5f44d 100644 --- a/php_http_std_defs.h +++ b/php_http_std_defs.h @@ -96,7 +96,7 @@ typedef int STATUS; #define HTTP_DEFAULT_CACHECONTROL "private, must-revalidate, max-age=0" /* max URL length */ -#define HTTP_URL_MAXLEN 2048 +#define HTTP_URL_MAXLEN 4096 #define HTTP_URI_MAXLEN HTTP_URL_MAXLEN /* def URL arg separator */ -- 2.30.2