1

I have installed Version 2.3.5-p1 community edition

now I am getting the following error

Installation is incomplete. Check the console log for errors before trying again.

1 Answers1

0

enter image description here

if above is your problem then you can follow this

vendor\magento\framework\Image\Adapter\Gd2.php file. at line 96

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;
      }
  return true;

}

To understand this issue in detail please follow my question where lots of user has ans that why this issue has occurred

Installation error In magento 2.3.5

Pramod
  • 1,464
  • 1
  • 11
  • 38