Log message #4201885

# At Username Text
# Sep 5th 2019, 15:56 slackebot {"0":"public.people.landing","action":"display","controller":"Pages","plugin":null} | | members:display | /people/* | {"action":"display","controller":"Members","plugin":null} |```
# Sep 5th 2019, 15:56 this.impetus FWIW, ``` pages:display | /press | {"0":"public.press.landing","action":"display","controller":"Pages","plugin":null} | | reviews:display | /press/* | {"action":"display","controller":"Reviews","plugin":null} | | pages:display | /people |
# Sep 5th 2019, 15:56 jotpe Hey! In my User Entity I have a virtualfield like this: https://book.cakephp.org/3.0/en/orm/entities.html#creating-virtual-fields. When I use the Authentication Plugins Helper like this `$this->Identity->get('name')` I get the User Entity. For some reason I cannot access the virtual field with `$user->full_name;` Why does this not work?
# Sep 5th 2019, 15:54 this.impetus All well, in reality the redirected URLs will likely change, it's just the public-facing, semantically-nice URLs I'm currently concerned with, but I've never used the CLI for this, I'll take a peak, ty
# Sep 5th 2019, 15:51 neon1024 You’re also assigning the same url to two different routes, so you’ll get duplicate content from an SEO point of view
# Sep 5th 2019, 15:50 neon1024 Did you try `bin/cake routes`
# Sep 5th 2019, 15:50 this.impetus Anyone even know how that's possible? Or whereabouts to looking for the problem? I am kind of just agape over hear
# Sep 5th 2019, 15:43 slackebot $routes->connect('/press/*', ['controller' => 'Reviews', 'action' => 'display']);``` There isn't a controller named `People` or `Press, and both the `Members` and `Reviews` controllers are working as they should, *and* I can access `pages/public.press.landing` as a normal URL.
# Sep 5th 2019, 15:24 neon1024 Which I think is 24 mins
# Sep 5th 2019, 15:43 this.impetus Hi guys... very strange behavior I need help troubleshooting. This works fine ```$routes->connect('/people', ['controller' => 'Pages', 'action' => 'display', 'public.people.landing']); $routes->connect('/people/*', ['controller' => 'Members', 'action' => 'display']);``` but this throws a MissingController error ``` $routes->connect('/press', ['controller' => 'Pages', 'action' => 'display', 'public.press.landing']);
# Sep 5th 2019, 15:23 neon1024 My php maxlifetime is set to 1440
# Sep 5th 2019, 15:23 neon1024 How can I extend my session login time? It seems adding `timeout => 15` to my `app.php` `Session` key doesn’t seem to work
# Sep 5th 2019, 15:22 ricksaccous @david098 https://book.cakephp.org/3.0/en/orm/query-builder.html#filtering-by-associated-data
# Sep 5th 2019, 14:47 itmpls gotcha
# Sep 5th 2019, 14:46 dereuromark overdoing sth too early
# Sep 5th 2019, 14:46 dereuromark too much pre-opt
# Sep 5th 2019, 14:46 itmpls what's overkill?
# Sep 5th 2019, 14:44 dereuromark you can do it, but it seems a bit overkill
# Sep 5th 2019, 14:44 itmpls not in vendor
# Sep 5th 2019, 14:43 itmpls i mean versus in App itself
# Sep 5th 2019, 14:43 dereuromark if it is inside the same projects /plugins folder there are no additional costs usually, so thats pretty cheap compared to the vendor overhead.
# Sep 5th 2019, 14:41 itmpls organization wise is it ideal to put your own custom library (only to be used by this current app) as its own . plugin?
# Sep 5th 2019, 14:42 dereuromark why do you want to do it in the first place?
# Sep 5th 2019, 14:40 ndm @alexdd55976 https://github.com/cakephp/bake/issues?q=is%3Aissue+as_array+is%3Aclosed
# Sep 5th 2019, 14:41 ondrej.nedvidek definitively Nedvajz on fire today !
# Sep 5th 2019, 14:41 ondrej.nedvidek :partyparrot:
# Sep 5th 2019, 14:40 ondrej.nedvidek user error .. sorry for wasting your time :)
# Sep 5th 2019, 14:40 ndm Probably... maybe if you show how exactly you try to use the data in your extended template
# Sep 5th 2019, 14:36 alexdd55976 is that a known error
# Sep 5th 2019, 14:37 ondrej.nedvidek @ndm thanks for reply .. well, then it is 'user' error .. shize .. where it could be .. but thank you for confirming !
# Sep 5th 2019, 14:36 alexdd55976 cake 4 / bake `Unknown "as_array" filter. in [C:\webroot\cakeeib\vendor\cakephp\bake\templates\bake\Model\table.twig, line 51]`
# Sep 5th 2019, 14:36 ndm @ondrej.nedvidek Both should work, `set()` as well as `assign()/fetch()`
# Sep 5th 2019, 14:35 ondrej.nedvidek so there is no option or you are not aware about ? :O
# Sep 5th 2019, 14:30 david098 No luck...
# Sep 5th 2019, 14:26 slackebot part of controller action. Any help?
# Sep 5th 2019, 14:26 ondrej.nedvidek Hi there, I am inheriting view and want to pass variable from current view to the parent ``` $this->set('foo', 'bar'); $this->extend('/Common/Posts/view'); ``` I have tried to use `$this->assign('foo', 'bar');` and fetch in Common/Posts/view `$this->fetch('foo')` Also tried `$this->set('foo', 'bar');` and then access in Common/Posts/view `$foo` But no luck either way. It is related to view appearance so I don't think it should be
# Sep 5th 2019, 14:25 ricksaccous @david098 replace the contain by matching, if you need the contain then use both the contain and a matching i suppose
# Sep 5th 2019, 14:24 davorminchorov the form looks like the xeditable jquery plugin where the records for each row can be edited
# Sep 5th 2019, 14:22 davorminchorov Hi, I have a list of records that I want to display on the page, and I am using the paginator but I noticed that the form is lazily loading the form fields as I scroll down. Is there any way to display all (or specific limit of those records) at once before it starts paginating the rest of the records?
# Sep 5th 2019, 14:22 david098 do you mean replace the contain by matching? or add an extra matching ?
# Sep 5th 2019, 14:17 ricksaccous try it...