Search found 7857 matches

by aimeos
03 Apr 2024, 08:11
Forum: TYPO3 extension
Topic: Product detail view is not shown
Replies: 6
Views: 38919

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

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: 15
Views: 61177

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

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

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

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

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

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

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...