-
-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP Fatal error when installing sample data #879
Comments
Let me give this a try, I have to see it myself first. |
Can reproduce at exactly the same place. I've bee running the following command:
Error message is the same:
That line is the creation of a PharData:
The
I could isolate the error to that single ctor call:
It takes a short moment until it crashes. |
Making use of the zip-file instead of the tar.gz file does not help either, with the zipfile at the same place the following error is:
That signals an error in the zip-file, which is easily confirmed:
That test reminds me to verify the tar.gz file as well:
Looks like the files provided from magento.com are invalid:
Wouldn't be the first time. However I also suspect an issue upstream in PharData perhaps worth to report (/e 73719). |
We believe that the bug reported is fixed in the stable version. It can be upgraded to it using the |
@AreDubya: Thank you for your report! |
Hello,
I have tried a few times to install the sample data, but I get the same error each time :
Choose a magento version: 13
Enter installation folder: [./magento]./
Loading from cache
Please enter the database host [localhost]:
Please enter the database username [root]: dev1
Please enter the database password []: dev1
Please enter the database name [magento]: dev1
Please enter the database port [3306]:
Please enter the table prefix []:
Install sample data? [y]: y
Loading from cache
PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 18446744073709543424 bytes) in phar:///usr/local/bin/n98-magerun.phar/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php on line 28
That's a pretty huge attempted allocation. I have 1024M as the memory_limit, but that won't cut it with the 18,446 Petabyte allocation ; )
Any idea what would cause this?
The text was updated successfully, but these errors were encountered: