Search found 7907 matches

by aimeos
08 Apr 2024, 10:17
Forum: Laravel package
Topic: Integrity constraint violation when importing existing products, categories, etc.
Replies: 11
Views: 33503

Re: Integrity constraint violation when importing existing products, categories, etc.

Fixing the capitalization worked for the root catalog item, but the error occurs for the children as well Does this mean that the children also have to have ref="" parameter matching the catalog.code ? Adding this parameter to the child <catalogitem> tags seems to work, so I think the doc...
by aimeos
08 Apr 2024, 09:20
Forum: TYPO3 extension
Topic: Template: You are here: Back
Replies: 5
Views: 19546

Re: Template: You are here: Back

It's a link but there may be an overlay of another element depending on your CSS:
https://github.com/aimeos/ai-client-htm ... hp#L68-L70

You can check that in the browser console.
by aimeos
07 Apr 2024, 13:13
Forum: Help
Topic: FR: BE - Category - Product listing - label not id
Replies: 2
Views: 12583

Re: FR: BE - Category - Product listing - label not id

Agreed but the sub-panel must be completely rewritten for that because it also doesn't work with e.g. ElasticSearch too. It's on our list of todos.
by aimeos
07 Apr 2024, 11:54
Forum: Help
Topic: About Laravel CMS
Replies: 2
Views: 12848

Re: About Laravel CMS

The Laravel CMS package is still work in progress. The APIs are all fully functional but the backend lacks managing content types other than texts.
by aimeos
07 Apr 2024, 11:53
Forum: Help
Topic: JsonApi: Stock level mixed with f_catid when fetching products
Replies: 2
Views: 13235

Re: JsonApi: Stock level mixed with f_catid when fetching products

The f_catid parameter doesn't filter by product.instock property so there must be something else: - https://github.com/aimeos/ai-client-jsonapi/blob/master/src/Client/JsonApi/Product/Standard.php#L373 - https://github.com/aimeos/ai-controller-frontend/blob/master/src/Controller/Frontend/Product/Stan...
by aimeos
07 Apr 2024, 11:45
Forum: Laravel package
Topic: Integrity constraint violation when importing existing products, categories, etc.
Replies: 11
Views: 33503

Re: Integrity constraint violation when importing existing products, categories, etc.

<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <catalog> <catalogitem ref="home"> <catalog.code><![CDATA[Home]]></catalog.code> <catalog.label><![CDATA[Home]]></catalog.label> <catalog.status><![CDATA[1]]></catalog.status> </catalogitem> </catalog> &...
by aimeos
04 Apr 2024, 13:36
Forum: Laravel package
Topic: PHP setting for "upload_max_filesize" is too low
Replies: 1
Views: 10526

Re: PHP setting for "upload_max_filesize" is too low

The standard PHP settings are too low for uploading your file. Instead of using "artisan serve", you can directly use the PHP binary and add these configuration settings:

Code: Select all

php -S 127.0.0.1:8000 -t public -d post_max_size=50M -d upload_max_filesize=50M
by aimeos
04 Apr 2024, 13:32
Forum: TYPO3 extension
Topic: Lost session at confirmation page (lost orderid)
Replies: 18
Views: 85722

Re: Lost session at confirmation page (lost orderid)

Lost session at confirmation page Array ( [_ga] => GA1.1.1489289936.1711716927 [_ga_xxxxxxxxx] => GS1.1.1712070581.2.1.1712070879.0.0.0 [cf_cookie] => "categories":["googleanalytics","googletagmanager","typo3frontend","cfcookiemanager"],"level&...
by aimeos
03 Apr 2024, 10:55
Forum: TYPO3 extension
Topic: Overwrite aimeos_catalog-list flexform in v23
Replies: 2
Views: 15354

Re: Overwrite aimeos_catalog-list flexform in v23

That seems to be more a question if TYPO3 allows overwriting that file in the correct order (based on ext_emconf.php dependencies).