My company’s web app maintains sessions via cookies. One of our customers uses MS Edge and wants to be able to have a completely separate session running our web app in each browser tab, for sometimes 2 but up to 3 tabs and 3 separate sessions. Getting 2 different sessions […]
Monthly Archives: September 2022
How can I make Ctrl+Alt be the third level selector, similar to Alt Gr, in Wayland? All solutions found on the internet are very specific to Xorg and any key remapping software such as AutoKey or xbindkeys will not work in Wayland This is very important in many European keyboard […]
I’ve been trying to use the Windows 10 icacls utility to do this. I did some searching here, and I found this, but it doesn’t my specific question. I tried adding a comment to this question, but I don’t have enough reputations. As an administrator on my Windows 10 Professional […]
I have this line to stream using a source to two outputs but im getting a signal for the first rtmp server but nothing for the second, what im doing wrong? ffmpeg -reconnect_at_eof 1 -reconnect_streamed 1 -reconnect 1 -reconnect_delay_max 4 -i hello.mp4 -i image.png -filter_complex "overlay=1700:1000,scale=1024:576" -vcodec libx264 -preset veryfast […]
I am upgrading from 2.4.3 to 2.4.3 p2 and just want to know, do I need both OpenSearch and Elasticsearch, or is just 1 sufficient. Thank you.
I want to put an additional sku in the product page. I have this code: <?php $product = $block->getCurrentProduct(); $sku = $product->getData('sku'); if (trim($sku) !== "") : ?> <div class="product-info-sku"> <?php echo $sku; ?> </div> <?php endif; ?> but I got this error Fatal error: Uncaught Error: Call to a […]
Parts in the header and footer are being overridden by the magento blank theme.. ie. logo and newsletter signup in the footer. I looked in the DB under the theme table and everything is identical to our production environment after upgrading a lower (staging) environment. Looked for the value to […]
Can’t succeed to make a post frontend form to work <form class="form" name="download-form" action="<?= $block->getUrl('booklets/booklet/email') ?>" method="post" data-mage-init='{"validation": {}}' > <?= $block->getBlockHtml('formkey') ?> src/vendor/magento/framework/Data/Form/FormKey/Validator.php /** * Validate form key * * @param MagentoFrameworkAppRequestInterface $request * @return bool */ public function validate(MagentoFrameworkAppRequestInterface $request) { $formKey = $request->getParam('form_key', null); var_dump($formKey); var_dump($this->_formKey->getFormKey()); die(); […]
I have a site built with Magento 2.3. In checkout cart, I want to hide the button that proceed to checkout if the quantity of a product pass the maximum quantity. How can I do this? Thank you!