Search found 87 matches

by nos3
07 Apr 2024, 11:49
Forum: Laravel package
Topic: How to set elastic search custom field type?
Replies: 2
Views: 7163

Re: How to set elastic search custom field type?

Create e.g. a ./setup/default/elastic/product.php in your own extension and add your new field there: return array( 'base' => function ( array $mappings ) { $map = [ 'base' => [ 'properties' => [ 'myfield' => [ 'type' => 'date', 'format' => 'yyyy-MM-dd HH:mm:ss' ] ], ], ]; return array_replace_recur...
by nos3
13 Jun 2023, 07:57
Forum: Laravel package
Topic: Class "Aimeos\MW\Common\Exception" not found
Replies: 1
Views: 3344

Re: Class "Aimeos\MW\Common\Exception" not found

Thanks a lot for your post!
The wrong exceptions has been fixed and tests has been added. A new release is also tagged.
by nos3
21 Apr 2023, 14:32
Forum: Laravel package
Topic: Review rating count not updating unless index is rebuilt
Replies: 5
Views: 3502

Re: Review rating count not updating unless index is rebuilt

There had been two problems: - The admin backend used only the product manager to update the ratings, not the index manager - The ElasticIndex class didn't forward the new rating to the product manager This has been fixed and new 2022.10.x versions of the aimeos/ai-admin-jqadm and aimeoscom/ai-elast...
by nos3
12 Jan 2023, 09:43
Forum: TYPO3 extension
Topic: csv product import
Replies: 10
Views: 7601

Re: csv product import

Your test file is wrong because each field is enclosed by """ instead of "
by nos3
12 Jan 2023, 09:41
Forum: TYPO3 extension
Topic: ai-vatcheck error when Ust-ID is prefilled
Replies: 2
Views: 4558

Re: ai-vatcheck error when Ust-ID is prefilled

The EU Vies server doesn't respond properly (too many requests according to the first error message).
There's nothing you can do besides allowing customers to continue if the VIES server is not available using:

Code: Select all

plugin.tx_aimeos.settings.mw.vatcheck.vies.strict = 0
by nos3
09 Dec 2022, 09:54
Forum: TYPO3 extension
Topic: ai-customergroups - Price missing
Replies: 15
Views: 18917

Re: ai-customergroups - Price missing

There was a configuration missing for the price manager. We've added that and created a new release of the aimeoscom/ai-customergroups extension. Can you please update and try again?
by nos3
21 Nov 2022, 12:33
Forum: TYPO3 extension
Topic: ai-customergroups - Price missing
Replies: 15
Views: 18917

Re: ai-customergroups - Price missing

Did you configure the extension according to the ./vendor/aimeoscom/ai-customergroups/README.md file?
by nos3
19 Nov 2022, 08:06
Forum: Laravel package
Topic: Admin side error
Replies: 5
Views: 1744

Re: Admin side error

Yes, ElasticSearch doesn't allow migrating properties like relational databases. Thus, it requires in many cases recreating the index and re-importing the data. This is only not necessary if you add the new properties to the schema before you insert new data. The easiest way in production environmen...
by nos3
18 Nov 2022, 10:00
Forum: Laravel package
Topic: Admin side error
Replies: 5
Views: 1744

Re: Admin side error

There was a method missing in the ai-sites extension for the ElasticSearch product manager.
This is fixed now, can you please run "composer up" and see if it works now?
by nos3
18 Aug 2022, 10:32
Forum: Help
Topic: Marketplace and unified basket
Replies: 2
Views: 1094

Re: Marketplace and unified basket

Using the marketplace extension, is the following possible: e.g. if I visit vendor 1 sub site and add a product to basket, I should then be able to visit the default site and/or vendor 2 sub-site and have a unified basket/checkout with all products. This won't work because each site has it's own ba...