Differences
This shows you the differences between two versions of the page.
| cookie:policy [2023/01/09 11:56] – created Johan Lundblad | cookie:policy [2023/01/09 12:58] (current) – Johan Lundblad | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | policy | + | ====== Cookies ====== |
| + | |||
| + | A default installation of DokuWiki sets **three cookies**. | ||
| + | |||
| + | As you can see, the default cookies required are functional cookies only. No tracking is implemented with these cookies. | ||
| + | |||
| + | ===== DW< | ||
| + | |||
| + | Used for authentication after login. This holds the necessary data to (re)login a previously authenticated user. | ||
| + | |||
| + | * Importance: **necessary** for anyone who needs to log in | ||
| + | * Typical content: encrypted username and password | ||
| + | * Expires: in a year ((if " | ||
| + | |||
| + | ===== DOKU_PREFS ===== | ||
| + | |||
| + | Used for remembering helpful user preferences, | ||
| + | |||
| + | * Importance: **functional** | ||
| + | * Typical content: name/value pairs in plain text | ||
| + | * Expires: in a year | ||
| + | |||
| + | ===== DokuWiki ===== | ||
| + | |||
| + | The standard PHP session identifier. Used to hold temporary data and to avoid CSRF attacks. | ||
| + | |||
| + | |||
| + | * Importance: **necessary** | ||
| + | * Typical content: random ID | ||
| + | * Expires: at the end of the browser session | ||
| + | |||
| + | Source: [[https:// | ||