Log message #4209133

# At Username Text
# Oct 16th 2019, 08:16 ra7bi do patchEntity can handle that ?
# Oct 16th 2019, 08:15 ra7bi i also tried what ndm told me but can not make it work .
# Oct 16th 2019, 08:14 ra7bi I have three tables , ``` Requests ---> BelongToMany ---> Details ``` and i have ``` Reports -----> BelongTo ---> Requests``` i want in Add report form add a Requests Details i tried ``` $this->select('Requests.'.$request->id.'.Details._ids' ) ``` and ``` $this->select('Requests.'.$request->id.'.Details._fieldName' ) ``` but not working
# Oct 16th 2019, 08:10 javier.villanueva Configure::write('CakePdf', [ 'engine' => [ 'className' => 'CakePdf.WkHtmlToPdf', 'binary' => 'C:\\wkhtmltopdf\\bin\\wkhtmltopdf.exe', 'cwd' => 'C:\\wkhtmltopdf\\bin' ], 'margin' => [ 'bottom' => 15, 'left' => 50, 'right' => 30, 'top' => 45 ], 'orientation' => 'landscape', 'download' => true ]);
# Oct 16th 2019, 08:10 javier.villanueva this is my config
# Oct 16th 2019, 08:07 scuadra ah, ok :slightly_smiling_face:
# Oct 16th 2019, 08:07 scuadra how to do it :face_with_rolling_eyes:
# Oct 16th 2019, 08:07 admad 'string'
# Oct 16th 2019, 08:07 scuadra @admad I tried ['id' => 'varchar'] but with no effect
# Oct 16th 2019, 08:06 admad @scuadra override the field using $types argument of where()
# Oct 16th 2019, 08:00 scuadra and I am still getting "Cannot convert value of type `string` to integer" error
# Oct 16th 2019, 07:59 scuadra In cake2 it was OK but now I have issues to make it work
# Oct 16th 2019, 07:59 javier.villanueva I havent.... but configure 404 is getEngine... then seems this missing configuration
# Oct 16th 2019, 07:58 scuadra when I type 12 I want to get all the apps that start with 12 -> 12, 123, 121, 1243.....
# Oct 16th 2019, 07:58 javier.villanueva WkHtmlToPdfEngine
# Oct 16th 2019, 07:58 spriz @javier.villanueva and do you have a stacktrace?
# Oct 16th 2019, 07:58 spriz @javier.villanueva it sounds like there is some missing configuration - which engine are you trying to use?
# Oct 16th 2019, 07:58 spriz @scuadra but why would you need to use `LIKE` for that?
# Oct 16th 2019, 07:57 javier.villanueva seems that not found the engine, but I have specified in app.php
# Oct 16th 2019, 07:57 scuadra @spriz I have application table and I want to search the app number (id column which is integer)
# Oct 16th 2019, 07:55 javier.villanueva any idea?
# Oct 16th 2019, 07:55 javier.villanueva I am trying to use CakePDF (https://github.com/FriendsOfCake/CakePdf) load the plugin in bootstrap.php and appear the next error: Warning: Illegal offset type in isset or empty in src\Core\Configure.php on line 404
# Oct 16th 2019, 07:54 spriz Why do you want to do that? :)
# Oct 16th 2019, 07:54 spriz and also the use case sounds weird
# Oct 16th 2019, 07:54 spriz but take care of MySQL performance issues :)
# Oct 16th 2019, 07:54 spriz @scuadra you can do `->where(['Comments.priority LIKE' => '1_'])`
# Oct 16th 2019, 07:52 scuadra Hello. How can I use LIKE as a condition on an integer column? I am using Cake 3.x and MySQL 5.7.
# Oct 16th 2019, 07:45 david morning
# Oct 16th 2019, 07:06 javier.villanueva morning
# Oct 16th 2019, 06:37 conehead Morning!
# Oct 16th 2019, 05:59 alexdd55976 Morning
# Oct 16th 2019, 02:44 admad @luizcmarin https://github.com/FriendsOfCake/awesome-cakephp/wiki/4.x-upgraded-ones
# Oct 15th 2019, 21:46 challgren https://github.com/FriendsOfCake/cakephp-upload/tree/cake-4.x would be a place to check
# Oct 15th 2019, 21:45 luizcmarin Please ask a question: will this plugin work in cake4 version or will there be other modes already included in 4? https://cakephp-upload.readthedocs.io/en/latest/index.html
# Oct 15th 2019, 20:04 daniel.upshaw Hah!!! Arg, sorry.... So it looks like you can use `$this->form` or `$this->Form`, but if it's not uppercase, it won't add it to the token
# Oct 15th 2019, 19:48 daniel.upshaw Actually it would seem that it happens in the form itself... So I would think that using `echo $this->form->control('field_name', ['options' => [1, 2, 3]]);` would do it..... but it does not
# Oct 15th 2019, 19:44 daniel.upshaw I'm trying to figure out where specifically I need to add the field to unlock it in the form automatically
# Oct 15th 2019, 19:43 daniel.upshaw If I add a new field to a model, should that automatically unlock it in the form?
# Oct 15th 2019, 18:04 ndm @mrfeedback Depends on what exactly the object looks like, what data it holds, and what exactly you need to test. For entities you could in most situations simply compare against their array representation.
# Oct 15th 2019, 17:55 ricksaccous @ndm thank you i will look into this stuff, awesome
# Oct 15th 2019, 17:54 ndm @ricksaccous PHP sucks at serving large files, as it has to keep the process running while the file is being downloaded. If the file is on the same server, then you might be able to use the `X-Sendfile`, `X-LiteSpeed`, or `X-Accel-Redirect` header if your server supports it. If you use AWS, look into redirecting people to it (check for example presigned URLs if the objects are private).