Search found 7884 matches

by aimeos
07 Apr 2024, 11:54
Forum: Help
Topic: About Laravel CMS
Replies: 2
Views: 11388

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

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

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

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

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

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

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

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 &...
by aimeos
28 Mar 2024, 11:46
Forum: TYPO3 extension
Topic: Lost session at confirmation page (lost orderid)
Replies: 18
Views: 76371

Re: Lost session at confirmation page (lost orderid)

As far as we understand, the problem is that the browser doesn't send the cookies (including the TYPO3 session cookie) back to your server when the redirect from the server of the payment provider happens. Can you check that by adding: . PHP_EOL . print_r( $_COOKIE, true ) here: https://github.com/a...