Search found 8062 matches

by aimeos
17 Jul 2024, 11:54
Forum: TYPO3 extension
Topic: Upgrade 2021 to 2023 DB Error
Replies: 1
Views: 5083

Re: Upgrade 2021 to 2023 DB Error

Seems like one of your ordered products contains a product code with an escape sequence, so check your data.
by aimeos
17 Jul 2024, 11:52
Forum: Help
Topic: aimeos headless
Replies: 2
Views: 6320

Re: aimeos headless

Yes, the Aimeos headless distribution supports all Aimeos features and extensions but obviously not anything frontend related like themeing as you build your frontend yourself if you use only the JSON API.
by aimeos
17 Jul 2024, 11:50
Forum: Help
Topic: remove ~f_catid from catalog url
Replies: 2
Views: 5450

Re: remove ~f_catid from catalog url

If you use the Aimeos distribution, set SHOP_MULTIROUTE to "1": https://github.com/aimeos/aimeos#multi-routing If you need to do it yourself, check the related code in the Aimeos distribution: - https://github.com/aimeos/aimeos/blob/b58e31f956e649d9a16295ca9651bc968f528243/routes/web.php#L...
by aimeos
17 Jul 2024, 11:45
Forum: Laravel package
Topic: Get category of bought products (default and select)
Replies: 3
Views: 7595

Re: Get category of bought products (default and select)

Use variant B and add 'product' to the list of items that should be fetched so you get all variant articles for the selection products too. The more efficient way would be variant A and fetch the corresponding selection products in a second query.
by aimeos
17 Jul 2024, 11:39
Forum: Help
Topic: Is there a way to use a manager to get records from all sites?
Replies: 3
Views: 7889

Re: Is there a way to use a manager to get records from all sites?

The records of the sites are strictly separated and by using the managers, you can only get records from other sites by using the correct locale in the context item. The marketplace / complex B2B extension of the Aimeos company extends that so you can build a tree structure of sites and get records ...
by aimeos
17 Jul 2024, 11:34
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 25
Views: 89996

Re: Aimeos Create an new extension and Api in it.

Have a look into the Log panel of the admin backend. There you will find more details about the error.
by aimeos
17 Jul 2024, 11:33
Forum: Laravel package
Topic: Interacting with the Basket
Replies: 3
Views: 8660

Re: Interacting with the Basket

See here: - https://github.com/aimeos/ai-controller-frontend/blob/master/src/Controller/Frontend/Basket/Base.php#L461-L477 - https://github.com/aimeos/ai-controller-frontend/blob/master/src/Controller/Frontend/Basket/Standard.php#L342-L352 Use these methods: - https://github.com/aimeos/aimeos-core/b...
by aimeos
15 Jul 2024, 21:17
Forum: Laravel package
Topic: Interacting with the Basket
Replies: 3
Views: 8660

Re: Interacting with the Basket

Call the save() method to store the updated basket:
https://github.com/aimeos/ai-controller ... hp#L45-L50
by aimeos
11 Jul 2024, 07:31
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 25
Views: 89996

Re: Aimeos Create an new extension and Api in it.

TEJASPARMAR wrote: 09 Jul 2024, 17:31 Getting this error for security policy.
Can please help me for that ?
All your JS code must be in a JS file that is included, inline JS isn't allowed.
by aimeos
11 Jul 2024, 07:30
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 25
Views: 89996

Re: Aimeos Create an new extension and Api in it.

This command will publish the files to the ./public/vendor/ directory and it will be automatically executed if you run "composer update":
https://github.com/aimeos/aimeos/blob/m ... r.json#L63