Magento 2 RMA (Return Merchandise Authorization) allows non-login customers to return items, the customers who do not have accounts or registered users but have placed the orders , Now, they want to return their purchased items, now able to send RMA requests (to require for returning/replacing purchased items) easily.
Unable to apply data patch Magento\Theme\Setup\Patch\Data\RegisterThemes for module Magento_Theme. Original exception message: Wrong file
In Gd2.php line 64:
Wrong file
Error format as below
Solution: Find validateURLScheme function in vendor\magento\framework\Image\Adapter\Gd2.php file. at line 96. Replace function with this: !file_exists($filename)
Replace existing validateURLScheme function with modified validateURLScheme function as per below code
and refresh your front website or press F5, you will see an output on your screen.
It Means, Magento 2 Redis working fine , if display like after command
[3] Type redis-cli ping
and you’ll get a reply PONG which means everything is looking good.
[4] Type php -m | grep redis
by which you’ll see redis in reply, which confirms that the PHP Redis Extension is ready to go.
[5] Type redis-cli FLUSHALL
if you need to clear Redis cache, simply type redis-cli FLUSHALL and an OK reply will confirm that your cache has been cleared successfully.
[6] To check Redis Version Type redis-server -v
[7] Default Port used by Redis 6379
[8] Other Important Redis command as below
redis-cli info–Complete info about the redis-instance redis-cli info server–Server Information, cersions, configs, binary redis-cli info clients–Connected clients redis-cli info memory–Statistics about memory usage and limits redis-cli info persistence–Info about RDB and AOF redis-cli info stats–Connection, network, keyspace statistics redis-cli info replication–Replication settings and status