Hi @mac
I think you have all the php extensions enabled.
Can you please share your technology stack configurations - what is the version of xampp then PHP and MySQL ?
Also you have downloaded Magento 2 then installing ? or installed via composer?
Hi, @Manthan Dave
I download 7.2.30 / PHP 7.2.30 from XAMPP site
and ver 2.3.5-p1 fro Magento site
Hello i test this night :
XAMPP 7.2.30 / PHP 7.2.30 with Magento 2.3.5 p1 with sample data
XAMPP 7.2.30 / PHP 7.2.30 with Magento 2.3.5 p1 without sample data
XAMPP 7.2.30 / PHP 7.2.30 with Magento 2.3.4 p2 with sample data
XAMPP 7.2.30 / PHP 7.2.30 with Magento 2.3.4 p2 without sample data
XAMPP 7.3.17 / PHP 7.3.17 with Magento 2.3.5 p1 with sample data
XAMPP 7.3.17 / PHP 7.3.17 with Magento 2.3.5 p1 without sample data
XAMPP 7.3.17 / PHP 7.3.17 with Magento 2.3.4 p2 with sample data
XAMPP 7.3.17 / PHP 7.3.17 with Magento 2.3.4 p2 without sample data
Always the same error at 51%.
I change on my php.ini :
No UAC activate on WINDOWS 10
Antivirus disabled.
This is my log where i have the same error:
@michel_plotto I am facing same type of problem and i can't find solution
Hi @michel_plotto @mac @sayurpatel3eb8
Your technology stack is correct if you are using PHP version latest 7.3
Can you check your composer version ? is it the latest one?
I have upgraded from 2.3.4 to 2.3.5-p1 and I face two to three issue and the solution of those issues is the latest technology stack.
Composer version - 1.10.5
Php version - 7.3.17
and the settings which I have mentioned above for the php.ini
Using all this tech stack I have successfully upgraded with 2.3.5-p1 and its working well.
Try with this stack and let me know if you still face any issues.
Hope it helps !
@Manthan Dave my system configuration is perfect as you say.
php 7.3.17
composer 1.10.5
magento 2.3.5-p1
but still getting error
I'm getting same error installing on IIS
PHP 7.3.13
Magento 2.3.5
Runtime limits and extensions as advised. Tried multiple versions of PHP.
I'm using the web installer. Fresh Install.
First time installing Magento to try out migrating from other platforms, but so far spent 3 days on and off just trying to install it with various issues. This one I haven't been able to get past....frustrating to say the least...
@mac @sayurpatel3eb8 @michel_plotto
Found a workaround that somebody else came up with on GibHub. I have now finally successfully installed it locally on a Windows box.
https://github.com/magento/magento2/issues/28055
Hello @greglamont5ad1
So did you tried that patch and is it worked for you ?
Adding the same over here for other members reference !
Please try following work around
Windows OS. Image Adapter try opens to image files ('open function in Gd2.php line 63). validateURLScheme function return false always because it checking 'URL' format but local files not valid for this format, so it returns false.
Find validateURLScheme function in vendor\magento\framework\Image\Adapter\Gd2.php file. at line 96. 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;
}
return true;
}
Kudos to you @greglamont5ad1
As in this thread so many users are facing this issue !
@Manthan Dave wrote:Hello @greglamont5ad1
So did you tried that patch and is it worked for you ?
Kudos to you @greglamont5ad1
As in this thread so many users are facing this issue !
Correct. Made it through the install 100%. Now on to new issues....