Search found 44 matches
- 15 Oct 2019, 14:42
- Forum: Help
- Topic: Changelog 2020.x
- Replies: 2
- Views: 2516
Re: Changelog 2020.x
Thank you very much
- 15 Oct 2019, 14:14
- Forum: Help
- Topic: Changelog 2020.x
- Replies: 2
- Views: 2516
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?
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?
- 09 Oct 2019, 13:27
- Forum: Help
- Topic: [SOLVED] SQL Error after composer update
- Replies: 0
- Views: 48898
[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...
- 09 Oct 2019, 11:52
- Forum: Help
- Topic: DB explanation - mshop_media
- Replies: 2
- Views: 2634
Re: DB explanation - mshop_media
Thank you very much!
- 09 Oct 2019, 10:29
- Forum: Laravel package
- Topic: price-view & checkout for registered user - extend Laravel registration
- Replies: 5
- Views: 11080
Re: price-view & checkout for registered user - extend Laravel registration
All the routes can be found here: https://github.com/aimeos/aimeos-larave ... routes.php
You can match all the routes you want https://laravel.com/docs/master/routing ... p-prefixes without writing them all
You can match all the routes you want https://laravel.com/docs/master/routing ... p-prefixes without writing them all
- 09 Oct 2019, 10:27
- Forum: Help
- Topic: DB explanation - mshop_media
- Replies: 2
- Views: 2634
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": ... ...
- 09 Oct 2019, 10:22
- Forum: Laravel package
- Topic: price-view & checkout for registered user - extend Laravel registration
- Replies: 5
- Views: 11080
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
}
- 01 Oct 2019, 13:13
- Forum: Laravel package
- Topic: Insert product into catalog right after creating it
- Replies: 4
- Views: 3658
Re: Insert product into catalog right after creating it
Great as always! Thank you very much!
Aimeos product is fantastic
Aimeos product is fantastic
- 01 Oct 2019, 11:55
- Forum: Laravel package
- Topic: Insert product into catalog right after creating it
- Replies: 4
- Views: 3658
Re: Insert product into catalog right after creating it
Written code.
I think I have to override the function "save" inside
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
- 01 Oct 2019, 10:32
- Forum: Laravel package
- Topic: Insert product into catalog right after creating it
- Replies: 4
- Views: 3658
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...