- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
how you solve this ????
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
@zerode_alkhalil wrote:how you solve this ????
Its a Xampp version related issue.
See the Solution provided earlier in this post.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
Thanks, it was very helpful.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
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?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
See the versions of your php and magento. they should be compatible
together. Refer to the accepted solution in this thread.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
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 :
- Download required PHP version thread-safe binary (zipped) from windows (dot) php (dot) net / download /
- Unzip the new PHP in XAMPP directory, with new name for PHP
- Backup the httpd-xampp.conffile at xampp/apache/conf/extra directory
- Change the following variables/directives:
- PHPINIDir to be [your xampp folder]/[new version of PHP]
- LoadModule to be [your xampp folder]/[new version of PHP]/php5apache2_2.dll
- LoadFile "[your xampp folder]/[new version of PHP]/php7ts.dll"
- LoadFile "[your xampp folder]/[new version of PHP]/libpq.dll"
- LoadModule php7_module "[your xampp folder]/[new version of PHP]/php7apache2_4.dll"
- Save the httpd-xampp.conf Restart your XAMPP apache server.
- To check PHP version go to URL [localhost][
ort]/xampp/phpinfo.php.
Reference link: http://www.assuredq.com/
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
question
how much product I can upload in one CSV file in Magento 2?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
Magento is no support php 7.3, but in the setup says: support php 7.1 or later.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
It worked like a charm.Thank you.
Banesh
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento Setup error
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); } }