# |
Dec 23rd 2019, 13:19 |
dereuromark |
coolio |
# |
Dec 23rd 2019, 13:19 |
challgren |
Ok, I’ll work on it this week. I personally dont use your built in mailer but I understand the new cake mailer in 4.x |
# |
Dec 23rd 2019, 13:18 |
dereuromark |
I dont have any 4.x apps yet really, so not much I can help with the next weeks. |
# |
Dec 23rd 2019, 13:18 |
dereuromark |
Would be awesome if you could make a working branch that contains the email part, and PR it. I can help getting more test coverage in. |
# |
Dec 23rd 2019, 13:18 |
dereuromark |
IdeHelper I tag now :) With queue I need help to get the current functionality working. Once that PR is merged, we can also tag a beta |
# |
Dec 23rd 2019, 13:12 |
challgren |
Still feels a bit betaish with some issues with migrations and bake |
# |
Dec 23rd 2019, 13:11 |
challgren |
But I did get my first 4.0 app done and running live |
# |
Dec 23rd 2019, 13:10 |
challgren |
Feels all awkward sending email from the browser request |
# |
Dec 23rd 2019, 13:10 |
challgren |
Ok, Im really itching for queue and ide-helper |
# |
Dec 23rd 2019, 13:09 |
dereuromark |
Yeah, they all need a beta tag and then it should be OKish |
# |
Dec 23rd 2019, 13:08 |
challgren |
but shim, queue, tools, ide-helper all depend on each other one way or another so they don’t wanna play nice and use 4.0 |
# |
Dec 23rd 2019, 13:08 |
challgren |
I was planning on using the dev-cake4 until you released beta/stable |
# |
Dec 23rd 2019, 13:07 |
dereuromark |
lets do beta then and once all are done, it should be green again |
# |
Dec 23rd 2019, 13:06 |
dereuromark |
ah ok |
# |
Dec 23rd 2019, 13:02 |
challgren |
Yeah its a giant circle jerk of a plugin needs 4.x-dev but we want to install ^4.0 |
# |
Dec 23rd 2019, 13:01 |
challgren |
Ok so prefer-lowest is going to fail since 3 plugins are linked to each other |
# |
Dec 23rd 2019, 12:58 |
challgren |
PRs submitted |
# |
Dec 23rd 2019, 12:51 |
john.zwarthoed |
Ah yes that was it, thanks :thumbsup: |
# |
Dec 23rd 2019, 12:47 |
ndm |
Then it's very possibly type related. If you don't specify a type, then the value is being bound as a string. |
# |
Dec 23rd 2019, 12:37 |
john.zwarthoed |
@ndm |
# |
Dec 23rd 2019, 12:37 |
john.zwarthoed |
When i print the query before executing it looks all ok |
# |
Dec 23rd 2019, 12:37 |
john.zwarthoed |
The query executed doesn’t return the expected result, but it does not give an exception. |
# |
Dec 23rd 2019, 12:22 |
challgren |
Ive been hearing a lot about router and plugins causing issues in 3.8 and 4.0 |
# |
Dec 23rd 2019, 12:22 |
dereuromark |
https://github.com/cakephp/cakephp/issues/13997 is basically whats blocking me. |
# |
Dec 23rd 2019, 12:22 |
dereuromark |
yeah, email is missing. I havent tried the new email topic of cake4 yet. |
# |
Dec 23rd 2019, 12:21 |
challgren |
I think queue still needs help with email stuff but I cant even load it into a project |
# |
Dec 23rd 2019, 12:21 |
dereuromark |
I still have failing 3.x tests since last release for some reason, those regressions kind of block me moving foward in 4.x as well (not sure how and what needs to be merged over) |
# |
Dec 23rd 2019, 12:21 |
challgren |
Ok, I’ll do the PRs |
# |
Dec 23rd 2019, 12:20 |
challgren |
No plugin to manage the plugins? :P |
# |
Dec 23rd 2019, 12:20 |
dereuromark |
I expect some community involvement as I have way too many plugins to do this on my own. |
# |
Dec 23rd 2019, 12:20 |
dereuromark |
You can PR any such things and hope it is green to be released :) |
# |
Dec 23rd 2019, 12:19 |
challgren |
or maybe switching from `4.x-dev as 4.0.0` to `^4.0`? |
# |
Dec 23rd 2019, 12:17 |
challgren |
and idehelper |
# |
Dec 23rd 2019, 12:17 |
challgren |
@dereuromark any word on queue being 4.x ready yet? |
# |
Dec 23rd 2019, 12:08 |
ndm |
@john.zwarthoed "_doens't work_" could mean anything, a little more info on what exactly is happening might be helpful. That being said, it's probably either quoting or type related, ie the field either needs to be quoted (enable auto quoting, or quote the field manually via the drivers `quoteIdentifier()` method), or you need to specify a type for the binding (`gte('post_count', 2, 'integer')`), or both. |
# |
Dec 23rd 2019, 11:57 |
megan |
@j.naiaretti Hi! Will pm you for more info regarding the CakePHP 4 training sign up issue |
# |
Dec 23rd 2019, 11:43 |
john.zwarthoed |
@gianmarxgagliardi i gues you could use collections for that: https://book.cakephp.org/3/en/core-libraries/collections.html |
# |
Dec 23rd 2019, 11:42 |
gianmarxgagliardi |
I should make a multiple listing. where two fields have the same values in common. For example, if I enter Inter, Milan, Juve they will have nationality_season (nazionalita_campionato) and series_season (serie_campionato) as common fields. Furthermore, the user should decide on the number of advertisements to be made. *can I find something to help me do this in the documentation?* |
# |
Dec 23rd 2019, 11:36 |
rochasmarcelo |
It seems your table does not includes the method (finder) findAuth |
# |
Dec 23rd 2019, 11:22 |
john.zwarthoed |
```->having(['"post_count" >= 2'])``` works, but ```->having([$query->newExpr()->gte('post_count', 2)])``` doesnt |
# |
Dec 23rd 2019, 11:21 |
john.zwarthoed |
Their docs say using having on a field alias is possible |