I work in a small company, lately my boss bought serval couples of Dell U2722D & U2722DE The set up is we connect to the DE panel with type c and from there dp daisy chain to the D channel, this works perfectly on my hp spectre 14 and on […]
Yearly Archives: 2022
I have the following status when I check elastic search health I believe its causing me error while doing bin/magento setup:upgrade ( getting error Could not validate a connection to elastic search. No alive nodes found in your cluster. Is there any way to have active shards in your cluster
The problem appeared on the site dump, on the front page Exception: Warning: SessionHandler::read(): open(/var/cpanel/php/sessions/ea-php73/sess_otpvdk0an5tso42ofv0df1f359, O_RDWR) failed: No such file or directory (2) in /var/www/vhosts/7.4/crazy/vendor/magento/framework/Session/SaveHandler/Native.php on line 22 in /var/www/vhosts/7.4/crazy/vendor/magento/framework/App/ErrorHandler.php:61 Stack trace: #0 [internal function]: MagentoFrameworkAppErrorHandler->handler() #1 /var/www/vhosts/7.4/crazy/vendor/magento/framework/Session/SaveHandler/Native.php(22): SessionHandler->read()
I have overridden this below file vendor/magento/module-configurable-product/view/frontend/templates/product/view/type/options/configurable.phtml I’m trying to add an appropriate simple product id to its options. <div class="control"> <select name="super_attribute[<?= $block->escapeHtmlAttr($_attribute->getAttributeId()) ?>]" data-selector="super_attribute[<?= $block->escapeHtmlAttr($_attribute->getAttributeId()) ?>]" data-validate="{required:true}" id="attribute<?= $block->escapeHtmlAttr($_attribute->getAttributeId()) ?>" class="super-attribute-select"> <option value=""><?= $block->escapeHtml(__('Choose an Option...')) ?></option> </select> </div> For example: <select name="super_attribute[93]" data-validate="{required:true}" id="attribute93" class="super-attribute-select" onchange="changeAttr(this)" aria-required="true"> […]
I’m trying to upgrade magento 2.4.2 to 2.4.3-p1 with composer 2, but I’m stuck with is error: Updating dependencies Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires allure-framework/allure-phpunit ~1.2.0 -> satisfiable by allure-framework/allure-phpunit[1.2.0, ..., 1.2.4]. - magento/product-community-edition 2.4.3-p1 requires magento/framework […]
Given a binary tree and an integer K, the task is to print all the integers at the Kth level in the tree from left… Read More The post Print all Nodes of given Binary Tree at the Kth Level appeared first on GeeksforGeeks.
Given a matrix arr[][] of size N*M The task is to find the index of the row that has the maximum unique elements. If there… Read More The post Find the row with maximum unique elements in given Matrix appeared first on GeeksforGeeks.
Given two arrays a[] and b[] of size N and an integer K. The task is to find the maximum power that can be achieved… Read More The post Maximum power in N levels from K such that defeating boss at level A[i] increases power by B[i] appeared first on […]