View Single Post
Old 02-13-2006, 11:14 AM   #3
alisan
Green Mole
 
Join Date: Dec 2005
Posts: 3
Thumbs up

SOLUTION:

I changed the order of COOKIES strings in header request.
I really do not know why it causes problem, but everything is OK now ...


In function 'phpDigMakeCookies', change concat order.

// $cookiesSendString .= "Cookie: ".$cookieString['string'].END_OF_LINE_MARKER;
$cookiesSendString = "Cookie: ".$cookieString['string'].END_OF_LINE_MARKER.$cookiesSendString;
alisan is offline   Reply With Quote