Search found 7062 matches

by aimeos
30 Mar 2023, 08:00
Forum: Laravel package
Topic: How to get total products for pagination
Replies: 1
Views: 10

Re: How to get total products for pagination

This is done for good reasons because counting records in a database is an expensive task if they exceed 10k rows. Therefore, Aimeos (and e.g. ElasticSearch too) limits the maximum number of counted records to 10k. That's no problem because no user will usually visit more than the first 3-10 pages a...
by aimeos
30 Mar 2023, 07:56
Forum: Help
Topic: Order / Payment Emails being duplicated
Replies: 1
Views: 25

Re: Order / Payment Emails being duplicated

Which host application do you use? Laravel or TYPO3?

There's one e-mail sent for each payment/delivery status change so this might be the cause for the e-mails but in that case, they are not entirely the same but differ in the intro section.
by aimeos
30 Mar 2023, 07:53
Forum: Laravel package
Topic: Laravel CORS issue while using credentials: 'include'
Replies: 3
Views: 35

Re: Laravel CORS issue while using credentials: 'include'

Seems like the port must be the same too. Using different domains for frontend and API causes a lot of problems as other projects have shown. For CORS, browsers create a pre-flight request for each API call which immediately doubles the number of requests your server has to cope with! Thus, it's hig...
by aimeos
30 Mar 2023, 07:38
Forum: Laravel package
Topic: New Theme but default files still used
Replies: 1
Views: 2

Re: New Theme but default files still used

Most likely, your cache contains an old page. Clear the cache with:

Code: Select all

php artisan aimeos:clear
by aimeos
30 Mar 2023, 07:37
Forum: TYPO3 extension
Topic: Stock Import // Timeframe
Replies: 3
Views: 25

Re: Stock Import // Timeframe

Not at the moment but if you can create a PR which adds the field here, we will merge and backport it to 2022.10:
https://github.com/aimeos/ai-controller ... #L452-L454
by aimeos
29 Mar 2023, 09:19
Forum: TYPO3 extension
Topic: Solr Plugin
Replies: 1
Views: 48

Re: Solr Plugin

Do you mean the ai-solr extension from the Aimeos company? The TYPO3 Solr extension and the Aimeos ai-solr extension use totally different schemas which have nothing in common. It might be possible in Solr to query multiple indexes at once and return one result set but we don't have any experience w...
by aimeos
29 Mar 2023, 07:31
Forum: Laravel package
Topic: FreeShipping and Category throws SQL error
Replies: 1
Views: 34

Re: FreeShipping and Category throws SQL error

Most likely, the configured category code is empty or doesn't match an existing one.
The issue has been fixed in aimeos/aimeos-core:2022.10.11
by aimeos
29 Mar 2023, 07:30
Forum: Laravel package
Topic: Laravel CORS issue while using credentials: 'include'
Replies: 3
Views: 35

Re: Laravel CORS issue while using credentials: 'include'

Use the same domain for both, API and your app, either "localhost" or "127.0.0.1". The CORS problem occurs because they are different.
by aimeos
29 Mar 2023, 07:28
Forum: TYPO3 extension
Topic: Stock Import // Timeframe
Replies: 3
Views: 25

Re: Stock Import // Timeframe

You can import it in the stock.csv file. The format is:

Code: Select all

product code,stocklevel,type,timeframe
The timeframe must be in ISO date/time format, e.g. "2023-03-29 00:00:00"
by aimeos
29 Mar 2023, 07:23
Forum: Laravel package
Topic: order base number
Replies: 3
Views: 519

Re: order base number

Since 2022.10 there are two numbers:
- The mshop_order.id which is the sequential number of the order records
- The mshop_locale_site.invoiceno which is the invoice number shown per site