Log message #4268314

# At Username Text
# Jul 25th 2021, 20:55 kevin.pfeifer And i was just reminded of our discussion yesterday when i looked into the "Update" Topic in the cakephp/app readme section :)
# Jul 25th 2021, 20:49 kevin.pfeifer I was just going to type something :)
# Jul 25th 2021, 20:35 alamnaryab Thank you @st.steinkuehler I have pasted whole array and commented it whenever I will need to customize anything I will be uncomenting and making required changes.
# Jul 25th 2021, 20:04 st.steinkuehler @alamnaryab see here the list of the default templates which you can change https://github.com/cakephp/cakephp/blob/fe6fd198e33f69c1d36d5df4ac2c92d26ffa4807/src/View/Helper/FormHelper.php#L88 Once (older versions than 4) this list was linked in the book to the api doc where the list was accessible and readable, but not now...(and I don't know how to contribute to the book doc).
# Jul 25th 2021, 19:48 kevin.pfeifer you can adjust all default templates at one via https://book.cakephp.org/4/en/views/helpers/form.html#customizing-the-templates-formhelper-uses
# Jul 25th 2021, 19:38 slackebot2 `$this->Form->setTemplate(long_array)` in each `form`
# Jul 25th 2021, 19:38 alamnaryab i have created `config/myTemplate.php` and then I am calling this template with each input as ```echo $this->Form->control('fullname', [ 'templates'=>'myTemplate', 'class'=>'form-control']);``` is there any method where I can change the default template, or I do not write `'template'=>'myTemplate'` with each input I aslo do not like to write
# Jul 25th 2021, 19:15 kevin.pfeifer or you can create a custom middleware which does that splitting for you before the request gets to your controller or anywhere else
# Jul 25th 2021, 18:28 alamnaryab it says deprecated here https://api.cakephp.org/3.4/class-Cake.Routing.Router.html#_parseNamedParams
# Jul 25th 2021, 18:23 alamnaryab following above link is showing error `*Call to undefined method Cake\Routing\Router::parseNamedParams()*` is '*parseNamedParams()*' method available in cakephp4?
# Jul 25th 2021, 17:46 kevin.pfeifer or check https://book.cakephp.org/3/en/development/routing.html#handling-named-parameters-in-urls
# Jul 25th 2021, 17:45 kevin.pfeifer @alamnaryab add this to you add function ```public function add(...$params) {``` and then you will get an array of all following parameters in `$params` But you will have to manually split the key-values apart
# Jul 25th 2021, 16:52 alamnaryab Hi All `http://project.com/guardians/add/student:61/other:21` how can I get named parameters in cake4?
# Jul 24th 2021, 23:22 jojomartius ->add(new ErrorHandlerMiddleware(Configure::read('Error'))) inestead of >add(ErrorHandlerMiddleware::class)
# Jul 24th 2021, 23:22 jojomartius got it!
# Jul 24th 2021, 23:12 jojomartius yes, thank you so much so far
# Jul 24th 2021, 23:05 kevin.pfeifer well i gotta get some sleep. maybe someone else can help till tomorrow :)
# Jul 24th 2021, 23:04 jojomartius especially since removing the middleware helps
# Jul 24th 2021, 23:03 kevin.pfeifer very strange indeed
# Jul 24th 2021, 23:03 jojomartius no also not consuming error's
# Jul 24th 2021, 23:03 jojomartius ah let me check my vendors
# Jul 24th 2021, 23:02 jojomartius nope, only consuming Cache,Datasources,EmailTransport, Email, Log and Security.salt
# Jul 24th 2021, 23:01 jojomartius which means ErrorHandlerMiddleware is not looking in the right config
# Jul 24th 2021, 23:01 kevin.pfeifer or do you have ```Configure::consume( 'Error' )``` somewhere?
# Jul 24th 2021, 23:00 jojomartius contains everthing
# Jul 24th 2021, 22:59 kevin.pfeifer maybe try outputting ``` Configure::read( 'Error' )``` in your Application.php in the middleware function and see if everything is still there
# Jul 24th 2021, 22:58 jojomartius mh no if i remove it from my bootstrap, its till rendering the expcetions - but its not takeing "skipLogs" into account ,:)
# Jul 24th 2021, 22:56 kevin.pfeifer in my bootstrap.php
# Jul 24th 2021, 22:56 kevin.pfeifer well I commented out ```( new ErrorHandler( Configure::read( 'Error' ) ) )->register();``` and it still worked
# Jul 24th 2021, 22:55 jojomartius but somehow it feels bad to remove the errorhandlermiddleware
# Jul 24th 2021, 22:55 jojomartius yes, indeed thats changing the behavior completly. removing ->add(ErrorHandlerMiddleware::class) helpts that the app.php is controlling the logging behavior
# Jul 24th 2021, 22:54 kevin.pfeifer not the thing in the bootstrap.php
# Jul 24th 2021, 22:54 kevin.pfeifer ok, its definitely the ErrorHandlerMiddleware in the Application.php which causes my logic
# Jul 24th 2021, 22:53 jojomartius i removed the error handler from application.php and the nit works
# Jul 24th 2021, 22:53 jojomartius but regarding https://github.com/cakephp/app/issues/842
# Jul 24th 2021, 22:53 jojomartius true taht
# Jul 24th 2021, 22:52 kevin.pfeifer well thats a bit too harsh in my opinion ^^ If your not in sync with the app template then I would just go file by file and check what differs
# Jul 24th 2021, 22:50 jojomartius but i guess the best way is just dropping the application into a seperate folder, starting with a new cakephp/app and migrating stuff over
# Jul 24th 2021, 22:50 kevin.pfeifer let me check something
# Jul 24th 2021, 22:50 jojomartius yes, you'r right. but i guess it came with 4.0 or something. too long ago
# Jul 24th 2021, 22:48 jojomartius but the bad part is... also if i clear the skip log thing