We are facing a MySQL database connectivity issue in Mulesoft, the mule has two types of database transactions. one is to the mule’s server( Self ) database and the other one is to the remote server database. Recently we upgraded MyQL 5.7 to 8.0 in the remote server, After that […]
Magento
I have a magento 2.4.6-p3 instance with php8.2 I have installed superdav42 / magento-image-quality for support of GraphicsMagick Image processing. I am having this is issue when trying to print PDF from orders: Deprecated Functionality: Gmagick::setcompressionquality(): Passing null to parameter #1 ($quality) of type int is deprecated in /app/code/DevStone/ImageQuality/Image/Adapter/GraphicsMagick.php on […]
I’m using many queues and configure Magento to use separate consumers for every queue. It works well. But every few days it probably misses all consumer locks and spawns new processes for all queues. After a couple of weeks I see the following process list: Load average: 1.60 1.51 1.23 […]
I’ve read tons of forum posts on this topic, but they all seem to be specific to the module or process and I can’t find this one. How would I go about trouble-shooting and fixing this? Here is the full error: PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add […]
My patch adds new attribute to products. I want it to be enabled on every product by default. However, it is always disabled on sample data products and works as intended when I try to add a completely new product from the admin panel. How to fix it? <?php namespace […]
Magento 2.4.5-p5 with MariaDB. I regularily get this error: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction, query was: DELETE FROM `inventory_pickup_location_quote_address` WHERE (address_id = ...) When I check the table inventory_pickup_location_quote_address, it’s empty. This seems to be a table from the InventoryInStorePickupQuote module […]
I have created a custom module and have used UI component to display store view field in Form page. I am facing this issue only in Production Mode. When I open the Edit form page the Store View UI component does not show with selected value. I checked the Data […]
I have a small problem and don’t know how to implement redirect based on selected language (as a multiple store views there are few languages: en, lt,lv). The file located in app/design/frontend/WDMarket/saules_aptieka/Magento_Checkout/web/template/minicart/content.html and the code that need to be changed <ifnot args="getCartParam('summary_count')"> <div class="empty-bag-img"></div> <strong class="" translate="'You have no items […]
I’m creating a rest API and I need to add a custom columns to the customer_entity table and save the value in that fields within API request. Сreated new attributes in the customer_entity table using UpgradeSchema: public function upgrade(SchemaSetupInterface $setup, ModuleContextInterface $context) { $installer = $setup; $installer->startSetup(); if (version_compare($context->getVersion(), '1.0.0', […]