In one my sites, Im using cURL and sessions.
This exists in one script :
Code: Select all
curl_setopt ($handle, CURLOPT_COOKIESESSION, TRUE);
curl_setopt ($handle, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt ($handle, CURLOPT_COOKIEJAR, "cookie.txt");Question - Does cURL in anyway affect session handling routines ?
Because now Im getting this which wasnt there before - I thought I had cleared all my session problems !
Code: Select all
Warning: session_module_name() [function.session-module-name]: A session is active. You cannot change the session module's ini settings at this time. in xxx.phpThanks