Log message #4174747

# At Username Text
# Jan 23rd 2019, 16:20 ricksaccous what is PII data btw, is that related to the EU privacy laws or something
# Jan 23rd 2019, 16:18 ricksaccous but yeah you'd have to encrypt the search string
# Jan 23rd 2019, 16:18 neon1024 Yeah, I think you’re right @ricksaccous
# Jan 23rd 2019, 16:18 ricksaccous you can't really use like or it will prob be nonsensical to do so
# Jan 23rd 2019, 16:18 ricksaccous i think it will be hard unless you are okay with them searching an exact match
# Jan 23rd 2019, 16:18 neon1024 Encrypt it an SQL that?
# Jan 23rd 2019, 16:17 neon1024 Figured filtering I could use the `Search.Callback`, but I don’t know quite how to match against an encrypted string
# Jan 23rd 2019, 16:17 neon1024 Is this going to make filtering and sorting either hard or impossible?
# Jan 23rd 2019, 16:17 neon1024 Presumably because ‘neon1024’ doesn’t match the encrypted string in the SQL
# Jan 23rd 2019, 16:16 neon1024 Sooo, I encrypted the PII data in my database, and now my filtering and sorting doesn’t work
# Jan 23rd 2019, 15:36 cpierce :-
# Jan 23rd 2019, 15:36 cpierce n/m i'm on 0.9.2 that's why
# Jan 23rd 2019, 15:33 cpierce because we use drop()->save(); a bunch in the docs - just makign sure i'm not just doing something stupid
# Jan 23rd 2019, 15:33 cpierce is that something i need to update in the docs?
# Jan 23rd 2019, 15:33 cpierce ... drop(); works just fine
# Jan 23rd 2019, 15:33 cpierce and it's saying it can't save because it doesn't exist
# Jan 23rd 2019, 15:33 cpierce i'm calling ->drop()->save() in an up migration
# Jan 23rd 2019, 15:33 cpierce query question about phinx
# Jan 23rd 2019, 15:22 neon1024 Just need to deploy a release to production
# Jan 23rd 2019, 15:22 neon1024 @dereuromark No, sorry, I didn’t see it :slightly_smiling_face:
# Jan 23rd 2019, 15:17 dereuromark @neon1024
# Jan 23rd 2019, 15:17 dereuromark Did you see my github api dto example? I wanna see you do the alternative, and then we compare
# Jan 23rd 2019, 13:54 daniel.upshaw That did it for you? I was running into POST fields, seems something different, did solve... thank you though!
# Jan 23rd 2019, 13:00 neon1024 3.4 was quite a bit, and it seems like 3.7 is a reasonable chunk too
# Jan 23rd 2019, 12:59 neon1024 It’s good that things are progressing, but occasionally when you update a minor patch version there is quite a bit of work to do
# Jan 23rd 2019, 12:59 neon1024 It does feel like that in some places
# Jan 23rd 2019, 12:46 neothermic This feature is so new that we've decided to deprecate it before we released it!
# Jan 23rd 2019, 12:44 neon1024 Although it would be a bit confusing for the page to just say New feature! Deprecated!
# Jan 23rd 2019, 12:43 neon1024 I’d be in favour of another boxy element, perhaps in yellow saying ‘Deprecated: This class has been moved. See Command Helpers for more information’
# Jan 23rd 2019, 12:40 dereuromark after all, that namespace is deprecated anyway
# Jan 23rd 2019, 12:40 dereuromark but the link for now seems OKish
# Jan 23rd 2019, 12:40 dereuromark ^^ no kiddin
# Jan 23rd 2019, 12:38 neon1024 I think that needs a little more emphasis on them having moved house
# Jan 23rd 2019, 12:37 neon1024 Cool story bro. https://book.cakephp.org/3.0/en/console-and-shells/helpers.html
# Jan 23rd 2019, 11:46 neon1024 I thought they had to match the entity passed to the form
# Jan 23rd 2019, 11:43 dereuromark i wonder what casing u need here
# Jan 23rd 2019, 11:37 neon1024 Is your Table class called Form @dereuromark?
# Jan 23rd 2019, 11:36 neon1024 Form?
# Jan 23rd 2019, 11:17 dereuromark How do you display errors on a saveMany form? I have Form->control('Form.' . $key . '.name') fields, but the errors of the entity dont get mapped into the controls.
# Jan 23rd 2019, 11:04 scuadra Hello. I am using Cake 3.7 with this Plugin (https://github.com/Holt59/cakephp3-bootstrap-helpers) for the Forms. My problem is that when I add validation rules to my model, the FormHelper does not add required attribute to my input. How can I solve this issue?
# Jan 23rd 2019, 10:40 yannik.tschan Hi there, I'm struggling with Router::redirect in Cake 2.0 - every time I redirect from /foo/bar to /bar Cake responds with an http:// URL even if the request was on https:// - is there any config missing? By using Router::connect I get HTTPS And we'd like to redirect /bar to /bar/ - is this even possible? Router::redirect('/foo/bar', array('controller' => 'bar', 'action' => 'view'),array('status' => 301));