Posts

Showing posts from February, 2022

Magento Installation Step by Step

  Localhost admin user name password Set this. admin Admin@123 Install Magento 2.4.1 on  Windows 10 using  Composer and Command line Localhost XAMPP Ok, Let's go...  1. Download Install XAMPP and Composer 2. Install Elasticsearch & run and test Ok E:\xampp\htdocs\elasticsearch\bin\elasticsearch.bat http://localhost:9200/ do not turn off elasticsearch 3.Download Magento 2.4 from magento official site note on windows:  Find validateURLScheme function in vendor\magento\framework\Image\Adapter\Gd2.php file. at line 86. Replace function with this: private function validateURLScheme(string $filename) : bool   {       $allowed_schemes = ['ftp', 'ftps', 'http', 'https'];       $url = parse_url($filename);       if ($url && isset($url['scheme']) && !in_array($url['scheme'], $allowed_schemes) && !file_exists($filename)) {           return false;       } ...