Log message #4264154

# At Username Text
# May 28th 2021, 16:33 tyler.adam.lazenby sugggestion request: How would you go about creating a form to with migration from a old data structure to a new one. I had been using users as the "account" but now I need to make it so that accounts are collections of users. Additionally I need to add addresses. Luckily there aren't a lot of users yet, otherwise that will make it harder. We also don't have any users that we currently need to group together. I am
# May 28th 2021, 16:29 steinkel if you need to override these settings after plugin load, you can use the `Application::pluginBootstrap` method
# May 28th 2021, 16:29 steinkel that's a way to name an array of files and get them loaded, and merged into the configuration
# May 28th 2021, 16:27 st.steinkuehler Hello, in the CakeDC User documentation the file "config/users.php" is loaded with this code `Configure::write('Users.config', ['users']);` into the configuration - but I can find anything in the API-Doc or Book about this file loading behavior of `Configure::write`. Can someone explain? Thanks.
# May 28th 2021, 15:18 shahways Thanks @admad, will do so. Have a nice weekend!
# May 28th 2021, 14:56 admad Please open an issue on github.
# May 28th 2021, 14:55 admad @shahways That's a bug with bake. The unique check should be in build rules only not validation.
# May 28th 2021, 14:49 st.steinkuehler Thanks
# May 28th 2021, 14:48 ndm Very likely.
# May 28th 2021, 14:40 st.steinkuehler Hello, I want to add a parameter into a post request comming from the browser before it reaches the plugin controller code. Is a middleware the right place to do this?
# May 28th 2021, 13:55 ndm `assertEventFiredWith()`?
# May 28th 2021, 13:37 chris301 hi guys, i’m currently working on something where i have dispatched a custom Event, and would like to assert that the specific event dispatched has the content i expect it to, but am struggling to find a way of searching for the event in the EventList other than using getOffset(). is there a method i haven’t found yet that would allow me to search for a particular event in the event list in tests?
# May 28th 2021, 13:18 neon1024 there it is
# May 28th 2021, 13:18 neon1024 https://github.com/cakephp/cakephp/blob/2.10.24/lib/Cake/Routing/Router.php#L65-L71
# May 28th 2021, 13:17 neon1024 You could check the Routing class in your project to see if it supports prefixes
# May 28th 2021, 13:17 neon1024 @rightscoreanalysis It’s been a long time since I used Cake 2, but I think prefixes still existed back then
# May 28th 2021, 12:04 etibor i thought you were asking the prefixes
# May 28th 2021, 11:27 rightscoreanalysis damn it - I thought as much. Cake came a long way since then :)
# May 28th 2021, 11:22 khalil Your best bet would be to create separate "app" folders for each, and make them all use the same cake lib and webroot
# May 28th 2021, 11:21 khalil @rightscoreanalysis You need namespaces for the structure you're trying to accomplish, so no it's not possible in Cake 2
# May 28th 2021, 11:08 rightscoreanalysis I know I am asking a lot here, but anyone know if controllers in sub-folders is possible in Cake2?
# May 28th 2021, 10:33 etibor i found getExtension function, but dont know how can i use this for getting if page has different extension than php
# May 28th 2021, 10:32 etibor in cake3 how can i get the current page extension?
# May 28th 2021, 09:41 khalil I'm not sure about what bake generates, I haven't used it since bake 1.3 so I don't really have any info
# May 28th 2021, 09:38 slackebot to validate application rules , will run twice. Is this correct?
# May 28th 2021, 09:38 slackebot rules. This is what we understood based on the documentation. And makes perfect sense. However, the code produced by Bake, repeats the rule in both validation layers, which nullifies the logic described in the docs. So if I interpret the reasoning correctly, we should repeat all application rules in the basic validation as well? Since the application data might change between validation and saving? So any DB query which will be used
# May 28th 2021, 09:38 shahways Thanks for your reply @khalil! Your feedback is not confusing, but the documentation in combination with the baked code is somewhat ambiguous. Checking if the email address is valid, is the responsibility of the basic validation (does it have an @ character, does it have a domain name, ... etc.). But based on the docs, ensuring that we have no user registered yet with that same email address, is the job of the application
# May 28th 2021, 09:20 slackebot stateless way, application rules work in stateful way, so in case of checking email uniqueness, the validation would handle checking if the email is actually valid, and the application rule checks if the email is unique. I hope I didn't confuse you more :)
# May 28th 2021, 09:20 khalil @shahways to my knowledge, in the case of uniqueness, it is recommended to set the validation on both. Validation methods are meant to give back validation errors before the save process happens, it does that by checking the errors() method, however, Validation doesn't happen inside a database transaction, so you can't really guarantee if the email is still unique between validating and saving. To sum it up, validation work in
# May 28th 2021, 09:19 narendravaghela It seems working
# May 28th 2021, 09:09 narendravaghela It doesn't find that `disconnect()` method
# May 28th 2021, 09:02 admad Did you try using the same?
# May 28th 2021, 08:38 narendravaghela CakePHP 4: What is the correct way to disconnect from datasource? Earlier in 3.x version, I was used to use following to disconnect ```ConnectionManager::get('default')->disconnect();```
# May 28th 2021, 08:24 khalil Your best bet would be to create two separate "app" folders I guess, but it's hell to maintain and setup
# May 28th 2021, 08:21 khalil You need namespaces for such structure
# May 28th 2021, 08:20 khalil As far as I remember that's not possible with Cake 2
# May 28th 2021, 08:14 khalil @rightscoreanalysis yes it doesn't work with base64 images
# May 28th 2021, 08:14 shahways So we are now wondering if we misunderstood the 2 validation layers and their purpose?
# May 28th 2021, 08:13 shahways Hi all, quick check. We would like to add a uniqueness validation on our email field for Users. We noticed that when baking the model for our Users in 4.x, we ended up with two rules to ensure this validation. Once in the basic validation layer, as well as once in the application validation layer. We assumed that it would only be added as an application validation rule, based on the documentation.
# May 28th 2021, 07:47 rightscoreanalysis Anyone able to help with this relatively simple routing question? https://stackoverflow.com/questions/67730899/cakephp-admin-prefixed-routing
# May 28th 2021, 07:46 rightscoreanalysis Did you try Neon's Proffer plugin?