You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding that GDPR plugin uses arrays for cookies, I'm trying to make plugin which decodes and filter cookies. Also there is #616 which fixes issue when anonymous visitors (additional cookies passed into request but they aren't logged) are recognized as logged users. It's test version to we see is it working or no.
Download PHP file from this PR - https://raw.githubusercontent.com/Automattic/wp-super-cache/0536a9d6cf956b8a19302fe01ca18058db3613fa/plugins/gdpr.php and upload it via FTP to plugins directory into WPSC installation (eg. wp-content/plugins/wp-super-cache/plugins). On WPSC page (admin dashboard) go to tab Plugins and you should see GDPR plugin.
For now it doesn't work in expert mode, so you should set Simple mode (Advanced settings) before enabling this plugin. Also, it's recommended to turn on debugging in debug tab. (Log files are helpful to we see which file is served.)
About cache files:
Supercache (index.html) will be created if request doesn't have cookies gdpr['consent_types'] or gdpr['allowed_cookies'] or they are empty.
WP cache files (wp-cache.....) will be created/served if request contains consent_types or allowed_cookies stored into cookies.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Regarding that GDPR plugin uses arrays for cookies, I'm trying to make plugin which decodes and filter cookies. Also there is #616 which fixes issue when anonymous visitors (additional cookies passed into request but they aren't logged) are recognized as logged users. It's test version to we see is it working or no.