Log message #4192728

# At Username Text
# Jul 10th 2019, 15:03 neon1024 I’ll `use ($myTableInstance)` in my closure I guess
# Jul 10th 2019, 15:02 neon1024 Thanks for the tips @ndm
# Jul 10th 2019, 15:02 neon1024 Figured a transaction would be the way
# Jul 10th 2019, 15:02 neon1024 ..and change a field
# Jul 10th 2019, 15:02 neon1024 Oh right, I want to duplicate 5-6 records
# Jul 10th 2019, 15:00 ndm @neon1024 The callback receives a connection instance, not a query instance, there will be no query. And yes, you can use the ORM inside of a transaction, just make sure to set the `atomic` option to `false` when saving/deleting in case required (ie if you don't want to use nested transactions).
# Jul 10th 2019, 14:55 inoas good evening guys
# Jul 10th 2019, 14:55 inoas I really hope the next one is somewhere I can get to with a train even if it takes 30h
# Jul 10th 2019, 14:54 inoas I need to go to some cake fest
# Jul 10th 2019, 14:54 lorenzo no problem!
# Jul 10th 2019, 14:54 inoas lorenzo thanks again for helping out, that saved me tons of time, I am certain an exists solution had worked too but it would have been clunky at best
# Jul 10th 2019, 14:53 neon1024 I presume the callback would take a query instance?
# Jul 10th 2019, 14:53 neon1024 Can I use this to run ORM queries?
# Jul 10th 2019, 14:53 neon1024 https://book.cakephp.org/3.0/en/orm/database-basics.html#using-transactions
# Jul 10th 2019, 14:49 neon1024 Better to use the duplicatable behaviour in a loop, or do a find and change the results and save all in one go?
# Jul 10th 2019, 14:01 lubos Yep, from reading collections method it seems the best :slightly_smiling_face:
# Jul 10th 2019, 14:00 neon1024 I’d probably look to remove it and append it to the collection
# Jul 10th 2019, 13:59 neon1024 https://book.cakephp.org/3.0/en/core-libraries/collections.html#Cake\Collection\Collection::append
# Jul 10th 2019, 13:54 lubos What is the best way to move one item from the collection to the end?
# Jul 10th 2019, 13:41 neon1024 :)
# Jul 10th 2019, 13:41 neon1024 No, starting with a `/` as in root
# Jul 10th 2019, 13:41 this.impetus yeah, I got it, tyvm, it was a silly mistake on my part
# Jul 10th 2019, 13:41 this.impetus oh my goodness. I see now. I was writing the URL wrong; it can't be relative from JS's perspective (ie. ../img/file.jpg doesn't work)
# Jul 10th 2019, 13:40 neon1024 So `background-image: /img/example.jpg` would work as would `background-image: http://example.com/img/background-image.jpg` I’d think
# Jul 10th 2019, 13:40 neon1024 In most instances web servers should be setup to serve files and folders directly
# Jul 10th 2019, 13:40 neon1024 That will depend on the web server configuration
# Jul 10th 2019, 13:39 this.impetus but I think I'm explaining myself poorly, or else I've misunderstood... can I just provide explicit URIs for content in the webroot folder? isn't it captured by modrewrite or something (not a backend guy, forgive me if I sound ridiculous)?
# Jul 10th 2019, 13:37 this.impetus `style=` I rather think
# Jul 10th 2019, 13:36 neon1024 Or is it without single quotes? I forget
# Jul 10th 2019, 13:36 neon1024 `<div class="background-image: '/img/example.jpg'"></div>` Is what I’d use personally
# Jul 10th 2019, 13:34 this.impetus Hey guys, front-end guy here stuck on a problem. Creating a dynamic element that's intended to have it's `background-image` CSS change via a JS UI. But relative URL's don't play nice with cake. Can anyone advise on the best 'cakeian' approach for serving an image to dynamic CSS ?
# Jul 10th 2019, 13:32 neon1024 This chapter runs you through the whole process
# Jul 10th 2019, 13:32 neon1024 @revillosakristianpaol https://book.cakephp.org/3.0/en/orm/database-basics.html#data-types
# Jul 10th 2019, 13:31 revillosakristianpaol @neo21181 how can i do it? its my first hearing this hahaha
# Jul 10th 2019, 13:30 neon1024 @felix.robaglia This is the plugin I’d recommend taking a look at https://github.com/usemuffin/footprint
# Jul 10th 2019, 13:29 felix.robaglia Thanks a lot @neon1024, i'll watch this way then!
# Jul 10th 2019, 13:29 neon1024 @revillosakristianpaol Personally I would create a new Data Type class for this
# Jul 10th 2019, 13:29 neon1024 @felix.robaglia Sure, you’d use a plugin for that https://github.com/FriendsOfCake/awesome-cakephp#auditing--logging
# Jul 10th 2019, 13:28 revillosakristianpaol is there a way to treat tinyint as regular int? im currently facing issues regarding conversion of string to bool (which is my data is -1,0,1)
# Jul 10th 2019, 13:27 revillosakristianpaol hi
# Jul 10th 2019, 13:26 felix.robaglia Hello, I want to store in the database the id of the last user who modified this row (column name is id_latest_user_update). Do I have an easy way to tell cakePHP : "Everytime you update a field, set id_latest_user_update to current session id" ? Thanks :slightly_smiling_face: