Log message #4209236

# At Username Text
# Oct 17th 2019, 12:00 jotpe @francis.nadal that should work :slightly_smiling_face:
# Oct 17th 2019, 12:00 jotpe @vjnvisakh I use CakePdf (https://github.com/FriendsOfCake/CakePdf/tree/1.0) in a old project. You need to create a .ctp as template and pass some viewVars
# Oct 17th 2019, 11:58 francis.nadal @jotpe my other question is, they have different validation should I put them differently like this?
# Oct 17th 2019, 11:57 francis.nadal @jotpeindeed! thank you very much for your help. I will be using the plugin
# Oct 17th 2019, 11:54 jotpe When you remove (or comment out) the validator the file is not validated, so better add some rules :slightly_smiling_face:
# Oct 17th 2019, 11:53 jotpe it's path
# Oct 17th 2019, 11:53 jotpe @francis.nadal there you go: https://cakephp-upload.readthedocs.io/en/latest/configuration.html#behavior-configuration-options
# Oct 17th 2019, 11:46 slackebot1 <francis.nadal>
# Oct 17th 2019, 11:46 francis.nadal @jotpe file was moved too but only the filename was saved in the db. so I might need to check cake-upload plugin documentation how to add the path so that I can render the image in frontend as well
# Oct 17th 2019, 11:45 francis.nadal actually while I tried commenting out the validator with scalar my entry was successful
# Oct 17th 2019, 11:45 vjnvisakh How to make a pdf from a url in cake2
# Oct 17th 2019, 11:43 francis.nadal um, sorry very noob question, could I try all of them like this?
# Oct 17th 2019, 11:42 neon1024 Nor do they have a max length
# Oct 17th 2019, 11:42 neon1024 They are array
# Oct 17th 2019, 11:42 neon1024 Uploaded files are not scalar
# Oct 17th 2019, 11:41 jotpe Have fun :slightly_smiling_face:
# Oct 17th 2019, 11:41 francis.nadal thank you! looking into it now
# Oct 17th 2019, 11:40 jotpe Remove the validator with photo and try something from https://cakephp-upload.readthedocs.io/en/latest/validation.html#uploadvalidation
# Oct 17th 2019, 11:38 francis.nadal that would be
# Oct 17th 2019, 11:38 jotpe What's the content of validationDefault() in UsersTable for photo?
# Oct 17th 2019, 11:37 jotpe There's something with your Validation Rules in UsersTable
# Oct 17th 2019, 11:35 francis.nadal does it mean I ahve to set path to where the photos will be moved?
# Oct 17th 2019, 11:35 francis.nadal @jotpe running this $this->request->getData('photo'); I get this
# Oct 17th 2019, 11:34 alexdd55976 seems that you need to add a file when you want to add a user
# Oct 17th 2019, 11:33 francis.nadal @jotpe hi i get this when debug is enabled
# Oct 17th 2019, 11:31 jotpe Form looks good. You see the post data with `if ($this->request->is('post')) { debug($this->request->getData('photo'));...`
# Oct 17th 2019, 11:27 francis.nadal @conehead this is my form
# Oct 17th 2019, 11:26 conehead And how does your form look like?
# Oct 17th 2019, 11:26 francis.nadal Thank you very much! I will try it right now
# Oct 17th 2019, 11:25 slackebot1 <jotpe>
# Oct 17th 2019, 11:25 jotpe @francis.nadal I don't know about this plugin, but you can try to debug it. In your UsersController try something like this:
# Oct 17th 2019, 11:15 francis.nadal Do I also need to configure this here in users table?
# Oct 17th 2019, 11:15 francis.nadal hello, I have a question regarding the cakephp-upload plugin. I wanted to have a photo upload for users and it was suggested to me to use it. But I was trying out their documentation example(https://cakephp-upload.readthedocs.io/en/latest/examples.html) but I seem to not get it to work. I always get this error.
# Oct 17th 2019, 10:02 koeller If I do it your way I don’t have to do the setConnection on the loaded Model :slightly_smiling_face: Thank you!
# Oct 17th 2019, 09:52 slackebot1 <challgren>
# Oct 17th 2019, 09:51 slackebot1 <challgren>
# Oct 17th 2019, 09:50 challgren That might be your issue is your loading the config after the alias
# Oct 17th 2019, 09:49 challgren and maybe load your config before the alias
# Oct 17th 2019, 09:45 koeller To have be aware of not configured connection names passed?
# Oct 17th 2019, 09:44 challgren @koeller did you try to inspect it with `ConnectionManager::configured()`?
# Oct 17th 2019, 09:41 koeller @alexdd55976: For now I’m able to perform the action I want in loading the connection into the Model directly, like: ```$this->Users ->setConnection(ConnectionManager::get($args->getArgument('connection')))```