Search found 8414 matches

by aimeos
16 Jan 2025, 10:03
Forum: Help
Topic: Add product to basekt via custom php command
Replies: 1
Views: 103

Re: Add product to basekt via custom php command

There are a few problems in your code. $productCode = $request->input('product_id'); Use the product ID if possible because it's easier to handle. $filter = $productManager->filter(true); $filter->add('product.code', '==', $productCode); $filter->add('product.status', '==', 1); filter(true) automati...
by aimeos
15 Jan 2025, 09:48
Forum: Help
Topic: A few questions about upgrading: from simple Aimeos to b2b & gigacommerce
Replies: 7
Views: 415

Re: A few questions about upgrading: from simple Aimeos to b2b & gigacommerce

Yes, because the URLs will change when you use the #gigacommerce extension and you would have to change the site IDs of all records to move them to different sites
by aimeos
15 Jan 2025, 09:28
Forum: TYPO3 extension
Topic: How to Change Image Preview Ratio
Replies: 4
Views: 20260

Re: How to Change Image Preview Ratio

Having /uploads/tx_aimeos/ prefix in the file path is wrong. Do you know where this comes from?
by aimeos
14 Jan 2025, 09:14
Forum: Help
Topic: Can't redirect the 'default' page to the main page site.com
Replies: 8
Views: 309

Re: Can't redirect the 'default' page to the main page site.com

If you don't want the site code in the URL it's best to use the domain as site code: 'routes' => [ 'admin' => ['domain' => '{site}', 'prefix' => 'admin', 'middleware' => ['web']], 'jqadm' => ['domain' => '{site}', 'prefix' => 'admin/jqadm', 'middleware' => ['web', 'auth']], 'graphql' => ['domain' =>...
by aimeos
14 Jan 2025, 09:10
Forum: TYPO3 extension
Topic: Order state cannot be saved
Replies: 1
Views: 162

Re: Order state cannot be saved

No known issues but most likely, no one did such an update before. You have to upgrade to a supported LTS version as soon as possible because that version has security issues and isn't even supported by ELTS any more.
by aimeos
13 Jan 2025, 10:36
Forum: Help
Topic: A few questions about upgrading: from simple Aimeos to b2b & gigacommerce
Replies: 7
Views: 415

Re: A few questions about upgrading: from simple Aimeos to b2b & gigacommerce

The Aimeos system itself is free - I deployed it on my server, turned on "SHOP_MULTISHOP=true", prescribed routes for level 3 domains (for stores) and that's it. I understand that stores for sellers are created in the "Supplier" section. This isn't correct. If you create a SaaS-...
by aimeos
12 Jan 2025, 11:24
Forum: Help
Topic: Can't install and connect to PgSQL
Replies: 1
Views: 177

Re: Can't install and connect to PgSQL

Your PostgreSQL database isn't listening on 127.0.0.1:5432
by aimeos
11 Jan 2025, 15:43
Forum: Help
Topic: Error in Customer address Jsonapi Decorator
Replies: 1
Views: 1191

Re: Error in Customer address Jsonapi Decorator

Most likely, your decorator doesn't use the correct namespace and directory:
namespace: Aimeos\Client\JsonApi\Customer\Address\Decorator
directory: src/Client/JsonApi/Customer/Address/Decorator/AddressDecorator.php
by aimeos
11 Jan 2025, 15:40
Forum: Laravel package
Topic: Aimeos Context Serialization Issue
Replies: 11
Views: 58103

Re: Aimeos Context Serialization Issue

Use this to remove all listeners:

Code: Select all

$orderItem->off()