Search found 10 matches

by мужыковмужыков
06 Oct 2023, 18:09
Forum: Laravel package
Topic: Admin panel
Replies: 5
Views: 16344

Re: Admin panel

aimeos wrote: 06 Oct 2023, 08:08 If you don't use the Aimeos distribution, standard Laravel setups always redirect to the dashboard after login by default instead of the last URL. Check the files in the ./app/Http/ directory.
what should be there? Do I need to add something?
by мужыковмужыков
06 Oct 2023, 08:01
Forum: Laravel package
Topic: Admin panel
Replies: 5
Views: 16344

Re: Admin panel

You user must have super, admin or editor privileges and you can create such users (or update existing users) by executing: php artisan aimeos:account --super <email> I created a super account but I still redirect to Laravel dashboard. Do I need to add additional configuration to the route file or ...
by мужыковмужыков
04 Oct 2023, 11:53
Forum: Laravel package
Topic: Admin panel
Replies: 5
Views: 16344

Admin panel

When I installed aimeos package in my Laravel project (with Jetstream) I tried to go to the admin page (path: /admin) I was redirected to /dashboard of Laravel app. How can I have access to the admin page?
by мужыковмужыков
10 Sep 2023, 16:33
Forum: Help
Topic: add new JSON API resouce
Replies: 3
Views: 9953

Re: add new JSON API resouce

If you have created a manager for a new data domain that contains only one table (and no lists or property table), then you can query the new resource directly over the JSON API. Just configure the new resource in the ./config/client.php file of your extension: 'jsonapi' => [ 'resources => [ 'mydom...
by мужыковмужыков
10 Sep 2023, 15:06
Forum: Help
Topic: add new css/js files and override existing one
Replies: 1
Views: 9934

add new css/js files and override existing one

Hi, I've tried to add a new css and js file for the product page. I added it into /package/<theme>/themes/client/html/ and added them into manifest.jsb2 like this { "name": "theme css", "file": "aimeos.css", "isDebug": true, "fileIncludes":...
by мужыковмужыков
10 Sep 2023, 10:36
Forum: Help
Topic: Issue with vendor:publish
Replies: 6
Views: 11558

Re: Issue with vendor:publish

I've tried to unzip extensions into /packages/ folder, but when I run vendor:publish it uses a theme from \vendor\aimeos\ai-client-html\themes\client\html Don't forget to run (or however your package is named in its composer.json): composer req aimeos-themes/mytheme Afterwards, go the Settings pane...
by мужыковмужыков
10 Sep 2023, 09:45
Forum: Help
Topic: Issue with vendor:publish
Replies: 6
Views: 11558

Re: Issue with vendor:publish

Which Aimeos Version do you use? The package you've created by the extension generator should be unzipped in this directory of your application (since 2021.07): ./packages/<mytheme>/ I've tried to unzip extensions into /packages/ folder, but when I run vendor:publish it uses a theme from \vendor\ai...
by мужыковмужыков
10 Sep 2023, 09:38
Forum: Help
Topic: Issue with vendor:publish
Replies: 6
Views: 11558

Re: Issue with vendor:publish

Which Aimeos Version do you use? The package you've created by the extension generator should be unzipped in this directory of your application (since 2021.07): ./packages/<mytheme>/ I use 2023.x version. When I unzipped the extension into /packages/<mytheme>/ according to this https://aimeos.org/d...
by мужыковмужыков
09 Sep 2023, 14:56
Forum: Help
Topic: add new JSON API resouce
Replies: 3
Views: 9953

add new JSON API resouce

Hi,
How can I add a new custom JSON API resource and use it?
by мужыковмужыков
09 Sep 2023, 13:50
Forum: Help
Topic: Issue with vendor:publish
Replies: 6
Views: 11558

Issue with vendor:publish

Hi,
when I created my custom extension I added it ext folded, so the template overrides, but when running composer update (and within this command run vendor:publish) I got an error:

Code: Select all

Can't locate path: <\ai-shop\ext\ai-client-htmlthemes/client/html/>
. How I could fix this?