# |
Sep 6th 2019, 11:33 |
neon1024 |
No actual tickets titled “Move this to AWS” yet though, so :man-shrugging: |
# |
Sep 6th 2019, 11:33 |
neon1024 |
Most people in my organisation have a hard-on for AWS, so there is lots of talk about putting this on AWS and AWS that and etc |
# |
Sep 6th 2019, 11:32 |
spriz |
:) |
# |
Sep 6th 2019, 11:32 |
spriz |
Then it's all good |
# |
Sep 6th 2019, 11:32 |
neon1024 |
A droplet per application I mean |
# |
Sep 6th 2019, 11:32 |
spriz |
Ah I see :) |
# |
Sep 6th 2019, 11:32 |
neon1024 |
So I don’t tend to worry about distributed services |
# |
Sep 6th 2019, 11:32 |
neon1024 |
My applications run on a single Digital Ocean droplet |
# |
Sep 6th 2019, 11:32 |
spriz |
Ah I see |
# |
Sep 6th 2019, 11:32 |
spriz |
you avoid those troubles with DB sessions :slightly_smiling_face: |
# |
Sep 6th 2019, 11:31 |
neon1024 |
@spriz I’m not too sure how the servers are configured actually. It’s setup using Ansible |
# |
Sep 6th 2019, 11:31 |
spriz |
and if you, you need sticky sessions to avoid troubles with PHP sessions |
# |
Sep 6th 2019, 11:31 |
spriz |
@neon1024 don't you have multiple PHP workers for the same site? :slightly_smiling_face: |
# |
Sep 6th 2019, 11:30 |
development |
In my case it won't be a Node service that is running concurrently with my webserver, instead it will be launched whenever needed, produce results and return. |
# |
Sep 6th 2019, 11:29 |
neon1024 |
@development I use a JSON web service to interface CakePHP 3 and Vue.js |
# |
Sep 6th 2019, 11:28 |
neon1024 |
@spriz I never thought to change it, but I would need to be convinced that storing my sessions in the database wasn’t generating additional load on my application database. Unless perhaps you have a dedicated database for sessions. |
# |
Sep 6th 2019, 11:27 |
development |
I have a Node app that I want to interface with through CakePHP. I would like to create some sort of class that will manage most if not all the communication. In CakePHP3, where should this class be created and can it be extended by a cake class to make it interface with cake better? I expect to use this from the CakeShell but possibly also from a controller. |
# |
Sep 6th 2019, 11:27 |
spriz |
DB ftw |
# |
Sep 6th 2019, 11:27 |
spriz |
I never dared to use php engine though :S |
# |
Sep 6th 2019, 11:26 |
spriz |
anything else stated in php.ini ? :) |
# |
Sep 6th 2019, 10:43 |
neon1024 |
I’d like to extend my session time to 30 minutes, but this configuration doesn’t seem to be working for me. What have I missed? |
# |
Sep 6th 2019, 10:42 |
slackebot |
<neon1024> |
# |
Sep 6th 2019, 10:39 |
spriz |
And with core translations behavior :) I'll live with the auto tables for now it seems! ;P |
# |
Sep 6th 2019, 10:35 |
alexdd55976 |
you shouldn't do it in the controller anyway. `$EmailTable->YourMethodName($params)`... no need to make any querys in the controller. |
# |
Sep 6th 2019, 10:34 |
spriz |
Welp, this also fails if using default Cake DB sessions setup :P |
# |
Sep 6th 2019, 10:31 |
ndm |
I think there have been discussions, but since this "issue" exists forever already and there hasn't been any changes yet, the conclusion was probably to not do that. |
# |
Sep 6th 2019, 10:28 |
spriz |
has it been considered to add that to cakephp/app ? :P |
# |
Sep 6th 2019, 10:28 |
spriz |
much love! |
# |
Sep 6th 2019, 10:26 |
ndm |
@spriz There is a way... kind of... https://book.cakephp.org/3.0/en/development/configuration.html#disabling-generic-tables |
# |
Sep 6th 2019, 10:22 |
jotpe |
Thanks everybody for your help :slightly_smiling_face: |
# |
Sep 6th 2019, 10:21 |
neon1024 |
Would be a nice config option in `bootstrap.php` :slightly_smiling_face: |
# |
Sep 6th 2019, 10:21 |
neon1024 |
I think perhaps it was @ionas who disabled it |
# |
Sep 6th 2019, 10:20 |
neon1024 |
To be fair if you do get an exception, the exception text does tell you about auto-generated tables |
# |
Sep 6th 2019, 10:20 |
neon1024 |
I * think* that you can, but I don’t recall how |
# |
Sep 6th 2019, 10:20 |
spriz |
Seems like a lot of people hits these issues, including myself in early 3.x days |
# |
Sep 6th 2019, 10:19 |
spriz |
would rather get an exception right off the bat |
# |
Sep 6th 2019, 10:19 |
spriz |
I would love for some way to disable the auto usage of that `\Cake\Orm\Table` :P |
# |
Sep 6th 2019, 10:19 |
jotpe |
$emailTable = TableRegistry::getTableLocator()->get(' *Users.* Emailaddresses'); instead of $emailTable = TableRegistry::getTableLocator()->get('Emailaddresses'); |
# |
Sep 6th 2019, 10:18 |
spriz |
that is because `findByUserId` is auto magic on `Cake\Orm\Table` :slightly_smiling_face: |
# |
Sep 6th 2019, 10:18 |
jotpe |
I hate magic. The Model is in a plugin. Correct way to get the Table was `$emailTable = TableRegistry::getTableLocator()->get(' *Users.* Emailaddresses');`. But for some reason `$emailTable->findByUserId($user->getIdentifier());` worked nevertheless |
# |
Sep 6th 2019, 10:18 |
neon1024 |
I did think this was odd `EmailaddressesTable` instead of `EmailAddressesTable` |