Search found 85 matches

by krzysiekp
29 Jun 2023, 10:53
Forum: Laravel package
Topic: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem
Replies: 3
Views: 5308

Re: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem

aimeos-extensions/new-ext dev-master Aimeos new-ext extension aimeos/ai-admin-jqadm 2021.10.19 Aimeos Vue.js+Bootstrap admin interface aimeos/ai-admin-jsonadm 2021.10.5 Aimeos ai-admin-jsonadm extension aimeos/ai-client-html 2021.10.20 Aimeos ai-client-html extension aimeos/ai-client-jsonapi 2021.1...
by krzysiekp
29 Jun 2023, 09:38
Forum: Laravel package
Topic: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem
Replies: 3
Views: 5308

aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem

I have aimeos/aimeos-laravel ver. 2021.10.7. After composer update appeared to me "Found 6 security vulnerability advisories affecting 3 packages". After doing composer audit i have something like this:
Image

How to fix it ?
by krzysiekp
09 Dec 2022, 10:36
Forum: Laravel package
Topic: Breakdown of products into individual entries in the mshop_order_base_product table
Replies: 1
Views: 431

Breakdown of products into individual entries in the mshop_order_base_product table

Is it possible to do this if someone orders product A in the amount of 3 pieces, so that in the mshop_order_base_product table there will be 3 entries of 1 piece each instead of 1 entry with 3 pieces ?
by krzysiekp
21 Nov 2022, 20:13
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 1684

Re: Aimeos 2021.07 database transaction

So when will the release of the new version 2021.10 with these fixes be?
by krzysiekp
21 Nov 2022, 08:03
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 1684

Re: Aimeos 2021.07 database transaction

It's working but now I use:

Code: Select all

 "aimeos/aimeos-laravel": "2021.10.6"
and

Code: Select all

"aimeos/aimeos-core": "2021.10.x-dev"
Maybe I should update aimeos/aimeos-laravel to version 2021.10.x-dev as well ?
by krzysiekp
18 Nov 2022, 13:46
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 1684

Re: Aimeos 2021.07 database transaction

After composer update to 2021.10 version when I execute below command: php artisan aimeos:setup I receive error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'statuspayment' in 'where clause': UPDATE "mshop_order_base_product" SET "statuspayment" = -1 WHERE "status...
by krzysiekp
18 Nov 2022, 07:57
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 1684

Re: Aimeos 2021.07 database transaction

What exact steps do I need to follow outside of composer to upgrade from 2021.07 to 2021.10?
How big are the differences between 2021.07 and 2021.10 ?
by krzysiekp
16 Nov 2022, 17:34
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 1684

Aimeos 2021.07 database transaction

How to do database transaction in Aimeos 2021.07 ? I have a code: $orderCntl = \Aimeos\Controller\Frontend::create($this->context, 'order' ); $basketCntl = \Aimeos\Controller\Frontend::create($this->context, 'basket' ); $this->setAddress($req); $basket = $basketCntl->store(); //begin transaction $or...
by krzysiekp
01 Nov 2022, 09:51
Forum: Laravel package
Topic: Order number in database
Replies: 1
Views: 437

Order number in database

I want save custom order number in table. Which column is the best for it ? Maybe I should create a new column ?