Search found 7062 matches
- 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...
- 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.
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.
- 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...
- 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
- 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
https://github.com/aimeos/ai-controller ... #L452-L454
- 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...
- 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
The issue has been fixed in aimeos/aimeos-core:2022.10.11
- 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.
- 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:
The timeframe must be in ISO date/time format, e.g. "2023-03-29 00:00:00"
Code: Select all
product code,stocklevel,type,timeframe
- 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
- 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