Search found 7600 matches
- 10 Nov 2023, 07:54
- Forum: Laravel package
- Topic: jsonapi - how to increase rate limiter
- Replies: 1
- Views: 219
Re: jsonapi - how to increase rate limiter
This is a Laravel question you should ask in a Laravel forum.
- 10 Nov 2023, 07:52
- Forum: Help
- Topic: Can I use bkash as a payment gateway with aimeos?
- Replies: 1
- Views: 64
Re: Can I use bkash as a payment gateway with aimeos?
That payment provider is not in the list of Omnipay drivers here:
https://omnipay.thephpleague.com/gateways/community/
Seems like you have to create an Omnipay driver first which you can then use in Aimeos.
https://omnipay.thephpleague.com/gateways/community/
Seems like you have to create an Omnipay driver first which you can then use in Aimeos.
- 10 Nov 2023, 07:49
- Forum: Laravel package
- Topic: Modules
- Replies: 3
- Views: 119
Re: Modules
Disable the route groups in your ./config/shop.php by setting them to "false": https://github.com/aimeos/aimeos-laravel/blob/master/config/shop.php#L13-L30 Then, copy the routes you've disabled to your ./routes/web.php file: https://github.com/aimeos/aimeos-laravel/blob/master/routes/aimeo...
- 10 Nov 2023, 07:46
- Forum: TYPO3 extension
- Topic: No uploaded images displayed
- Replies: 4
- Views: 476
Re: No uploaded images displayed
TYPO3 installations in sub-folders are not supported well and the TYPO3 method doesn't seem to return the sub-folder here: https://github.com/aimeos/aimeos-typo3/blob/master/Resources/Private/Config/resource.php#L3 As a workaround, you could overwrite the resource/fs* settings from that file in your...
- 06 Nov 2023, 09:00
- Forum: Laravel package
- Topic: how to overwrite translation files for jobs
- Replies: 3
- Views: 1644
Re: how to overwrite translation files for jobs
Yes, you need only one file which must contain all translations from all translation domains.
- 03 Nov 2023, 07:31
- Forum: Help
- Topic: Is it possible to make each product in the basket to be individual order?
- Replies: 7
- Views: 2018
Re: Is it possible to make each product in the basket to be individual order?
The service options with the different names must be created in the backend. If you just use one service item and set different values, they will be overwritten.
- 03 Nov 2023, 07:28
- Forum: Help
- Topic: [SOLVED] How to overwrite aimeos-laravel/src/Controller/CheckoutController.php in Extension?
- Replies: 2
- Views: 913
Re: How to overwrite aimeos-laravel/src/Controller/CheckoutController.php in Extension?
That's more a Laravel than an Aimeos question.
Create a new controller in your ./app/http/controller/ directory and copy the checkout route to the ./routes/web.php where you can replace the controller name:
https://github.com/aimeos/aimeos-larave ... #L227-L234
Create a new controller in your ./app/http/controller/ directory and copy the checkout route to the ./routes/web.php where you can replace the controller name:
https://github.com/aimeos/aimeos-larave ... #L227-L234
- 03 Nov 2023, 07:25
- Forum: Laravel package
- Topic: Buttons disappear
- Replies: 6
- Views: 1573
Re: Buttons disappear
The ./packages/myextension/ folder consists by default of these files:
https://github.com/aimeos/aimeos-core/t ... t-template
https://github.com/aimeos/aimeos-core/t ... t-template
- 03 Nov 2023, 07:20
- Forum: Help
- Topic: Paylpal Express Integration
- Replies: 1
- Views: 344
Re: Paylpal Express Integration
The URLs should be pre-filled. If you've removed them accidentally, create a new service entry and select PayPalExpress. Then, the values will be added to the config table on the right.
See also: https://aimeos.org/docs/latest/manual/s ... palexpress
See also: https://aimeos.org/docs/latest/manual/s ... palexpress
- 02 Nov 2023, 07:15
- Forum: Help
- Topic: Permit checkout only for authenticated uers/Ask login before check out step
- Replies: 1
- Views: 392
Re: Permit checkout only for authenticated uers/Ask login before check out step
Please upgrade to 2023.10 LTS as previous 2023.x versions are not supported any more! In 2024.x+, basket and checkout routes will be in separately configurable route groups: https://github.com/aimeos/aimeos-laravel/blob/master/routes/aimeos.php#L225-L248 A solution for 2023.10 is copy the routes fro...