Search found 40 matches

by jramirezgranada
09 Oct 2018, 19:46
Forum: Laravel package
Topic: User Address - Checkout Process
Replies: 3
Views: 1853

Re: User Address - Checkout Process

Yes, in the checkout process. I found a bug there, in the Aimeos\Client\Html\Checkout\Standard\Address\Delivery\Standard.php in this line aimeos needs to change this $item = $controller->getItem($context->getUserId(), ['address']); to this $item = $controller->getItem($context->getUserId(), ['custom...
by jramirezgranada
08 Oct 2018, 20:08
Forum: Laravel package
Topic: User Address - Checkout Process
Replies: 3
Views: 1853

User Address - Checkout Process

Hi there; I'm working in a some feature in the checkout process I saw this code in the address-delivery-body-standard.php <?php foreach ($this->get('addressDeliveryItems', []) as $id => $addr) : ?> ..... <?php endoreach; ?> I supposed that that block code load the addresses stored in the users_addre...
by jramirezgranada
19 Sep 2018, 18:45
Forum: Laravel package
Topic: DB Index Error
Replies: 8
Views: 2530

Re: DB Index Error

Any idea on this ??
by jramirezgranada
18 Sep 2018, 19:06
Forum: Laravel package
Topic: DB Index Error
Replies: 8
Views: 2530

Re: DB Index Error

There's no index on the content so the problem might be (contrary to the error message) that column is simply not long enough. The default size is 64kb. Does your text you want to insert has more than that? Your commit doesn't work, also you said that there isn't index with content, but there is a ...
by jramirezgranada
18 Sep 2018, 12:12
Forum: Laravel package
Topic: DB Index Error
Replies: 8
Views: 2530

Re: DB Index Error

Yes, content could have more than 64kb,hiw can I change that size?

Thanks
by jramirezgranada
17 Sep 2018, 17:06
Forum: Laravel package
Topic: DB Index Error
Replies: 8
Views: 2530

Re: DB Index Error

Product properties are not meant for large amounts of data (usually not more than a few bytes). If you need to store long texts, please use the mshop_text table. If you delete the index, performance will drop severely. I did it as you said in the mshop_text_table, but i got the same error about ind...
by jramirezgranada
12 Sep 2018, 19:43
Forum: Laravel package
Topic: DB Index Error
Replies: 8
Views: 2530

DB Index Error

I'm seeding some data in mshop_product_property table and some values are very long and I'm getting this error Program limit exceeded: 7 ERROR: index row requires 13632 bytes, maximum size is 8191 My questions are ? 1. Can I drop the index ? 2. What happens if I drop it ? 3. Is there a way to fix th...
by jramirezgranada
10 Sep 2018, 19:20
Forum: Laravel package
Topic: Error saving product
Replies: 1
Views: 886

Error saving product

When I'm saving a product new or existing i got this error: An exception occurred while executing ' SELECT msupli."id" AS "supplier.lists.id", msupli."parentid" AS "supplier.lists.parentid", msupli."siteid" AS "supplier.lists.siteid", msupl...
by jramirezgranada
30 Aug 2018, 21:32
Forum: Laravel package
Topic: Invalid Catalog Lines
Replies: 2
Views: 1285

Invalid Catalog Lines

Hi there; I'm trying to import categories from magento to aimeos, when i run the command i got this error php artisan aimeos:jobs catalog/import/csv Executing the Aimeos jobs for "default" Invalid catalog lines in "storage/csv": 132/132#0 /home/vagrant/sync/vendor/aimeos/aimeos-l...
by jramirezgranada
23 Aug 2018, 20:36
Forum: Laravel package
Topic: Default Aimeos Data
Replies: 3
Views: 3315

Re: Default Aimeos Data

Because we have others product types and depending on product type we need to load some product properties and attributes.