Search found 7971 matches

by aimeos
02 Jun 2024, 07:41
Forum: Laravel package
Topic: Can not order quantities 0.35 (mshop_stock.stocklevel = integer)
Replies: 1
Views: 68

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

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

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

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

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

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

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

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

Re: Install Aimeos in separate database

According to your error message, the user name isn't passed for login into the database.
by aimeos
29 May 2024, 06:58
Forum: Help
Topic: Products Not Displaying in Aimeos Frontend
Replies: 2
Views: 1796

Re: Products Not Displaying in Aimeos Frontend

Your custom routes are likely to be the problem and there's no need to define those routes. Just follow the installation instructions till the end and you should get a fully working installation:
https://github.com/aimeos/aimeos-laravel#installation