Search found 7059 matches

by aimeos
30 Mar 2023, 07:38
Forum: Laravel package
Topic: New Theme but default files still used
Replies: 1
Views: 1

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

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: 2
Views: 32

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

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
by aimeos
28 Mar 2023, 12:03
Forum: Laravel package
Topic: Omnipay - Session is cleared on order payment confirmation
Replies: 4
Views: 84

Re: Omnipay - Session is cleared on order payment confirmation

Then, it most be something else. Neverthless, you should check if the Laravel session cookie is sent to your server after the redirect from the payment provider.
by aimeos
27 Mar 2023, 17:13
Forum: Laravel package
Topic: problem in making manager for mydomain
Replies: 1
Views: 36

Re: problem in making manager for mydomain

You've requested a manager for a domain which doesn't exist, e.g. your code look like:

Code: Select all

$manager = \Aimeos\MShop::create( $this->context(), 'mydomain' );
But you haven't implemented the \Aimeos\MShop\Mydomain\Manager\Standard class.
by aimeos
27 Mar 2023, 17:11
Forum: TYPO3 extension
Topic: Get the Category Position from Product
Replies: 3
Views: 131

Re: Get the Category Position from Product

Not sure if I understand correctly what you want to achieve. Can you describe in more detail, please?