When I add the product to the cart and go to the checkout page then sometimes it redirects to my account page with the below error message in the log file: {“message”:”Warning: session_start(): Failed to read session data: user (path:) I am using varnish for secession and cache. Here is […]
Magento
syntax error, unexpected token “match”, expecting variable#0 /httpdocs/tienda/vendor/composer/ClassLoader.php(432): ComposerAutoloadClassLoader::ComposerAutoload{closure}() #1 [internal function]: ComposerAutoloadClassLoader->loadClass() #2 /httpdocs/tienda/vendor/magento/framework/ObjectManager/Relations/Runtime.php(38): class_exists() #3 /httpdocs/tienda/vendor/magento/framework/Interception/Config/Config.php(157): MagentoFrameworkObjectManagerRelationsRuntime->has() #4 /httpdocs/tienda/vendor/magento/framework/Interception/Config/Config.php(180): MagentoFrameworkInterceptionConfigConfig->_inheritInterception() #5 /httpdocs/tienda/vendor/magento/framework/Interception/Config/Config.php(213): MagentoFrameworkInterceptionConfigConfig->hasPlugins() #6 /httpdocs/tienda/vendor/magento/framework/Interception/Config/Config.php(190): MagentoFrameworkInterceptionConfigConfig->generateIntercepted() #7 /httpdocs/tienda/vendor/magento/framework/Interception/Config/Config.php(122): MagentoFrameworkInterceptionConfigConfig->initializeUncompiled() #8 /httpdocs/tienda/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php(121): MagentoFrameworkInterceptionConfigConfig->__construct() #9 /httpdocs/tienda/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php(66): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject() #10 /httpdocs/tienda/vendor/magento/framework/ObjectManager/ObjectManager.php(70): MagentoFrameworkObjectManagerFactoryDynamicDeveloper->create() #11 /httpdocs/tienda/vendor/magento/framework/App/ObjectManager/Environment/Developer.php(84): MagentoFrameworkObjectManagerObjectManager->get() #12 /httpdocs/tienda/vendor/magento/framework/App/ObjectManagerFactory.php(191): MagentoFrameworkAppObjectManagerEnvironmentDeveloper->configureObjectManager() #13 /httpdocs/tienda/vendor/magento/framework/App/Bootstrap.php(212): MagentoFrameworkAppObjectManagerFactory->create() #14 […]
We are using Magento 2.4.5-p1 and PHP 8.1 versions. When we are running upgrade commands getting an issue of – Error flushing Varnish server. Host: "127.0.0.1". PURGE response code: 501 message: Not Implemented Does Anyone know how to resolve this issue?
Images that come from pagebuilder are not visible. Style display none is applied to images by lazyload (even though images are configured not to lazy load as per attachment) They load perfectly in html pages
After the upgrade from 2.4.3 to 2.4.5, I see that new code has been added in the upgraded forgotpassword.html that is disabling the reset button. How can I enable it please
I have setup Vanish 6 on Magento2.4.5 but it alway show 503 backend fetch fail. My nginx config: upstream fastcgi_backend { server unix:/run/php/php8.1-fpm.sock; } server { server_name mysite.com www.mysite.com *.mysite.com; listen 8080; set $MAGE_ROOT /var/www/html/ins; set $MAGE_MODE production; # or developer access_log /var/log/nginx/mysite.com-access.log; error_log /var/log/nginx/mysite.com-error.log; include /var/www/html/ins/nginx.conf.sample; } server { […]
I want to add multiple shipping methods on the checkout page based on my needs, now there is only one method with international shipping, but I want to add more custom dynamic shipping methods Any idea, how to do this?
I need to pass the value of a variable from one Observer that monitoring the cms_controller_router_match_before event to an Observer that monitoring the cms_page_render event. How can this be done without using Session Manager?