# |
Jul 26th 2021, 13:26 |
kevin.pfeifer |
the referrer is set by the browser but is not always present (see https://stackoverflow.com/questions/6880659/in-what-cases-will-http-referer-be-empty) Therefore you should always have a safety fallback which you should use if the referrer is not present |
# |
Jul 26th 2021, 13:21 |
paolo.bragagni |
(same problem here..) |
# |
Jul 26th 2021, 13:20 |
paolo.bragagni |
hi sometimes $a=$request->referer(); doesnt setted |
# |
Jul 26th 2021, 12:34 |
paolo.bragagni |
Better (hope to did it in the righrt way) ... |
# |
Jul 26th 2021, 12:32 |
brandon |
@admad turns out, I never updated the `->add(new ErrorHandlerMiddleware())` in Application.php to match the signature of the the 4.x signature. I had to disable DebugKit to see the actual error for some reason. Fixed this and the error went away. |
# |
Jul 26th 2021, 12:29 |
paolo.bragagni |
eureka |
# |
Jul 26th 2021, 12:24 |
paolo.bragagni |
return request->referer(); in getUrl ? |
# |
Jul 26th 2021, 12:15 |
paolo.bragagni |
or redirect to the 'previuos page'? |
# |
Jul 26th 2021, 12:14 |
paolo.bragagni |
in handle function inside an Handler how not redirect ? |
# |
Jul 26th 2021, 11:20 |
admad |
@brandon you most likely have recursive errors, stick a `dd($exception)` in this method https://github.com/cakephp/cakephp/blob/cdcf54e33b860aa285c6ee9ba2e94d976fd3bdff/src/Error/Middleware/ErrorHandlerMiddleware.php#L141 |
# |
Jul 26th 2021, 10:10 |
soupaahh |
do someone have any idea on why this is occurring ? |
# |
Jul 26th 2021, 10:09 |
soupaahh |
when i point to admin/controllerA/edit/1 the form is well displayed with magicfields and update/patchEntity is not working |
# |
Jul 26th 2021, 10:09 |
soupaahh |
when i point to controllerA/edit/1 the form is well displayed with magicfields and update/patchEntity is working |
# |
Jul 26th 2021, 10:08 |
soupaahh |
boths controllers have edit method with the same code |
# |
Jul 26th 2021, 10:08 |
soupaahh |
i have a Controller A and the same but in a different namespace because of routing prefix |
# |
Jul 26th 2021, 10:07 |
soupaahh |
Hi guys ! |
# |
Jul 26th 2021, 07:47 |
paolo.bragagni |
and it works |
# |
Jul 26th 2021, 07:47 |
paolo.bragagni |
```$service->setConfig([ 'unauthenticatedRedirect' => Router::url([ 'prefix' => false, 'plugin' => null, 'controller' => 'Users', 'action' => 'login', ]), 'queryParam' => 'redirect', ]);``` |
# |
Jul 26th 2021, 07:46 |
paolo.bragagni |
in getAuthenticationService I use the redirection in this way |
# |
Jul 26th 2021, 07:46 |
paolo.bragagni |
and it miss the 'cake4new' part |
# |
Jul 26th 2021, 07:45 |
paolo.bragagni |
trying to debug $Url=Router::url('/', true); before the $middlewareQueue->add(new AuthorizationMiddleware($this, [ 'requireAuthorizationCheck' => false, |
# |
Jul 26th 2021, 07:44 |
paolo.bragagni |
and .. first of all I dont see the right Url that should be https://cakephp.local/cake4new/ etc |
# |
Jul 26th 2021, 07:43 |
paolo.bragagni |
when a user is not authorized redirectUrl goes to https://cakephp.local/login?redirect=%2Flibri%2Fadd |
# |
Jul 26th 2021, 07:42 |
paolo.bragagni |
but got some problems |
# |
Jul 26th 2021, 07:42 |
paolo.bragagni |
trying to reproduce https://github.com/LordSimal/authorization/blob/master/docs/en/middleware.rst#how-to-create-a-custom-unauthorizedhandler |
# |
Jul 26th 2021, 07:38 |
brandon |
I don't think throwing more memory at a memory leak/loop is helpful in this situation. |
# |
Jul 26th 2021, 07:29 |
itsolution1014 |
Please try to add this code. |
# |
Jul 26th 2021, 07:29 |
itsolution1014 |
```ini_set('memory_limit', '1024M');``` You can fix that issue with this code. |
# |
Jul 26th 2021, 07:24 |
slackebot2 |
troubleshoot this issue. Any assistance would be greatly appreciated. |
# |
Jul 26th 2021, 07:24 |
brandon |
Hello, all. I am still working my way through upgrading from 3.x to 4.x. I have fixed all issues with phpstan, phpcs and rector prior to updating dependencies. I have cakephp updated to 4.0.10 (stepping up incrementally) and seem to have hit a memory leak or infinite loop. I am loading the home page and am getting `Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes)`. I don't know where to start to |
# |
Jul 26th 2021, 04:32 |
arthurb |
Got it! using query ```->query('ALTER TABLE `invoices` auto_increment = 2000;')``` |
# |
Jul 26th 2021, 03:25 |
arthurb |
Morning, in the migrations plugin is there away to set the ables AUTO_INCREMENT value? |
# |
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 |