ID: 26853 User updated by: nytral at spamcop dot net Reported By: nytral at spamcop dot net Status: Bogus Bug Type: cURL related Operating System: win32 and linux PHP Version: 5CVS-2004-01-09 (dev) New Comment:
I found the issue, it is with the domain= part of the Set-Cookie header. As soon as you put something in it which is not the FQDN of the remote host, the cookie won't be stored, even if it's valid, i.e Set-Cookie: test=test; domain=php.net; path=/ I see in curl changelog for 7.10.7: "cookie parser now only requires two dots in cookie domain" Can you build something on win32 linked with a more recent curl version to see if it helps? thanks. Previous Comments: ------------------------------------------------------------------------ [2004-01-11 19:20:41] [EMAIL PROTECTED] Can not reprduce. (works fine with e.g. http://www.php.net/) ------------------------------------------------------------------------ [2004-01-09 10:16:28] nytral at spamcop dot net Description: ------------ Since php_curl is linked against libcurl 7.10.5+, cookies are not being stored for an https server I'm talking to. If it is because of Cache-Control: no-cache="set-cookie,set-cookie2" sent by the server, is there a workaround to force the cookiejar to populate anyway? Reproduce code: --------------- $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/cookies"); curl_setopt($ch, CURLOPT_COOKIEJAR, "/tmp/cookies"); curl_setopt($ch, CURLOPT_SSLVERSION, 3); curl_setopt($ch, CURLOPT_URL,$url); $buf=curl_exec($ch); Expected result: ---------------- To get something in /tmp/cookies when the server returns cookies, as it's the case with PHP < 4.3 Actual result: -------------- No /tmp/cookie file gets created. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=26853&edit=1
