how you solve this ????
@zerode_alkhalil wrote:how you solve this ????
Its a Xampp version related issue.
See the Solution provided earlier in this post.
Thanks, it was very helpful.
i see php.ini syntax on my friend laptop its look like
extension=php_xsl.dil and magento running perfectly
but on my laptop when i open my php.ini file its syntax is different
extension=xsl
and magento not working
so what can i do now?
First change the PHP version from 7.3 to 7.2
then run the MAGENTO 2.3 setup
Following are steps to change the PHP version & path in xampp :
Reference link: http://www.assuredq.com/
how much product I can upload in one CSV file in Magento 2?
Magento is no support php 7.3, but in the setup says: support php 7.1 or later.
It worked like a charm.Thank you.
Banesh
You have to replace the continue in the file vendor/zendframework/zend-stdlib/src/ArrayObject.php with break:
foreach ($ar as $k => $v) {
switch ($k) {
case 'flag':
$this->setFlags($v);
break;
case 'storage':
$this->exchangeArray($v);
break;
case 'iteratorClass':
$this->setIteratorClass($v);
break;
case 'protectedProperties':
continue; // <-- replace with break
default:
$this->__set($k, $v);
}
}