Log message #4199564

# At Username Text
# Aug 22nd 2019, 12:36 rchavik dammit, it was misconfigure nginx conf
# Aug 22nd 2019, 12:34 scuadra thank you very much for the help
# Aug 22nd 2019, 12:34 challgren I think a lot of the confusion regarding the CSRF middleware is that old cakephp/app installs have the middleware registering in the Application::middleware() but newer have it in the routes.php
# Aug 22nd 2019, 12:34 scuadra it's ok now
# Aug 22nd 2019, 12:33 neon1024 Perhaps the documentation can be improved :slightly_smiling_face:
# Aug 22nd 2019, 12:32 alexdd55976 i tripped over that too, when i first used custom validation
# Aug 22nd 2019, 12:30 scuadra very very ashamed... :|
# Aug 22nd 2019, 12:28 scuadra so it's whatever I want :slightly_smiling_face:
# Aug 22nd 2019, 12:28 scuadra I thought that when I add custom rules the second parameter should always be 'custom'...
# Aug 22nd 2019, 12:27 scuadra ahh...
# Aug 22nd 2019, 12:27 neon1024 `->add('arrival', 'beforeDeparture', [`
# Aug 22nd 2019, 12:27 neon1024 Personally I just name the rule
# Aug 22nd 2019, 12:26 scuadra so they should be something like custom_first and custom_second?
# Aug 22nd 2019, 12:26 neon1024 That might be why?
# Aug 22nd 2019, 12:26 neon1024 @scuadra You’ve named them the same ‘custom’
# Aug 22nd 2019, 12:25 scuadra but I seems that the first custom rule does not work at all
# Aug 22nd 2019, 12:25 scuadra I tried with: return $validator ->requirePresence(['arrival', 'departure']) ->date('arrival', ['ymd'], __('Please select a valid date')) ->add('arrival', 'custom', [ 'rule' => function ($value, $context) { ... }, 'message' => __('Arrival date must preceed departure date'), ]) ->add('arrival', 'custom', [ 'rule' => function ($value, $context) { ... }, 'message' => __('Incorrect arrival date'), ]);
# Aug 22nd 2019, 12:21 scuadra Hello. In Cake 3 how can I add 2 (or more) custom validation rules for a given field?
# Aug 22nd 2019, 12:13 rchavik what does the query parsing in 3.8?
# Aug 22nd 2019, 11:54 alexdd55976 me neither... i used skipauthorization to get access :)
# Aug 22nd 2019, 11:54 rchavik If i configure routes as follows, ```php Router::prefix('api', function($routes) { $routes->setExtensions('json'); $routes->resources('Nodes'); }); ``` will it strip url queries?
# Aug 22nd 2019, 11:54 neon1024 @alexdd55976 I don’t even know how to get it working, let alone try and write docs for it ,:)
# Aug 22nd 2019, 11:53 alexdd55976 @neon1024 while you are doing that you could improve the authorization middleware documention as well :)
# Aug 22nd 2019, 11:53 neon1024 Perhaps it would make a great Cakefest talk!
# Aug 22nd 2019, 11:53 neon1024 I looked in Application.php for Middleware, and CSRF is in routes.php!
# Aug 22nd 2019, 11:53 neon1024 If you were a beginner you’d have no idea what was going on
# Aug 22nd 2019, 11:52 neon1024 You just get an exception
# Aug 22nd 2019, 11:52 neon1024 The point being that CSRF and Security feel a bit muddled, and they’re a hard stop for development
# Aug 22nd 2019, 11:52 slackebot2 <alexdd55976>
# Aug 22nd 2019, 11:52 neon1024 For a beginner, well…
# Aug 22nd 2019, 11:52 neon1024 I’m hardly the worlds greatest idiot and I couldn’t work it out
# Aug 22nd 2019, 11:51 neon1024 ..and it shows there is an opportunity to improve the documentation
# Aug 22nd 2019, 11:51 neon1024 Yep, that’s me
# Aug 22nd 2019, 11:51 admad but if someone is dumb enough to add the middleware in application and for specific route too then there would be
# Aug 22nd 2019, 11:50 alexdd55976 middlewhere... everyware
# Aug 22nd 2019, 11:50 alexdd55976 middlewares.... everywhere...
# Aug 22nd 2019, 11:50 admad there aren't
# Aug 22nd 2019, 11:50 neon1024 :exploding_head:
# Aug 22nd 2019, 11:50 neon1024 ..and a component!
# Aug 22nd 2019, 11:50 neon1024 There are *two* csrf middlwares?! :S
# Aug 22nd 2019, 11:49 admad well if you have the csrfmiddleware in your application too obviously that wont wokr