Reputation: 149
I use the EXT: to bring cookieconsent2 to my page in terms of EU data protection conventions up to date. But somehow I seem to EXT: to have not properly configured. Each pageview erscehint cookie confirmation with me.
Below my TS from the Constants.
plugin.tx_cookieconsent2 {
settings {
domain = http://p372493.mittwaldserver.info
theme = dark-bottom
path = fileadmin/cookies/
expiryDays = 366
}
}
What could be wrong? The folder under path was created by me and is located directly under the fileadmin folder.
Upvotes: 0
Views: 190
Reputation: 5840
You should probably set the path to /
.
The setting has nothing to do with a file storage path, it's the cookie path. The extension sets a cookie to save whether the user has consented, and this path indicates that the consent was only given for pages whose URL begins with that path.
So in your case, the consent was only given for pages whose URL begins with fileadmin/cookies
, and for other pages the "accept cookies" message will still be shown.
Upvotes: 1