ID:               26853
 Updated by:       [EMAIL PROTECTED]
 Reported By:      nytral at spamcop dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         cURL related
 Operating System: win32 and linux
 PHP Version:      5CVS-2004-01-09 (dev)
 New Comment:

Can not reprduce. (works fine with e.g. http://www.php.net/)



Previous Comments:
------------------------------------------------------------------------

[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

Reply via email to