Search found 44 matches

by lucadambros
15 Oct 2019, 14:42
Forum: Help
Topic: Changelog 2020.x
Replies: 2
Views: 1744

Re: Changelog 2020.x

Thank you very much
by lucadambros
15 Oct 2019, 14:14
Forum: Help
Topic: Changelog 2020.x
Replies: 2
Views: 1744

Changelog 2020.x

Hi,
I saw the new changelog https://aimeos.org/docs/Developers/Changelog/2020 but in the github project the latest release is called "2018.10.23".

Is there a 2020.x version or is it an error?
by lucadambros
09 Oct 2019, 13:27
Forum: Help
Topic: [SOLVED] SQL Error after composer update
Replies: 0
Views: 47363

[SOLVED] SQL Error after composer update

Hi, I made composer update today and I got this error: ErrorSQLSTATE[42S22]: Column not found: 1054 Unknown column 'mpro.dataset' in 'field list': SELECT DISTINCT mpro."id" AS "product.id", mpro."siteid" AS "product.siteid", mpro."type" AS "prod...
by lucadambros
09 Oct 2019, 11:52
Forum: Help
Topic: DB explanation - mshop_media
Replies: 2
Views: 1773

Re: DB explanation - mshop_media

Thank you very much! :D
by lucadambros
09 Oct 2019, 10:27
Forum: Help
Topic: DB explanation - mshop_media
Replies: 2
Views: 1773

DB explanation - mshop_media

Hi, I need to know more about the mshop_media table. The field "preview" is quite hard to understand for me. How that work? I have raw data and I want to insert it into that table (links for image products). How the json is created? I mean, why sometimes you start with {"1": ... ...
by lucadambros
09 Oct 2019, 10:22
Forum: Laravel package
Topic: price-view & checkout for registered user - extend Laravel registration
Replies: 5
Views: 9322

Re: price-view & checkout for registered user - extend Laravel registration

Use the middleware Authenticate.php and put the routes you want inside the web.php with this:

Code: Select all

Route::group(['middleware' => 'MIDDLEWARE THAT CHECKS IF USER IS LOGGED'], function ()
{
// list of the routes
}
by lucadambros
01 Oct 2019, 13:13
Forum: Laravel package
Topic: Insert product into catalog right after creating it
Replies: 4
Views: 2488

Re: Insert product into catalog right after creating it

Great as always! Thank you very much!
Aimeos product is fantastic
by lucadambros
01 Oct 2019, 11:55
Forum: Laravel package
Topic: Insert product into catalog right after creating it
Replies: 4
Views: 2488

Re: Insert product into catalog right after creating it

Written code.

I think I have to override the function "save" inside

Code: Select all

 ext/ai-admin-jqadm/admin/jqadm/src/Admin/JQAdm/Product/Standard.php
by lucadambros
01 Oct 2019, 10:32
Forum: Laravel package
Topic: Insert product into catalog right after creating it
Replies: 4
Views: 2488

Insert product into catalog right after creating it

Hi, What I want: 1 - I have an array with catalog item ids 2 - I create the product 3- The product is automatically added to the catalog item I have in the array. Example: The array has the ids: 1, 2. I create the product and it will be displayed into the catalog item 1 and 2. Is that possibile? Wha...