Search found 180 matches
- 07 Nov 2023, 10:49
- Forum: Laravel package
- Topic: jsonapi - how to increase rate limiter
- Replies: 1
- Views: 226
jsonapi - how to increase rate limiter
Hello,
How do you increase the rate limiter time for the jsonapi so that it takes more attempts before it throws "Too Many Attempts."?
Please add the information in the documentation if it exists.
How do you increase the rate limiter time for the jsonapi so that it takes more attempts before it throws "Too Many Attempts."?
Please add the information in the documentation if it exists.
- 19 Oct 2023, 13:51
- Forum: Laravel package
- Topic: Aimeos Autofill plugin conflict with jsonapi service update
- Replies: 7
- Views: 17775
Re: Aimeos Autofill plugin conflict with jsonapi service update
I found a solution.
I added a bool parameter to every method that sends notifications in this class:
Aimeos\MShop\Order\Item\Base
The AutoFill plugin should set that bool parameter to false when calling deleteService(), addService(), etc.
I added a bool parameter to every method that sends notifications in this class:
Aimeos\MShop\Order\Item\Base
The AutoFill plugin should set that bool parameter to false when calling deleteService(), addService(), etc.
- 19 Oct 2023, 11:49
- Forum: Laravel package
- Topic: Aimeos Autofill plugin conflict with jsonapi service update
- Replies: 7
- Views: 17775
Re: Aimeos Autofill plugin conflict with jsonapi service update
There is another problem. Now the notifications get called multiple times for the same service. 'addService.after' and 'addService.before' get called twice when the service is updated. The first time notification occurs, is when the service is added with its default values by the AutoFill plugin. Th...
- 06 Oct 2023, 08:26
- Forum: Laravel package
- Topic: Rebate is added as a product in the basket
- Replies: 2
- Views: 6071
Re: Rebate is added as a product in the basket
I have a clean installation on local. I added a rebate to it the same way. I printed it in the standard basket with dump( $this->standardBasket ) . When there is a rebate added to the order, the rebate is not added to the basket as a product in the local installation. The local installation has aime...
- 05 Oct 2023, 15:16
- Forum: Laravel package
- Topic: Rebate is added as a product in the basket
- Replies: 2
- Views: 6071
Rebate is added as a product in the basket
Laravel framework version: 10.16.1 Aimeos Laravel version: 2023.04.* PHP Version: 8.2.8 Environment: Linux Hello, My rebate is getting added as a product when adding it in the basket. It gets added to the "products" array of the order item. $this->standardBasket->getProducts() retrieves bo...
- 27 Sep 2023, 09:06
- Forum: Laravel package
- Topic: Aimeos Autofill plugin conflict with jsonapi service update
- Replies: 7
- Views: 17775
Re: Aimeos Autofill plugin conflict with jsonapi service update
Yes, that seems to work. https://aimeos.org/docs/2023.x/config/client-jsonapi/basket/#name_4 'client' => [ 'jsonapi' => [ 'basket' => [ 'service' => [ 'name' => 'StandardCustom', ] ] ], ], <?php namespace Aimeos\Client\JsonApi\Basket\Service; use Psr\Http\Message\ServerRequestInterface; use Psr\Http...
- 26 Sep 2023, 21:20
- Forum: Laravel package
- Topic: Aimeos Autofill plugin conflict with jsonapi service update
- Replies: 7
- Views: 17775
Re: Aimeos Autofill plugin conflict with jsonapi service update
I can't update from 2023.04.*, because it breaks changes I've done in the backend. You've been changing the backend structure to add Vue JS support. It will take some time before I understand how you've changed the backend before I can update it and implement my changes, and I'm working on other thi...
- 25 Sep 2023, 12:18
- Forum: Laravel package
- Topic: How do I get the service attributes in the addService.before event in the basket plugin?
- Replies: 1
- Views: 13903
Re: How do I get the service attributes in the addService.before event in the basket plugin?
Hello, I got the service attributes.
They were missing, because they weren't being passed in the parameters when updating the service.
They were missing, because they weren't being passed in the parameters when updating the service.
- 25 Sep 2023, 10:13
- Forum: Laravel package
- Topic: Aimeos Autofill plugin conflict with jsonapi service update
- Replies: 7
- Views: 17775
Aimeos Autofill plugin conflict with jsonapi service update
Laravel framework version: 10.16.1 Aimeos Laravel version: 2023.04.* PHP Version: 8.2.8 Environment: Linux Hello, There is a conflict between the built-in autofill plugin and the jsonapi. If a service is updated (changed) through the jsonapi, the autofill plugin prevents the service from being chang...
- 21 Sep 2023, 10:54
- Forum: Laravel package
- Topic: How do I get the service attributes in the addService.before event in the basket plugin?
- Replies: 1
- Views: 13903
How do I get the service attributes in the addService.before event in the basket plugin?
Laravel framework version: 10.16.1 Aimeos Laravel version: 2023.04.* PHP Version: 8.2.8 Environment: Linux I'm trying to get the service attributes when updating a service through jsonapi, but the attributes are not available in the service item here. /** * Register plugin at publisher object */ pub...