Log message #4141715

# At Username Text
# May 17th 2018, 13:04 birdy247 This @admad was pointing at me ;), your a good egg @jeremyharris
# May 17th 2018, 13:03 jeremyharris I’ll keep that in mind ;)
# May 17th 2018, 13:03 admad most questions asked in here have pretty simple solutions :slightly_smiling_face:
# May 17th 2018, 13:02 jeremyharris it’s true haha
# May 17th 2018, 13:02 admad you think too much :P
# May 17th 2018, 13:01 jeremyharris guess I misunderstood when you said ajax — didn’t know you were using json, thought you were using customized logic that utilized the _serialize var
# May 17th 2018, 13:00 birdy247 @admad such simple solutions :slightly_smiling_face:
# May 17th 2018, 12:59 admad let requesthandler auto set it to jsonview to set to jsonview yoursefl
# May 17th 2018, 12:58 admad don't set view class to MyAppView for ajax/json requests
# May 17th 2018, 12:58 birdy247 so presumably I am missing something
# May 17th 2018, 12:58 birdy247 but if I detach my own AppView class, it works
# May 17th 2018, 12:58 birdy247 right
# May 17th 2018, 12:57 admad view paths are irrelevant if you want the view to return serialized data. Having that error means JsonView is not being used for the request
# May 17th 2018, 12:57 jeremyharris some of the paths might be empty until it sets them there, unless you’re setting them explicitly or a component (request handler) is
# May 17th 2018, 12:56 jeremyharris Controller:render is your best bet I think
# May 17th 2018, 12:55 birdy247 @jeremyharris How do I see the paths from the viewBuilder() ?
# May 17th 2018, 12:54 jeremyharris you might have to debug at Controller::render to make sure you have all the info, as some of it is set there
# May 17th 2018, 12:52 jeremyharris second, I would debug the view builder right when it’s rendering to figure out what paths it’s using
# May 17th 2018, 12:52 jeremyharris AppView is your app view, for one
# May 17th 2018, 12:51 birdy247 Is there something in the _paths?
# May 17th 2018, 12:51 birdy247 I dont have templates, instead I use the _serialize response
# May 17th 2018, 12:51 birdy247 however, my ajax call are now always giving a 500 error about a missing template
# May 17th 2018, 12:50 birdy247 works well
# May 17th 2018, 12:50 birdy247 I have made my own MyAppView which extends AppView
# May 17th 2018, 12:05 lorenzo yes
# May 17th 2018, 11:41 Lopa can we use maria db with cakephp 2.9
# May 17th 2018, 10:32 dereuromark for now you can just use a custom lib class and done. refactoring will be easy.
# May 17th 2018, 10:31 dereuromark I tried the service layer plugin linked from burzum, it works nicely here: https://github.com/burzum/cakephp-service-layer He should tag a 0.1 release IMO
# May 17th 2018, 10:29 turkles thanks @dereuromark - but some of that is a little over my head and it looks like a discussion for future changes? Are there any examples you can think of in plugins I can look at for the service layer you mention?
# May 17th 2018, 10:11 rudy1976s but when I check the query which gives me that error it is an insert query
# May 17th 2018, 10:11 rudy1976s in the Entity I have set ID off the accessible fields
# May 17th 2018, 10:10 rudy1976s good morning: when cake save with hasMany an existing record, the ID of the tables are regenerated or not ? I have some issue with SQL server saving hasMany model with the following error: Cannot insert explicit value for identity column in table 'table_name' when IDENTITY_INSERT is set to OFF.
# May 17th 2018, 10:07 joshualuckers https://book.cakephp.org/3.0/en/orm/query-builder.html
# May 17th 2018, 10:03 nitishkumardiwakar trying from 2 days, still not success
# May 17th 2018, 10:02 nitishkumardiwakar How can I Inner join in cakephp?
# May 17th 2018, 09:56 slackebot secondary database, is it possible?
# May 17th 2018, 09:56 david File uploaded https://cakesf.slack.com/files/UAPU3DV3J/FAQT9C5RP/-.php / https://slack-files.com/T053DPNCM-FAQT9C5RP-75b25fd83e - I have two databases. I am connecting to a different connection manager than the default one. It works OK if I don't use translation behavior, but if I use it, the connection manager tries to select tables in the default connection manager instead of the "singlesignon" connection manager. I need to use i18n in the
# May 17th 2018, 09:51 dereuromark so basically "outside of communication layer" for sure - which means not in controller/component or shell/task
# May 17th 2018, 09:50 dereuromark service layer can help here if you dont want to do "new Xyz()" everywhere :slightly_smiling_face:
# May 17th 2018, 09:50 dereuromark inside business logic/layer, so some library code, see also https://github.com/cakephp/cakephp/issues/11260
# May 17th 2018, 09:48 turkles Anyone here can tell me.. I have code I want to run from both a controller and a shell command.. where do I put the code?