https://issues.apache.org/bugzilla/show_bug.cgi?id=57212
--- Comment #5 from Jeff Trawick <[email protected]> --- >define MAX_STRING_LEN 256 That's the definition in a couple of utility programs. It would need to be edited in httpd.h to be larger than 8192. It is probably less risky to keep MAX_STRING_LEN and HUGE_STRING_LEN equivalent, so /* old value: #define HUGE_STRING_LEN 8192 */ #define HUGE_STRING_LEN 10000 10000 assumes that your cookies aren't so big. You'd have to recompile all of httpd, mod_fcgid, and any other third-party modules that use HUGE_STRING_LEN. And I'm not sure if it would all work. Perhaps you can reduce the size of your cookie. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
