Search found 7972 matches

by aimeos
03 Jun 2024, 07:49
Forum: Laravel package
Topic: Allow Aimeos Admin route to load
Replies: 3
Views: 348

Re: Allow Aimeos Admin route to load

That makes me wonder. Should I have chosen a separate database or should I use just the main one? And two, does Aimeos just update the users table in Laravel and add roles or do the migrations overwrite all? If you configure a separate database for Aimeos tables, you must configure the "db-cus...
by aimeos
02 Jun 2024, 07:41
Forum: Laravel package
Topic: Can not order quantities 0.35 (mshop_stock.stocklevel = integer)
Replies: 1
Views: 150

Re: Can not order quantities 0.35 (mshop_stock.stocklevel = integer)

Yes, you are right, integer makes no sense if fractional quantities can be bought. This has been fixed in dev-master now and will be part of the next release:
https://github.com/aimeos/aimeos-core/c ... 438724a34a
by aimeos
02 Jun 2024, 06:52
Forum: Laravel package
Topic: Override Shop route to give main HomesController Route back control
Replies: 3
Views: 496

Re: Override Shop route to give main HomesController Route back control

You can turn off all route groups from Aimeos by setting them to "false" in the ./config/shop.php like you did. If you want to use a VueJS based PWA as frontend, use the JSON:API for interacting with Aimeos:
https://aimeos.org/docs/latest/frontend/jsonapi/
by aimeos
02 Jun 2024, 06:48
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 4
Views: 631

Re: Aimeos Create an new extension and Api in it.

For POST/PATCH/DELETE requests, you have to include the "_token" parameter with the Laravel X-CSRF-TOKEN value.
by aimeos
31 May 2024, 09:08
Forum: Help
Topic: Aimeos Create an new extension and Api in it.
Replies: 4
Views: 631

Re: Aimeos Create an new extension and Api in it.

Can you provide some more information?
Which Aimeos version do you use?
What API do you want to extend?
Please post examples of your GET and POST requests and responses.
by aimeos
30 May 2024, 12:43
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 11
Views: 20892

Re: Utilizing Vue2 Libraries in the Admin

Seems to be not as easy as expected. You don't want to change any files in the aimeos/ai-admin-jqadm package because they will be replaced by new versions as soon as you run "composer update". Therefore, the first step should be to get Vuetify into your own extension. The easiest way seems...
by aimeos
30 May 2024, 12:29
Forum: Laravel package
Topic: Multi Vendor Setups Only
Replies: 3
Views: 940

Re: Multi Vendor Setups Only

This updates the database structure for all sites:

Code: Select all

php artisan aimeos:setup
This creates (or updates) a new site and adds the required default data, e.g. the types:

Code: Select all

php artisan aimeos:setup domain.nl
This creates (or replaces) a site for unit testing:

Code: Select all

php artisan aimeos:setup test unittest
by aimeos
29 May 2024, 07:13
Forum: Help
Topic: Error in setup
Replies: 4
Views: 2788

Re: Error in setup

This has been fixed now and will be part of the new release today.
by aimeos
29 May 2024, 07:11
Forum: Laravel package
Topic: Utilizing Vue2 Libraries in the Admin
Replies: 11
Views: 20892

Re: Utilizing Vue2 Libraries in the Admin

What I'm seeing inside the new code in v2024.04 is instead of having a div tag with the class of "vue", components now need to be called as "is='component-name'. Also in the components defined in .js files, it looks like you switched from Vue.component('component_name')... to Aimeos....
by aimeos
29 May 2024, 07:02
Forum: Laravel package
Topic: Install Aimeos in separate database
Replies: 6
Views: 3746

Re: Install Aimeos in separate database

According to your error message, the user name isn't passed for login into the database.