Search found 7865 matches

by aimeos
07 Apr 2024, 13:13
Forum: Help
Topic: FR: BE - Category - Product listing - label not id
Replies: 2
Views: 7371

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

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

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

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

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: 17
Views: 66072

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

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).
by aimeos
03 Apr 2024, 08:11
Forum: TYPO3 extension
Topic: Product detail view is not shown
Replies: 6
Views: 42447

Re: Product detail view is not shown

Did you run the "index rebuild" and "index optimize" job controllers from the command line or a scheduler task?
by aimeos
03 Apr 2024, 07:52
Forum: Laravel package
Topic: Performing validation in the admin panels
Replies: 1
Views: 9274

Re: Performing validation in the admin panels

If not strict validation is required on the server side for security reasons, you can use input fields of type "number" to enforce numbers and add the "mandatory" CSS class. Then, it's automatically checked if there's a value in it and marked if not after the user clicks on the &...