Log message #4220153

# At Username Text
# Dec 27th 2019, 07:22 alexdd55976 morning duderinos
# Dec 27th 2019, 06:14 slackebot transactions table is a common for all type of transactions like bookings, donations, memberships so we have tracked this using pivot table for all these table. all is file but in the booking section i am stucked according to requirement and the requirement is above mentioned. please check and help me
# Dec 27th 2019, 06:14 yadav.manu36 Hello I have some problem to save data with belongsToMany data but i am stuck because we have different scenarios to save data. like we have single form to save booking and transactions also we need to manage belongsToMany strategy so please help me about how to do on this task. I have 3 tables like below: 1. bookings 2. transactions 3. transactions_bookings These are managed from 1 single form in the backend/admin section.
# Dec 27th 2019, 04:19 challgren Why does codecov complain about a finally? https://codecov.io/gh/narendravaghela/cakephp-mailgun/src/master/src/Mailer/Transport/MailgunTransport.php#L167
# Dec 27th 2019, 03:39 latenal It worked. Thanks
# Dec 27th 2019, 03:18 challgren Anyone have an idea how to test a trait?
# Dec 27th 2019, 02:48 jeff.black @latenal https://book.cakephp.org/3/en/core-libraries/httpclient.html#sending-request-bodies
# Dec 27th 2019, 02:45 ndm Pass JSON data, ie a string (`json_encode(['appId' => $appId, 'secret' => $secret])`), array data is treated as form data. gn8
# Dec 27th 2019, 02:38 latenal Hey guys, how do you set a `Content-Type` in `Cake\Http\Client` post-request? I tried ```$response = $this->httpClient->post( $url, ['appId' => $appId, 'secret' => $secret], [ 'headers' => ['content-type' => 'application/json']] );``` This is what it makes: ```POST /login HTTP/1.1 accept: */* Connection: close Content-Length: 34 content-type: application/json content-type: application/x-www-form-urlencoded```
# Dec 27th 2019, 01:22 neothermic WRT the modem discussion, speed of your first modem might also be an indicator of when you first got internet... mine was like 300 baud, but we had internet in 94... :P
# Dec 27th 2019, 00:22 challgren Are you sshing into the remote server?
# Dec 26th 2019, 23:09 peppejaripappalardo Hello guys, with cakephp 4 i get an error for databaseconnection. ```CakePHP is NOT able to connect to the database. Connection to database could not be established: SQLSTATE[HY000] [2002] No such file or directory```
# Dec 26th 2019, 19:08 AlexMax `/join #freenode_#cakephp:matrix.org` from a Matrix client such as Riot.
# Dec 26th 2019, 19:07 AlexMax So I just found out that you can join the CakePHP IRC channel using the Matrix protocol.
# Dec 26th 2019, 17:33 ron.rattie My first modem was 2400 baud, I incurred many big long distances phone bills connecting to "local" BBS in Virginia when I was living in Maryland (46 yrs old now)
# Dec 26th 2019, 13:20 ndm :thinking_face:
# Dec 26th 2019, 13:20 slackebot <ndm>
# Dec 26th 2019, 13:09 dsar I really enjoyed that era of internet
# Dec 26th 2019, 13:08 dsar When I got my first 56k I was so excited to see how MOTDs of various servers were so fast to show up
# Dec 26th 2019, 13:07 dsar I'm 35 years old and my first modem was a 14.4k
# Dec 26th 2019, 12:47 challgren Hey I remember when you had to put the headset on the modem!
# Dec 26th 2019, 12:36 ndm 28k was more than enough to download sexy bill gates pictures...
# Dec 26th 2019, 12:19 admad not 56k? you are old :P
# Dec 26th 2019, 12:06 ndm @kailas Look, I'm not _that_ old yet, when I was in what you'd call "high school", we already had 28k super high speed modems :)
# Dec 26th 2019, 03:25 challgren @ndm you are the man! ->onlyMethods() works
# Dec 26th 2019, 01:53 ashesh.social is there is any possibility to add Log in middleware files ?
# Dec 26th 2019, 01:06 challgren I'll have to try that, ah no worries man, I hear you man I hear yah
# Dec 26th 2019, 01:04 ndm Also I'm a little drunk over here, it was a rough day, Christmas is really stressful when you're old :grimacing:
# Dec 26th 2019, 01:02 ndm If a mocked mailer would normally work, then try the `onlyMethods()` option, that should be fine... I wasn't really getting the full picture initially, hence I recommended the transport
# Dec 26th 2019, 01:01 challgren Hmmm ok yeah I'm going to need to do more research.
# Dec 26th 2019, 00:59 ndm If that's in your `aboutUs()` method, then certainly that's the problem, pretty sure that will override the mock transport
# Dec 26th 2019, 00:58 challgren @ndm I wonder if because I'm calling setProfile([transport => mailgun]) in the mailer function
# Dec 26th 2019, 00:54 ashesh.social Thanks for the support @ndm @challgren Will check it :+1::skin-tone-3:
# Dec 26th 2019, 00:53 ndm or maybe a little cleaner like ```$check = [ 'plugin' => 'MyPlugin', 'prefix' => 'Api', 'controller' => 'TeamsController', 'action' => 'payment_status', // ... ]; if (array_intersect_assoc($check, $request->getParams()) === $check) { // ... }```
# Dec 26th 2019, 00:53 challgren $this->request->getParam('controller')
# Dec 26th 2019, 00:53 ndm like `andand $request->getParam('controller') === 'TeamsController' andand $request->getParam('action') === 'payment_status' andand ...`
# Dec 26th 2019, 00:51 ashesh.social How can I whitelist that method
# Dec 26th 2019, 00:51 ashesh.social Say I’m having a controller called “TeamsController” and “payment_status” is a method inside that controller
# Dec 26th 2019, 00:50 ashesh.social Sorry couldn’t get it
# Dec 26th 2019, 00:47 ndm Compare the `controller` and `action` params too, also `plugin` if you need to
# Dec 26th 2019, 00:45 ashesh.social How to add particular function in a controller to the above code @challgren @ndm