Search found 7895 matches

by aimeos
28 Mar 2024, 11:46
Forum: TYPO3 extension
Topic: Lost session at confirmation page (lost orderid)
Replies: 18
Views: 81957

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

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

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( ...
by aimeos
25 Mar 2024, 07:53
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 28486

Re: Adding Menu Items to Admin Panel

jafo66 wrote: 24 Mar 2024, 19:07 Thanks for information. One modifying the template, do you have good way to make sure I don't lose out on upgrades in the future?
See: https://aimeos.org/docs/latest/admin/jq ... templates/
by aimeos
24 Mar 2024, 11:06
Forum: Help
Topic: 419 Page expired msg
Replies: 1
Views: 17569

Re: 419 Page expired msg

Seems like the Laravel access token isn't valid any more. The Laravel session expires after some time (2h by default).
by aimeos
24 Mar 2024, 11:05
Forum: Laravel package
Topic: Jetstream Teams within Aimeos
Replies: 2
Views: 19262

Re: Jetstream Teams within Aimeos

Overwrite this template and add a new custom menu item:
https://github.com/aimeos/ai-admin-jqad ... m/page.php
by aimeos
24 Mar 2024, 11:00
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 28486

Re: Adding Menu Items to Admin Panel

1a) How do I add one off translations to proper capitalize the menu items? I did try to create a en.php in the i18n directory but I don't think that works or I didn't configure it properly. If you want to add translation to PO files instead of the ./config/shop.php, you have to compile the .po file...
by aimeos
24 Mar 2024, 09:12
Forum: Help
Topic: Default variant selection
Replies: 1
Views: 17413

Re: Default variant selection

You could extend the JS code and add a new method to pre-select variant attributes of the first article after page load here: https://github.com/aimeos/ai-client-html/blob/master/themes/client/html/default/catalog-detail.js If you can create a pull request, we would be happy to merge your change int...
by aimeos
24 Mar 2024, 09:08
Forum: TYPO3 extension
Topic: madmin_log
Replies: 1
Views: 17569

Re: madmin_log

Execute the log cleanup job controller in the Aimeos scheduler and execute it once a day:
https://aimeos.org/docs/latest/typo3/setup/#once-a-day