I'm making a DIGEST AUTH using cURL and it's working perfect. The problem is, I need the browser to keep those Digest Credentials made on the login page, in all other pages without having to resend the user:pass again.
Example:
I'm in login.php, I write my user and password, I make a cURL request to authenticate, servers responds with OK, so I redirect to index.php, which requires to be authenticated, but it will ask for username and password again, it didn't keep it from login.php. How do I fix this?