Search found 8615 matches

by aimeos
11 Jun 2025, 07:18
Forum: TYPO3 extension
Topic: Scheduler Task Problem
Replies: 5
Views: 328925

Re: Scheduler Task Problem

In the mshop_order_status table, there are records for each order. At least one of them has the type "email-sent" with the number that is equal to the payment status value and this is the marker for Aimeos that the email for e.g. the "authorized" payment status (value: "5&qu...
by aimeos
10 Jun 2025, 07:00
Forum: Laravel package
Topic: Frontend changes not showing
Replies: 2
Views: 122754

Re: Frontend changes not showing

To overwrite the base.blade.php template of the Aimeos extension, you have to place your copy in vendor\aimeos\aimeos-laravel\views\vendor\shop\base.blade.php. See: https://aimeos.org/docs/latest/laravel/ ... -templates
by aimeos
07 Jun 2025, 10:07
Forum: Laravel package
Topic: Custom email queue backed by database
Replies: 4
Views: 180704

Re: Custom email queue backed by database

Use this config for your own queue class:

Code: Select all

'mq' => [
	'adapter' => 'DBQueueTeam',
	// implementation specific configuration
	// ...
],
You can see how other queue adapters are implemented here: https://github.com/aimeos/ai-mqueue
by aimeos
06 Jun 2025, 20:56
Forum: Help
Topic: Fulltextsearch
Replies: 1
Views: 167173

Re: Fulltextsearch

Thanks for your report. Are you able to create a PR with the necessary changes to improve the full text search?
by aimeos
06 Jun 2025, 20:52
Forum: Laravel package
Topic: Custom email queue backed by database
Replies: 4
Views: 180704

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:...
by aimeos
06 Jun 2025, 20:13
Forum: Help
Topic: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
Replies: 4
Views: 181144

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 :-)
by aimeos
04 Jun 2025, 06:56
Forum: Help
Topic: Jsonapi endpoint setup in typo3 v13.4.11 aimeos 25.4.1
Replies: 4
Views: 181144

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...
by aimeos
02 Jun 2025, 14:25
Forum: TYPO3 extension
Topic: Index rebuild with more than one site
Replies: 2
Views: 208273

Re: Index rebuild with more than one site

Which Aimeos version do you use?
by aimeos
02 Jun 2025, 07:59
Forum: Help
Topic: Implement new theme
Replies: 3
Views: 197115

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.
by aimeos
01 Jun 2025, 07:21
Forum: Help
Topic: Service provider problem
Replies: 1
Views: 134861

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!