Log message #4200173

# At Username Text
# Aug 28th 2019, 14:14 ricksaccous yeah
# Aug 28th 2019, 14:13 koeller You talk about the GeocodeBehavior, @ricksaccous?
# Aug 28th 2019, 14:12 ricksaccous it's pretty neat
# Aug 28th 2019, 14:12 ricksaccous a geocoding behavior with a distance finder
# Aug 28th 2019, 14:12 ricksaccous i mean
# Aug 28th 2019, 14:12 ricksaccous yep just like in @dereuromarks Geocoding plugin he has a distance behavior
# Aug 28th 2019, 14:11 admad yes, put the custom finder in a behavior
# Aug 28th 2019, 14:11 koeller Hi all, is there a cake way to store the code of a custom finder in a file, like Model\MyCustomerFinder.php ?
# Aug 28th 2019, 13:45 ricksaccous sorry about that, lmao
# Aug 28th 2019, 13:45 ricksaccous i did enjoy that little goose chase of asking you to make it accessible though
# Aug 28th 2019, 13:45 ricksaccous @neon1024 i was going to suggest that next, glad you figured it out, lol
# Aug 28th 2019, 13:45 spriz I just realized that we run tests with debug => true, wouldn't you usually disable debug mode in tests/bootstrap.php? :P
# Aug 28th 2019, 13:18 dereuromark for tests you would usually overwrite in tests/bootstrap file then
# Aug 28th 2019, 13:18 dereuromark config app.php as documented for cache engine config
# Aug 28th 2019, 13:13 val @dereuromark do you know where is that done?
# Aug 28th 2019, 13:12 dereuromark basically making it always cache-invalidate
# Aug 28th 2019, 13:11 dereuromark this is what is done for debug mode pretty much anyway
# Aug 28th 2019, 13:11 dereuromark set the timeout to 1 or even 0
# Aug 28th 2019, 13:11 val is there an easy way to disable one cache config?
# Aug 28th 2019, 13:10 admad except for the config name there is no differentiation between cache configs used by core and other user defined ones
# Aug 28th 2019, 13:07 val in 3.x
# Aug 28th 2019, 13:06 val Hi, is there an easy way to disable all caches except cake core in unit tests?
# Aug 28th 2019, 13:06 alexdd55976 it should be in the response after submitting the form
# Aug 28th 2019, 13:02 davorminchorov how would I display the validation errors?
# Aug 28th 2019, 13:01 javier.villanueva <?= dd($var) ?>
# Aug 28th 2019, 12:59 javier.villanueva without "echo"
# Aug 28th 2019, 12:58 javier.villanueva you can use dd in view too
# Aug 28th 2019, 12:35 alexdd55976 you do not wanna do it that way, i think
# Aug 28th 2019, 12:35 davorminchorov what I am trying to do is display validation errors under each field
# Aug 28th 2019, 12:35 alexdd55976 you can also use `debug()` and `pr()` which might be a more proper solution
# Aug 28th 2019, 12:29 davorminchorov `echo $var` worked, maybe it has something to do with `echo dump($var)` that is causing issues
# Aug 28th 2019, 12:28 davorminchorov I'll try with var_dump as well now
# Aug 28th 2019, 12:28 davorminchorov dump is the symfony's var_dump() on steroids
# Aug 28th 2019, 12:26 alexdd55976 i never used `dump`... did you mean `var_dump`? i use `pr()` most of the times
# Aug 28th 2019, 12:23 davorminchorov yeah the view is correct
# Aug 28th 2019, 12:16 alexdd55976 and the view you render is the right view?
# Aug 28th 2019, 12:16 alexdd55976 thats weird
# Aug 28th 2019, 12:15 davorminchorov yeah, $var shows an array of data when I use `dd($var)` in the controller but `null` in the view for some reason
# Aug 28th 2019, 12:13 alexdd55976 and $var is filled?
# Aug 28th 2019, 12:12 alexdd55976 @davorminchorov you sure its the right view?
# Aug 28th 2019, 12:11 davorminchorov Hi, when I try to add a variable to the view / element, I use `$this->set('var', $var)` but for some reason, I am seeing anything when I try to use `dump($var)` in the view / element. Any ideas?