Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Problem with cookies and passwords

Post Reply
User avatar
salvadordf
Posts: 4564
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Problem with cookies and passwords

Post by salvadordf »

All the demos use "in-memory" cache.

To keep the cookies and all the cache elements you need to set GlobalCEFApp.cache with a writable directory before the GlobalCEFApp.StartMainProcess call in the DPR file. Like this :

Code: Select all

GlobalCEFApp.cache := 'cache';
The DPR file in the SimpleBrowser demo has all this code inside a comment.
Post Reply