Search found 8623 matches
- 07 Jun 2025, 10:07
- Forum: Laravel package
- Topic: Custom email queue backed by database
- Replies: 4
- Views: 292441
Re: Custom email queue backed by database
Use this config for your own queue class:
You can see how other queue adapters are implemented here: https://github.com/aimeos/ai-mqueue
Code: Select all
'mq' => [
'adapter' => 'DBQueueTeam',
// implementation specific configuration
// ...
],
- 06 Jun 2025, 20:56
- Forum: Help
- Topic: Fulltextsearch
- Replies: 1
- Views: 243659
Re: Fulltextsearch
Thanks for your report. Are you able to create a PR with the necessary changes to improve the full text search?
- 06 Jun 2025, 20:52
- Forum: Laravel package
- Topic: Custom email queue backed by database
- Replies: 4
- Views: 292441
Re: Custom email queue backed by database
Unfortunately, the AI in the chat often mixes up things it learned from other code bases but which isn't applicable in Aimeos :-/ Using DB based queues is really simple and all you need is explained here: https://aimeos.org/docs/latest/infrastructure/context/#message-queues Add a message to a queue:...
- 06 Jun 2025, 20:13
- Forum: Help
- Topic: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
- Replies: 4
- Views: 269170
Re: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
Can you be a bit more precise please what we should change?
You can also create a pull request in the Aimeos docs repository to suggest changes
You can also create a pull request in the Aimeos docs repository to suggest changes

- 04 Jun 2025, 06:56
- Forum: Help
- Topic: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
- Replies: 4
- Views: 269170
Re: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
Did you import the Aimeos page subtree into your TYPO3 page tree? Can you try this TypoScript in the setup section of the jsonapi page? page = PAGE page { typeNum = 0 headerData > config { additionalHeaders.10.header = Content-type:application/json disableAllHeaderCode = 1 disableCharsetHeader = 1 d...
- 02 Jun 2025, 14:25
- Forum: TYPO3 extension
- Topic: Index rebuild with more than one site
- Replies: 3
- Views: 237391
Re: Index rebuild with more than one site
Which Aimeos version do you use?
- 02 Jun 2025, 07:59
- Forum: Help
- Topic: Implement new theme
- Replies: 3
- Views: 223229
Re: Implement new theme
Yes, using adapted CSS files is the most efficient way to create a new Aimeos theme. At a few places, you will need to adapt the HTML as well but that's OK as long as you don't need to overwrite all templates.
- 01 Jun 2025, 07:21
- Forum: Help
- Topic: Service provider problem
- Replies: 1
- Views: 159934
Re: Service provider problem
This is an error in the docs and you should use current() or reset() to get the first order service item in the array if you are sure there's only one. We will fix that in the docs, thanks for the hint!
- 29 May 2025, 13:52
- Forum: Help
- Topic: Implement new theme
- Replies: 3
- Views: 223229
Re: Implement new theme
Using HTML/CSS/JS from a design that has a totally different structure is a pretty hard task in every project (also non-Aimeos related). The problem is that you have to integrate all PHP code from the Aimeos templates to the new HTML. Furthermore, if you don't assign the same CSS classes to the new ...
- 29 May 2025, 13:46
- Forum: Help
- Topic: Boost for products
- Replies: 1
- Views: 112804
Re: Boost for products
The boost value is only used when doing a fulltext search. For a regular category list, the position of the product in the category applies (you can check in the Categories > Products sub-panel)