Cita:
Iniciado por abimaelrc No, en primer lugar tiene que existir un directorio, que es donde cURL se encargará de almacenar las cookies. Si no existe, debes crearlo. Es la que indicaste en el cookiejar. Te recomiendo que mejor escribas una ruta absoluta, ejemplo con window c:/directorio/tmp o linux /usr/directorio/tmp
ahora cree la carpeta c:\tempcurl
hice esto
$handler = curl_init();
curl_setopt($handler, CURLOPT_HEADER, 1);
curl_setopt($handler, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($handler, CURLOPT_URL, $url);
curl_setopt($handler, CURLOPT_COOKIEFILE, "C:\tempcurl");
curl_setopt($handler, CURLOPT_COOKIEJAR, "C:\tempcurl");
curl_setopt($handler, CURLOPT_POST,true);
curl_setopt($handler, CURLOPT_POSTFIELDS, $elements);
$response = curl_exec ($handler);
curl_close($handler);
pero en esa carpeta no me guarda nada.!! y cuando accedo a otro link se cierra la sesion