Magento 2 reindexer stuck on processing status. Vikas Pandey 4:08 AM Add Comment Vikas Pandey Run this below query on magento 2 database. update indexer_state set status = 'invalid' where indexer_id = 'indexer_id_nam... Read More
Get total execution time of any PHP Script. Vikas Pandey 4:04 AM Add Comment Vikas Pandey Using this below script we can easily calculate execution time of php script. $time_start = microtime(true); // Add script which tim... Read More
Magento 2 print log with zend library Vikas Pandey 3:58 AM Add Comment Vikas Pandey We can easily print log in magento 2 using below code on any controller, Model, Plugins, Helper. $writer = new \Zend\Log\Writer\Stream... Read More