Search found 7872 matches

by aimeos
07 Apr 2024, 11:45
Forum: Laravel package
Topic: Integrity constraint violation when importing existing products, categories, etc.
Replies: 11
Views: 21395

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

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

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

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

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

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

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...
by aimeos
27 Mar 2024, 09:59
Forum: Laravel package
Topic: Implementing an admin panel
Replies: 2
Views: 14279

Re: Implementing an admin panel

The file location mentioned in the error isn't within the expected directory structure. There seems to be something wrong in your setup.
by aimeos
27 Mar 2024, 09:57
Forum: Laravel package
Topic: New model in new context not saving
Replies: 1
Views: 10836

Re: New model in new context not saving

Passing data directly to the create() method doesn't set the internal modified state so save() skips sending the data to the database. Use fromArray() instead: $data = [ 'name' => '2024 Season - March 3x3', 'code' => '2024spring3x3', 'status' => 1, ]; $newitem = $seasonManager->create()->fromArray( ...