Skip to content

magento man

How ignore Deprecated Functionality: Optional parameter $data declared before required parameter

As we know Magento latest version 2.4.5 version is compatible with PHP-8.x. When running setup:di: compile, it throws an exception Deprecated Functionality: Optional parameter $data declared before required parameter $requiredVarible in file on line 10 I know its coding standing… Read More »How ignore Deprecated Functionality: Optional parameter $data declared before required parameter

Updating from 2.3.5 to 2.4.4 gives magento/framework 102.0.5 requires php ~7.1.3||~7.2.0||~7.3.0 error

Magento 2.3.5 I am trying to update from Magento 2.3.5 to Magento 2.4.4-p2. The commands I executed are: composer require magento/product-community-edition=2.4.4-p2 –no-update –use-default-magento-values composer update I am running PHP 7.4 and the error I get is: magento/framework 102.0.5 requires php… Read More »Updating from 2.3.5 to 2.4.4 gives magento/framework 102.0.5 requires php ~7.1.3||~7.2.0||~7.3.0 error

Are there other acts similar to the DMCA Act ?

Some countries in Eastern Europe have allowed individuals to host illegally stolen data in their data centers. For example, they illegally h… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1883214&goto=newpost

Crocweb after 8 years

Hey guys I just want to share my experience with crocweb, I opened up a thread a long time ago and I’m still using them as my hosting … | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1883171&goto=newpost

Cron class not found

My cronjob is defined as follows: <?xml version=”1.0″ ?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Cron:etc/crontab.xsd”> <group id=”default”> <job instance=”VendorModuleModelStatus” method=”update” name=”vendor_module_status_update”> <schedule>0 */2 * * *</schedule> </job> </group> </config> Class VendorModuleModelStatus exists and manual test below works fine: <?php declare(strict_types=1); use MagentoFrameworkAppBootstrap; use… Read More »Cron class not found