# |
Apr 1st 2019, 18:41 |
ricksaccous |
but funnily enough the thing you linked could be useful |
# |
Apr 1st 2019, 18:41 |
ricksaccous |
no i think i want this https://book.cakephp.org/3.0/en/orm/query-builder.html#inserting-data |
# |
Apr 1st 2019, 18:40 |
etipaced |
@ricksaccous Something like this? https://book.cakephp.org/3.0/en/orm/query-builder.html#getting-arrays-instead-of-entities |
# |
Apr 1st 2019, 18:35 |
ricksaccous |
ie i'm importing data from another db and i want to preserve the ids |
# |
Apr 1st 2019, 18:35 |
ricksaccous |
what's the best way to insert a bunch of rows in cake without entity hydration? |
# |
Apr 1st 2019, 18:34 |
ricksaccous |
remove the register/applymiddleware lines |
# |
Apr 1st 2019, 18:31 |
snake-venom |
what you suggest ? |
# |
Apr 1st 2019, 18:30 |
snake-venom |
actual its a Zapier end point so zapier will not discuss CSRF |
# |
Apr 1st 2019, 18:29 |
snake-venom |
yes admad,, |
# |
Apr 1st 2019, 18:29 |
admad |
You can't be inflicted with csrf if not using cookies/session |
# |
Apr 1st 2019, 18:29 |
admad |
If you are developing only a stateless api then simply get rid of csrf middleware |
# |
Apr 1st 2019, 18:26 |
ricksaccous |
because it's being applied everywhere |
# |
Apr 1st 2019, 18:26 |
ricksaccous |
i think you shouldn't apply middleware in that /scope |
# |
Apr 1st 2019, 18:22 |
snake-venom |
yes i am only working at api end so its showing on api |
# |
Apr 1st 2019, 18:22 |
ricksaccous |
or is it finding the route? |
# |
Apr 1st 2019, 18:22 |
ricksaccous |
csrf error |
# |
Apr 1st 2019, 18:22 |
ricksaccous |
i mean |
# |
Apr 1st 2019, 18:22 |
ricksaccous |
is your only error there an api error? |
# |
Apr 1st 2019, 18:21 |
ricksaccous |
your resources doesn't make sense |
# |
Apr 1st 2019, 18:19 |
snake-venom |
any suggestion ? |
# |
Apr 1st 2019, 18:09 |
snake-venom |
https://codeshare.io/5Z0W9V <challgren> can you check if its routes.php ok ? means i did not make any wrong things in this.. |
# |
Apr 1st 2019, 18:07 |
itmpls |
is there a way to manually apply hydration to a manual join call? |
# |
Apr 1st 2019, 18:03 |
challgren |
in my routes.php i checked CSRF setting is in Router::scope('/') but not in Router::prefix('api') and CSRF error coming on this route "/api/" |
# |
Apr 1st 2019, 18:03 |
challgren |
https://github.com/cakephp/app/blob/master/config/routes.php#L50 |
# |
Apr 1st 2019, 18:02 |
challgren |
Check your routes.php https://github.com/cakephp/app/blob/master/config/routes.php#L58 |
# |
Apr 1st 2019, 18:02 |
snake-venom |
in beforeFilter but its still throwing error CSRF |
# |
Apr 1st 2019, 18:02 |
snake-venom |
i also added $this->getEventManager()->off($this->Csrf); |
# |
Apr 1st 2019, 18:02 |
challgren |
@snake-venom check your routes.php |
# |
Apr 1st 2019, 18:01 |
snake-venom |
in 3.7 cakephp , i want to disable CSRF for api .. |
# |
Apr 1st 2019, 17:12 |
shoe |
@admad, and of course, that worked like a charm. Thanks again. |
# |
Apr 1st 2019, 17:06 |
shoe |
@admad, I was just about to do that… I WANT remove() to do that… but I totally get it. Thanks! |
# |
Apr 1st 2019, 17:05 |
admad |
@shoe set the cookie with date in the past |
# |
Apr 1st 2019, 17:03 |
shoe |
Unfortunately, that removes it from the $cookies object, but after a refresh the cookie is still there. If anyone knows more about this thing than I do, I’d be much obliged for some insight. |
# |
Apr 1st 2019, 17:02 |
shoe |
```$cookies = $this->request->getCookieCollection(); if ($cookies->has('remember_me')) { $cookies = $cookies->remove('remember_me'); } $this->request = $this->request->withCookieCollection($cookies);``` |
# |
Apr 1st 2019, 17:02 |
shoe |
Re: deleting cookies. I feel like this is what needs to happen |
# |
Apr 1st 2019, 16:57 |
shoe |
Were you simply uploading a single file? Sounded like you were uploading multiples in a single request |
# |
Apr 1st 2019, 16:48 |
birdy247 |
@shoe that says max files per single request |
# |
Apr 1st 2019, 16:40 |
shoe |
Probably need to change max_file_uploads in php.ini |
# |
Apr 1st 2019, 16:37 |
birdy247 |
any ideas what would cause this? |
# |
Apr 1st 2019, 16:36 |
birdy247 |
fine* |
# |
Apr 1st 2019, 16:36 |
birdy247 |
I removed some files, and it was fin |