I am facing this issue, while creating the configurable products. SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '?))' at line 3, query was: SELECT `l`.`product_id`, […]
Magento
I want to create a price rule, but instead of creating it from within the admin, I want to do it in either Setup/Patch/Data or do another way in backend. How can I accomplish this?
We had a module that created 3 specific cronjobs. This module was located in the app/code folder and we recently removed the entire module by removing the folder and then run the upgrade command. But now when we check magerun2 sys:cron:list we still see that these 3 cronjobs exist. They […]
I made a simple custom CRUD module. My table have 4 columns: id, name, action, schedule. Action is a select where I can select a controller. Schedule is a text field where I can store for example: * * * * *. This means that every row I add in […]
I’ve made a copy of a Magento folder to set up another domain, swapped the old domain name both in the database (web secure url) and in the filesystem (env.php), and pretty much everywhere I could find it (did a recursive case-insensitive grep for the subdomain name and a search […]
I have created a new child theme from Luma. The admin panel recognizes that it’s registered and I have set it up to be used for my store. One of the things I tried to achieve was changing the logo for a store, tried to define it in default.xml, and […]
I’m trying to upload a pdf in custom form, but i’m failing. My controller doesn’t seems to receive the data. <field name="pdf" sortOrder="100" formElement="fileUploader"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="source" xsi:type="string">booklet</item> </item> </argument> <settings> <elementTmpl>ui/form/element/uploader/uploader</elementTmpl> <dataType>string</dataType> <label translate="true">Booklet Pdf</label> <visible>true</visible> <required>false</required> </settings> <formElements> <fileUploader> <settings> <previewTmpl>Sesa_Booklet/image-preview</previewTmpl> <required>true</required> <uploaderConfig> […]
/** Copyright © Magento, Inc. All rights reserved. See COPYING.txt for license details. */ define([ ‘jquery’, ‘underscore’, ‘uiComponent’, ‘uiRegistry’, ‘Magento_Ui/js/modal/modal’, ‘Magento_Checkout/js/model/quote’, ‘Magento_Customer/js/model/customer’, ‘Magento_Checkout/js/model/step-navigator’, ‘Magento_Checkout/js/model/address-converter’, ‘Magento_Checkout/js/action/set-shipping-information’, ‘Magento_InventoryInStorePickupFrontend/js/model/pickup-locations-service’, ‘Magento_Checkout/js/checkout-data’ ], function ( $, _, Component, registry, modal, quote, customer, stepNavigator, addressConverter, setShippingInformationAction, pickupLocationsService, checkoutData ) { ‘use strict’; return Component.extend({ defaults: { […]
I’m having following issue that i’m not able to reproduce https://ibb.co/0M1mvQ6 I checked in system.log but i don’t have any critical warning. I made also a registration with a different email address and worked correctly Only sometimes seems that is error is triggered.. Do you have any idea about this? […]