Search found 86 matches

by awaidqureshi
09 Jan 2020, 05:26
Forum: Laravel package
Topic: Responsive Images job Issue
Replies: 3
Views: 1507

Re: Responsive Images job Issue

Make sure that: - Your configuration contains the preview file sizes you want (https://github.com/aimeos/aimeos-core/blob/master/config/controller.php#L31-L43) - Your images are big enough (images aren't scaled up) - The records in the mshop_media table contains an "image/*" mime type - T...
by awaidqureshi
08 Jan 2020, 07:30
Forum: Laravel package
Topic: Responsive Images job Issue
Replies: 3
Views: 1507

Responsive Images job Issue

When i run aimeos:jobs media/scale command its running successfully, but its not generating all 3 previews for all products what can be the issue
Please guide me how i can generate all 3 preview images for all products

Thanks
by awaidqureshi
06 Jan 2020, 06:47
Forum: Laravel package
Topic: Getting Error While Product Adding To Basket
Replies: 1
Views: 926

Getting Error While Product Adding To Basket

I m getting this error while adding product in to the basket.

Invalid "attribute" references for product with ID "411"

What can be the issue , how can i solve this

Thanks.
by awaidqureshi
26 Dec 2019, 11:54
Forum: Laravel package
Topic: How to setup job for generate media previews for old products in aimeos 2019.10
Replies: 1
Views: 1147

How to setup job for generate media previews for old products in aimeos 2019.10

I have upgraded aimeos from 2018.10 to 2019.10

so i want to generate media previews for old products how can do that

Can you please guide me with step by step guide

Thanks
by awaidqureshi
24 Dec 2019, 14:44
Forum: Laravel package
Topic: When add laguage prefix error occurs
Replies: 1
Views: 1220

When add laguage prefix error occurs

i added these settings in shop.php for localization 'routes' => array( 'account' => array( 'prefix' => '{locale}','middleware' => ['web', 'auth']), 'default' => array( 'prefix' => '{locale}','middleware' => ['web']), 'confirm' => array( 'prefix' => '{locale}','middleware' => ['web']), 'update' => a...
by awaidqureshi
20 Dec 2019, 09:21
Forum: Laravel package
Topic: I want to show German language translation on other parts of page how can i do that with shop local
Replies: 3
Views: 1327

Re: I want to show German language translation on other parts of page how can i do that with shop local

'routes' => array( 'account' => array( 'prefix' => '{locale}'), 'default' => array( 'prefix' => '{locale}'), 'confirm' => array( 'prefix' => '{locale}'), 'update' => array( 'prefix' => '{locale}'), ), i m using this config in shop.php for localization butt after that products are not adding to baske...
by awaidqureshi
18 Dec 2019, 11:09
Forum: Laravel package
Topic: I want to show German language translation on other parts of page how can i do that with shop local
Replies: 3
Views: 1327

I want to show German language translation on other parts of page how can i do that with shop local

I want to show my other content in locale specific language in other parts of sites
like account page or basket page
how can I do that

Thanks
by awaidqureshi
18 Dec 2019, 06:23
Forum: Laravel package
Topic: How can i add product to specific category from my own controller
Replies: 4
Views: 1553

Re: How can i add product to specific category from my own controller

aimeos wrote: 17 Dec 2019, 15:16 It should be either "default" or "promotion".
Thanks for the support
Issue resolved with this
by awaidqureshi
17 Dec 2019, 06:32
Forum: Laravel package
Topic: How can i add product to specific category from my own controller
Replies: 4
Views: 1553

Re: How can i add product to specific category from my own controller

aimeos wrote: 16 Dec 2019, 18:40 This looks fishy:

Code: Select all

$listItem->setType(7);
The rest should be OK because there have been no changes in that area.
what should be in this
$listItem->setType(?)

thanks
by awaidqureshi
16 Dec 2019, 15:06
Forum: Laravel package
Topic: How can i add product to specific category from my own controller
Replies: 4
Views: 1553

How can i add product to specific category from my own controller

How can i add product to specific category from my own controller I m using aimeos 2019.10.* Please guide how can i can do that in new version Previously i was using this code to do that $data = array( 'product' => array( array( 'code' => $productCode, 'list-type' => 'default', 'list-position' => 0,...