Log message #4213152

# At Username Text
# Nov 13th 2019, 09:07 kgb.acct.personal @javier.villanueva You can remove pagination (just use query)
# Nov 13th 2019, 09:07 javier.villanueva in pagination
# Nov 13th 2019, 09:06 javier.villanueva Its possible to remove the limit in all index finds in cakephp 3?
# Nov 13th 2019, 09:00 kgb.acct.personal Is there LEFT OUTER JOIN in cakephp?
# Nov 13th 2019, 08:43 conehead @daniel.upshaw if you are using the vendor folder in a shared folder anyway, can't you run composer install outside of Vagrant?
# Nov 13th 2019, 07:16 jotpe Good morning everybody :slightly_smiling_face:
# Nov 13th 2019, 07:14 javier.villanueva morning
# Nov 13th 2019, 07:01 daniel.upshaw Something weird with vagrant most likely :S seems that using NFS for shared folders, it can happen. Not ideal though
# Nov 13th 2019, 07:00 daniel.upshaw I did try that
# Nov 13th 2019, 06:15 conehead did you try using sudo?
# Nov 13th 2019, 05:54 daniel.upshaw If I `composer install` outside Vagrant, it's fine... freshly provisioned a few times as well
# Nov 13th 2019, 05:54 daniel.upshaw Arrrg, for some reason when I `composer install` inside Vagrant, I'm seeing this
# Nov 13th 2019, 00:07 brian.french Ok, I'll put it there.
# Nov 13th 2019, 00:06 dereuromark agreed
# Nov 13th 2019, 00:05 challgren Id say Third Party APIs
# Nov 13th 2019, 00:05 brian.french Yeah, I didn't want to propose a new one, unless something like 'Business Integrations' or something like that made sense.
# Nov 13th 2019, 00:04 challgren Or Third Party APIs
# Nov 13th 2019, 00:04 dereuromark Misc probably -if no other one works
# Nov 13th 2019, 00:04 brian.french @dereuromark I created a plugin that interacts with Jira so I could list Versions, and Open Issues within the admin section of my apps. I published it to packagist. What category would that fall under in the README?
# Nov 12th 2019, 23:49 challgren !help
# Nov 12th 2019, 23:45 challgren Anyone know who runs @cakebot on IRC?
# Nov 12th 2019, 23:36 slackebot1 !awesome
# Nov 12th 2019, 23:36 slackebot1 Command sent from Slack by dereuromark:
# Nov 12th 2019, 23:36 brian.french Is there a place where users can publish plugins? I know it used to be the Bakery, but that doesn't seem to be updated anymore.
# Nov 12th 2019, 19:22 challgren @jotpe its more like ``` 'engine' => [ 'className' => 'CakePdf.WkHtmlToPdf', 'binary' => '/usr/local/bin/wkhtmltopdf', 'options' => [ 'print-media-type' => false, 'outline' => true, 'dpi' => 96 ], ], ```
# Nov 12th 2019, 18:28 alexmax how did you folks manage to completely switch out the application stack in 3.3 while keeping backwards compatibility? I'm just polishing off our migration to the new application/middleware stack and the changes are so far-reaching that I'm honestly very impressed that our site continued to work flawlessly on the old stack.
# Nov 12th 2019, 16:15 Martin` ah ok :)
# Nov 12th 2019, 16:13 admad @martin he's using the paginator for sorting only :)
# Nov 12th 2019, 15:57 martin no pagination needed when you do that?
# Nov 12th 2019, 15:57 martin limit to 99999999? why would you limit on that? :P
# Nov 12th 2019, 15:54 pieceof i bet yes, atomic to false otherwise atomic`: If true (default), will attempt to save all records in a single transaction. (cake2)
# Nov 12th 2019, 15:48 peter349 $this->saveMany($orders) goes through before save for each entry?
# Nov 12th 2019, 15:47 peter349 Hi
# Nov 12th 2019, 15:47 pieceof $this->paginate = [ 'limit' => 99999999999, 'maxLimit' => 99999999999 ]; yeeehaa .P
# Nov 12th 2019, 15:39 pieceof cant find a way to set pagination to give all results in one page, i just want to be able to sort,direction,limit, some times shows only 1 record , others ~20, limit => -1, limit => 'all' dont works
# Nov 12th 2019, 14:27 josbeir it should return correct in beforeRender etc
# Nov 12th 2019, 14:27 josbeir @massimoi that function will return the path but not in the initialize() callback
# Nov 12th 2019, 14:25 slackebot1 https://github.com/dereuromark/cakephp-tools/blob/master/docs/I18n/I18n.md or https://github.com/ADmad/cakephp-i18n
# Nov 12th 2019, 14:25 tobse @massimoi In Cake3 themes are handled like plugins (https://book.cakephp.org/3/en/views/themes.html). Sorry but I don't remember how this was handled in Cake2. I think I even didn't use them. For calling separate template-files depending on your locale you could render a specific template in your controller (https://book.cakephp.org/3/en/controllers.html#rendering-a-specific-template). Or take a look at
# Nov 12th 2019, 14:12 pieceof k, ty sir
# Nov 12th 2019, 14:11 admad @pieceof if you want to be able to use to order using `?sort=tile` for e.g. then yes `Paginator` can do that for you