# |
Mar 13th 2019, 16:24 |
ricksaccous |
in the behavior set up |
# |
Mar 13th 2019, 16:24 |
ricksaccous |
you need to dig deeper into reading about the configuration/docs and if you're not understanding what you're reading you probably need to understand more about cake but basically your image field name has to be configured |
# |
Mar 13th 2019, 16:23 |
ricksaccous |
hehe |
# |
Mar 13th 2019, 16:23 |
this.impetus |
I don't think, sorry, that I really understand the fields option. What's their purpose/function? |
# |
Mar 13th 2019, 16:22 |
this.impetus |
Nope; paths exist, permissions correct |
# |
Mar 13th 2019, 16:22 |
ricksaccous |
but those are possible as well |
# |
Mar 13th 2019, 16:22 |
ricksaccous |
it could be a number of issues, including you might not have your fields option set up correctly |
# |
Mar 13th 2019, 16:21 |
neon1024 |
Perhaps the folder doesn’t exist, or there is a permissions issue? |
# |
Mar 13th 2019, 16:20 |
this.impetus |
@ricksaccous Ok—so I looked here; I tried adding a path configuration here, but it seemed to do nothing—neither errors nor any files arriving in the designated path. Sorry I am out of my depth here but taking over a project from someone else |
# |
Mar 13th 2019, 16:17 |
ricksaccous |
@this.impetus https://cakephp-upload.readthedocs.io/en/latest/examples.html |
# |
Mar 13th 2019, 16:12 |
this.impetus |
as an added note, in the "Configuration" section of the docs there is a lot of sample code, but, I don't know where that might go in order to emulate it. |
# |
Mar 13th 2019, 16:10 |
this.impetus |
heyo... novice here. trying to use jose gonzlez's Upload Plugin. Have installed it, don't really understand how to configure it... uploading an image at this point "works" from the front end but the files don't seem to go anywhere |
# |
Mar 13th 2019, 16:08 |
admad |
cakenub: just ask your question and wait for someone to respond |
# |
Mar 13th 2019, 16:05 |
cakenub |
hey room.. need some cake help. anyone free? |
# |
Mar 13th 2019, 15:58 |
steinkel |
and https://github.com/CakeDC/auth/releases/tag/4.0.0 |
# |
Mar 13th 2019, 15:58 |
ricksaccous |
np |
# |
Mar 13th 2019, 15:58 |
kaliel |
thx :slightly_smiling_face: |
# |
Mar 13th 2019, 15:58 |
kaliel |
oh yes sure |
# |
Mar 13th 2019, 15:58 |
ricksaccous |
can be a field that doesn't exist in db if it doesn't need to be saved |
# |
Mar 13th 2019, 15:58 |
kaliel |
i tought about it but i will have a duplicate field :S |
# |
Mar 13th 2019, 15:57 |
ricksaccous |
@kaliel create another field that you populate yourself with Time::now(); |
# |
Mar 13th 2019, 15:53 |
kaliel |
I'd like to create a custom validation rule based on previous persisted entity by checking the filed 'created' populated by TimestampBehavior. Seems that TimestampBehavior adds 'created' in beforeSave so i can't validate, any idea on how to manage this please ? |
# |
Mar 13th 2019, 15:44 |
dereuromark |
https://github.com/dereuromark/cakephp-tinyauth/pull/97/files if anyone can help maybe? |
# |
Mar 13th 2019, 15:43 |
neon1024 |
Seems I can use `ini_set('user_agent', 'Daves great new user agent string')` :slightly_smiling_face: |
# |
Mar 13th 2019, 15:42 |
dereuromark |
yeah that one. I wanted to try to upgrade it fully to support them. |
# |
Mar 13th 2019, 15:41 |
neon1024 |
@dereuromark The middleware one? I haven’t tried it in a long time |
# |
Mar 13th 2019, 15:40 |
neon1024 |
How can I change the user-agent string from ‘CAKEPHP’ to something else for a post request using the HttpClient? |
# |
Mar 13th 2019, 15:40 |
dereuromark |
anyone working with authentication or more importantly authorization plugin yet? "The request to `/cars/add` did not apply any authorization checks." must be missing sth for tinyauth to work with new new plugins. |
# |
Mar 13th 2019, 15:05 |
ricksaccous |
thanks @neon1024;) |
# |
Mar 13th 2019, 15:04 |
neon1024 |
Thanks @dereuromark setting my default logging to false scope worked :thumbsup: |
# |
Mar 13th 2019, 15:03 |
neon1024 |
I don’t even think you *have* to pass an array, I think `where()` might take string, so you could lose the `[]` also :thinking_face: |
# |
Mar 13th 2019, 15:02 |
ricksaccous |
yeah i'll prob just do it that way |
# |
Mar 13th 2019, 15:02 |
ricksaccous |
yeah it's mysql |
# |
Mar 13th 2019, 15:02 |
neon1024 |
Assuming MySQL :point_up: |
# |
Mar 13th 2019, 15:02 |
ricksaccous |
oh wew |
# |
Mar 13th 2019, 15:02 |
neon1024 |
Well, if you’re doing that, why not `->where(['login_lockdown < NOW()'])` |
# |
Mar 13th 2019, 15:02 |
ricksaccous |
or is that evil |
# |
Mar 13th 2019, 15:02 |
ricksaccous |
\DateTime(); |
# |
Mar 13th 2019, 15:01 |
ricksaccous |
for a quick dirty one can i just do 'login_lockdown < ' => new |
# |
Mar 13th 2019, 15:01 |
neon1024 |
There is also the `->lt()` method |
# |
Mar 13th 2019, 15:01 |
neon1024 |
`->where(['login_lockdown <' => $datetimeInstance])` is the approach I use |