cancel
Showing results for 
Search instead for 
Did you mean: 

Magento Setup error

SOLVED

Re: Magento Setup error

how you solve this ????

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.


Re: Magento Setup error

Thanks, it was very helpful.

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?

Re: Magento Setup error

extension=php_xsl.dll and extension=xsl, both mean the same.

See the versions of your php and magento. they should be compatible
together. Refer to the accepted solution in this thread.

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 :

  1. Download required PHP version  thread-safe binary (zipped) from  windows (dot) php (dot) net / download /
  2. Unzip the new PHP in XAMPP directory, with new name for PHP
  3. Backup the httpd-xampp.conffile at  xampp/apache/conf/extra directory
  4. Change the following variables/directives:
  5. PHPINIDir to be [your xampp folder]/[new version of PHP]
  6. LoadModule to be [your xampp folder]/[new version of PHP]/php5apache2_2.dll
  7. LoadFile "[your xampp folder]/[new version of PHP]/php7ts.dll"
  8. LoadFile "[your xampp folder]/[new version of PHP]/libpq.dll"
  9. LoadModule php7_module "[your xampp folder]/[new version of PHP]/php7apache2_4.dll"
  10. Save the httpd-xampp.conf Restart your XAMPP apache server.
  11. To check PHP version go to URL [localhost][Smiley Tongueort]/xampp/phpinfo.php.

 

Reference link: http://www.assuredq.com/

question

how much product I can upload in one CSV file in Magento 2?

Re: Magento Setup error

Magento is no support php 7.3, but in the setup says: support php 7.1 or later.

Re: Magento Setup error

It worked like a charm.Thank you.

Banesh

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);
        }
    }