Log message #4218559

# At Username Text
# Dec 13th 2019, 11:50 storkovo @jh do not forget that any person can ask you to remove their data at any time - and you are obligated to remove them everywhere, even from logs (and this one is really tricky task)
# Dec 13th 2019, 11:47 storkovo @jh history of who/when/what (accessed/displayed sensitive user data). Coming from huge ecommerce company and chair Release Manager (the owner of whole development cycle), I can tell you that it is much easier to anonymize data than protect them and keep history of access.
# Dec 13th 2019, 11:37 jh What do ypu mean by auditing access
# Dec 13th 2019, 11:36 jh Not an option but access is limited to specific people
# Dec 13th 2019, 11:35 storkovo @jh If you do need to distinguish users from the redis logs for some reason, it is easier to anonymize their identifiers for these logs, this way you dont have to worry about security (and audit of access) of them.
# Dec 13th 2019, 11:31 storkovo @jh better NOT log anything sensitive, despite of log target - if you do (log anything what is regulated by GDPR), you will face far more complex problem - how to audit access to these logs (it is not just about granting/revoking access to these data), especially if your app (and therefore app users) will have an access
# Dec 13th 2019, 11:24 jh thats much better than file logs - isnt it?
# Dec 13th 2019, 11:24 jh you can search through the logs and delete individual items too
# Dec 13th 2019, 11:24 jh Redis has expires feature
# Dec 13th 2019, 11:24 jh I am not setting the policies but I can advice on doing it better
# Dec 13th 2019, 11:23 jh @storkovo whats missing, how do you solve the issue?
# Dec 13th 2019, 11:23 jh no rotation, just expiration/deletion
# Dec 13th 2019, 11:15 storkovo log rotation/expiration is not enough to have GDPR compliant logs
# Dec 13th 2019, 11:11 jh and then expire automatically (GDPR)
# Dec 13th 2019, 11:10 jh also now I need to setup redis logging... basically i want log files to be readable by the application itself
# Dec 13th 2019, 11:10 jh can I add some docs to readme simply pointing at https://redis.io/commands
# Dec 13th 2019, 11:10 jh @lorenzo just wanted to say thanks for https://github.com/lorenzo/cakephp-redis ... i was a bit confused at first because I had to manually add a repo to composer.json and then there was nothing much but transactional mapping to multi... but it seems it just supports whatever redis does magically, such as calling ->append()
# Dec 13th 2019, 10:26 javier.villanueva ahm sorry... already response by neon
# Dec 13th 2019, 10:26 javier.villanueva @bancer $entity->source() ?
# Dec 13th 2019, 10:26 jh @k4t I;d look at what cakephp/app version was up to date back then
# Dec 13th 2019, 10:25 jh any of you using https://github.com/lorenzo/cakephp-redis ?
# Dec 13th 2019, 09:56 neon1024 Will return a string alias of the Table class
# Dec 13th 2019, 09:56 neon1024 `$this->getSource()`
# Dec 13th 2019, 09:49 val Hi, what would be the simplest way to get the reference to the table class from an entity object in 3.x?
# Dec 13th 2019, 09:25 yadav.manu36 my problem is same as below so please suggest me what we need to do https://stackoverflow.com/questions/50858021/cakephp3-cookie-value-not-being-kept I am not getting proper solution and also CakePHP Book Doc is not clear https://book.cakephp.org/3/en/controllers/request-response.html#cookies
# Dec 13th 2019, 09:19 dereuromark Joe: you can do that. I use a helper wrapper for it to make things easier
# Dec 13th 2019, 08:58 k4t how can I install latest CakePHP App Skeleton which is compatible with CakePHP 3.1.14?
# Dec 13th 2019, 08:58 k4t Hi
# Dec 13th 2019, 08:54 yadav.manu36 I am not getting proper solution and also CakePHP Book Doc is not clear https://book.cakephp.org/3/en/controllers/request-response.html#cookies
# Dec 13th 2019, 08:52 yadav.manu36 @conehead @challgren my problem is same as below https://stackoverflow.com/questions/50858021/cakephp3-cookie-value-not-being-kept
# Dec 13th 2019, 08:15 javier.villanueva morning all
# Dec 13th 2019, 07:40 challgren Have you checked to see if the request actually has the cookie, using postman or chrome inspector
# Dec 13th 2019, 07:21 conehead Maybe it IS null
# Dec 13th 2019, 07:21 conehead Probably it is just not set anymore
# Dec 13th 2019, 07:20 conehead Seems like there is the problem
# Dec 13th 2019, 07:20 yadav.manu36 No idea :)
# Dec 13th 2019, 07:19 conehead how?
# Dec 13th 2019, 07:19 yadav.manu36 @conehead yes
# Dec 13th 2019, 07:15 conehead How does the cookie look like when ```$this->request->getCookie('referralCode');``` returns NULL?
# Dec 13th 2019, 06:48 slackebot ->withHttpOnly(true); $cookies = $cookies->add($cookie); $this->response = $this->response->withCookie($cookie); } And after some time i come on this page again and get cookie but getting NULL $referralCode = $this->request->getCookie('referralCode'); Please help me
# Dec 13th 2019, 06:48 yadav.manu36 I am post this issue again, can anyone help me. I have created cookie on signup page like below: if($this->request->getQuery('referral') andand !$cookies->has('referralCode')){ $cookie = (new \Cake\Http\Cookie\Cookie('referralCode')) ->withValue($this->request->getQuery('referral')) ->withExpiry(new \DateTime('+1 year')) ->withPath('/') ->withSecure(false)