Search found 89 matches

by nos3
23 Apr 2024, 07:04
Forum: Laravel package
Topic: Product import takes too long
Replies: 6
Views: 3962

Re: Product import takes too long

No, I've said "assign an ID locally and just overwrite the data in ES (without fetching the products first)". Products need to be in ES only but not with an autogenerated ID from ES. Then, you can overwrite the products in ES without the need to fetch them first.
by nos3
22 Apr 2024, 11:44
Forum: Laravel package
Topic: Product import takes too long
Replies: 6
Views: 3962

Re: Product import takes too long

The XML importer is the fastest standard option but it still fetches the products, updates them and stores everything back. When using ElasticSearch and your extension, it's much faster to assign an ID locally and just store/overwrite the data in ES without fetching the products first. Then, it's po...
by nos3
07 Apr 2024, 11:49
Forum: Laravel package
Topic: How to set elastic search custom field type?
Replies: 2
Views: 10570

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: 3350

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: 3519

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: 7618

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: 4565

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: 18934

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: 18934

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: 1748

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...