ryanstreet / magento2-vagrant

Vagrant Setup for Magento 2 install. All prerequisites setup and running.
GNU General Public License v2.0
84 stars 32 forks source link

installation hangs on 49%! #23

Open srlesrle opened 6 years ago

srlesrle commented 6 years ago

From inpect element script post to: http://192.168.33.10/magento2/setup/index.php/install/start

with 500 Internal Server Error

This is post data {"db":{"useExistingDb":1,"useAccess":1,"host":"localhost","user":"root","name":"magento"},"admin":{"passwordStatus":{"class":"fair","label":"Fair"},"username":"admin","email":"dada@gmail.com","password":"dada1111","confirm":"dada1111"},"store":{"timezone":"UTC","currency":"USD","language":"en_US","useSampleData":false,"cleanUpDatabase":false,"loadedAllModules":true,"showModulesControl":true,"selectAll":true,"allModules":["Magento_AdminNotification","Magento_AdvancedPricingImportExport","Magento_Authorization","Magento_Authorizenet","Magento_Backend","Magento_Backup","Magento_Braintree","Magento_Bundle","Magento_BundleImportExport","Magento_CacheInvalidate","Magento_Captcha","Magento_Catalog","Magento_CatalogImportExport","Magento_CatalogInventory","Magento_CatalogRule","Magento_CatalogRuleConfigurable","Magento_CatalogSearch","Magento_CatalogUrlRewrite","Magento_CatalogWidget","Magento_Checkout","Magento_CheckoutAgreements","Magento_Cms","Magento_CmsUrlRewrite","Magento_Config","Magento_ConfigurableImportExport","Magento_ConfigurableProduct","Magento_Contact","Magento_Cookie","Magento_Cron","Magento_CurrencySymbol","Magento_Customer","Magento_CustomerImportExport","Magento_Deploy","Magento_Developer","Magento_Dhl","Magento_Directory","Magento_Downloadable","Magento_DownloadableImportExport","Magento_Eav","Magento_Email","Magento_EncryptionKey","Magento_Fedex","Magento_GiftMessage","Magento_GoogleAdwords","Magento_GoogleAnalytics","Magento_GoogleOptimizer","Magento_GroupedImportExport","Magento_GroupedProduct","Magento_ImportExport","Magento_Indexer","Magento_Integration","Magento_LayeredNavigation","Magento_Marketplace","Magento_MediaStorage","Magento_Msrp","Magento_Multishipping","Magento_NewRelicReporting","Magento_Newsletter","Magento_OfflinePayments","Magento_OfflineShipping","Magento_PageCache","Magento_Payment","Magento_Paypal","Magento_Persistent","Magento_ProductAlert","Magento_ProductVideo","Magento_Quote","Magento_Reports","Magento_RequireJs","Magento_Review","Magento_Rss","Magento_Rule","Magento_Sales","Magento_SalesRule","Magento_SalesSequence","Magento_SampleData","Magento_Search","Magento_Security","Magento_SendFriend","Magento_Shipping","Magento_Sitemap","Magento_Store","Magento_Swagger","Magento_Swatches","Magento_SwatchesLayeredNavigation","Magento_Tax","Magento_TaxImportExport","Magento_Theme","Magento_Translation","Magento_Ui","Magento_Ups","Magento_UrlRewrite","Magento_User","Magento_Usps","Magento_Variable","Magento_Vault","Magento_Version","Magento_Webapi","Magento_WebapiSecurity","Magento_Weee","Magento_Widget","Magento_Wishlist"],"errorFlag":false,"showError":false,"selectedModules":["Magento_AdminNotification","Magento_AdvancedPricingImportExport","Magento_Authorization","Magento_Authorizenet","Magento_Backend","Magento_Backup","Magento_Braintree","Magento_Bundle","Magento_BundleImportExport","Magento_CacheInvalidate","Magento_Captcha","Magento_Catalog","Magento_CatalogImportExport","Magento_CatalogInventory","MagenShow more

srlesrle commented 6 years ago

I even did install with composser in other map and other database and I got the same, it only hangs on 50% (Module 'Magento_Directory': Installing data... ). Plus I changed from chrome to safari, because in chrome didn't even want to go from custumize the shop step 4

ultrono commented 6 years ago

Got exactly the same issue. Resolved by editing the max execution time within the php.ini (at /etc/php/7.0/apache2/php.ini).

Currently its set at 30 seconds, which I upped to 360 seconds. Restarted the server and the setup installed without issue.

medmek commented 5 years ago

Got exactly the same issue. Resolved by editing the max execution time within the php.ini (at /etc/php/7.0/apache2/php.ini).

Currently its set at 30 seconds, which I upped to 360 seconds. Restarted the server and the setup installed without issue.

Does that mean that for using magento setup cli I should be doing the same in /etc/php/7.0/cli/php.ini or there's another param that should be set ?

Thank you