Closed BFG9000 closed 9 years ago
@BFG9000 , if you try it 2nd time, does it work fine or do you get same issue?
I've tried a few times now - same each time.
@BFG9000 , could you, please, try CLI version just to see if it will show more detailed error? See example of the command below (just substitute necessary values).
php setup/index.php install --db_host=localhost --db_name=magento --db_user=root --db_pass=pass --base_url=http://your.website.com/ --backend_frontname=admin --admin_firstname=Admin --admin_lastname=admin --admin_email=admin@example.com --admin_username=admin --admin_password=iamtheadmin
Ahh - you were right - I did get more detail :-
Fatal error: Maximum function nesting level of '100' reached, aborting! in C:\mage2\vendor\composer\ClassLoader.php on line 318
Thanks!
xdebug.max_nesting_level
at least to 200
(value from my config, so it should work fine) in your php.ini
Interestingly, I tried changing to 200 in my php.ini (& checked it with phpinfo), but still got exactly the same error - referring to 100...
I ended up adding :-
ini_set('xdebug.max_nesting_level', 200);
To the beginning of setup/index.php
Thanks for your help!
Did you check phpinfo in command line? It may be that your Web and CLI php use different php.ini.
I remember hitting this error too, on my first install (disabled xdebug then, of course). xdebug just seems enabled by default. Potentially magento could disable it, unless run in developer mode? Or maybe that would just make things more confusing yet.
@nyov , I'd agree that it would be more confusing and less transparent. Looks bad for me that xDebug is enabled by default... it's not needed for non-developer. Is it in WAMP?
For me, it's on a debian machine, having installed the php5-xdebug
apt package (where debian usually takes the stance "when it's installed, it's gonna be used, so let's enable it")
Selecting previously unselected package php5-xdebug.
Preparing to unpack .../php5-xdebug_2.2.5-1_amd64.deb ...
Unpacking php5-xdebug (2.2.5-1) ...
Setting up php5-xdebug (2.2.5-1) ...
php5_invoke: Enable module xdebug for fpm SAPI
php5_invoke xdebug: no action - module was disabled by maintainer for cli SAPI
Which is perfectly fine, I know about it, I disable it (and shouldn't have it on a production system later in the first place), if I forgot about it - my fault.
@nyov , then it makes sense! :) Still I would not make Magento force disabling of xDebug.
@BFG9000 , thanks for reporting this issue. We're currently working on improving error handling in Web Wizard and this is one of good use cases for us to check.
May we assume that your issue is solved and can we close the ticket?
You can indeed - & thank you again for your help.
@BFG9000 thank you
Read out all the issues and now working normally. Thanks Mage team
I have got same issue and i am using WAMP.
i am having the same issue. please someone help me.
@amanuni , do you still have this issue? @sachinsachin , could you, please, provide more information?
Hi,
My problem is resolved when i added the ini_set('xdebug.max_nesting_level', 200); in /setup/index.php
and all is run well.
Thanks,
@amanuni , thanks :) happy to hear it.
Can anyone help me This problem is coming again and again. my magento is 1.9.1.0 and my xdebug is disabled. magento installation on my localhost will stop at 93%. please help me now. @amanuni can you tell me where is xdebug.max_nesting_level ?? what is CLI ???? and when i type http://localhost/magento/index.php/install/ then it comes this..... The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
@sachinsachin , sorry for the confusion.
Under CLI I meant our command line tool. Here you can find more information how to use it, if you have access to the command line http://devdocs.magento.com/guides/v1.0/install-gde/install/install-cli.html
xdebug.max_nesting_level
is a PHP setting in your php.ini
. Or it can be a separate *.ini file for xdebug specifically (usually next to php.ini
). In order to ensure that your xDebug is disabled or its nesting level is configured properly, you can add the following script to your Magento root and access it from the browser: http://localhost/magento/info.php
// info.php
<?php
phpinfo();
Search for "xdebug" on the displayed page.
You also say that you use magento 1.9.1.0. Are you sure about the version? Could you, please, tell us how you obtained the code base? If from this repository, when was it? Here is list of Magento 2 versions - https://github.com/magento/magento2/releases
P.S.: I'd not recommend to use "localhost" as a host name because it may lead to inability to login to Admin Panel in some browsers. Better to change it to something that contains dots (IP address or magento.lh).
should i enabled xdebug or not ?? And please tell me how to change web server root directory ??? mention steps
@sachinsachin , better - disable xDebug. Or change xdebug.max_nesting_level
setting.
You don't need to change server root directory.
where should i change xdebug.max-nesting level ?? please also tell me how to change web server root directory????
Hi Sachin,
You have to add the ini_set('xdebug.max_nesting_level', 200);
In /setup/index.php And your problem will resolve let me know if you still getting the issue.
Will happy to help you.
Open in notepad++ or any editor that you are using for the work.
My problem is solved thank you but now i'm having this problem Help me!!
HI,
I have few question are you installing magento first time?
Do fresh installation use newly created database.
yes i am installing magento first time. and firstly, i have created a database. @amanuni and @buskamuza please help me.
@sachinsachin , can you open frontend? http://localhost/magento1/magento/ ?
@sachinsachin , to change "localhost" to something else (e.g., magento2.lh), you should add a virtual host in your WAMP. Here is a great step-by-step guide for this http://www.kristengrote.com/blog/articles/how-to-set-up-virtual-hosts-using-wamp
C:/Users/Kristen/Documents/Projects
or C:\Users\Kristen\Documents\Projects
from the guide should be replaced by the path where your Magento 2 code is located.
mysite.local
from the guide should be replaced with magento2.lh
or what you chose for your website (the name should include dots).
Changing "localhost" to another domain should help you avoid cookie-related issues in some browsers.
After it's done, you should be able to access Magento setup via http://magento2.lh/setup (or any other domain you used).
As you already have Magento installed, it would have your old "localhost" saved in configuration, so I'd recommend to reinstall it:
app/etc/config.php
.htaccess
file, from var
folderHope, it will help.
Ok. I assume, you may have mod_rewrite
disabled or .htaccess
directives are not allowed.
To enable mod_rewrite
:
httpd.conf
. In my case, it's located in c:\Program Files (x86)\Apache Software Foundation\Apache2.2\conf\httpd.conf
. It may be somehow different for your machine. Still name of the file should be the same.#LoadModule rewrite_module modules/mod_rewrite.so
#
, so it will be:LoadModule rewrite_module modules/mod_rewrite.so
To allow .htaccess
directives, please, tell me what version of Apache do you use (2.2 or 2.4), so I'll provide directives for it. If you're going to change "localhost" name, better do it before
@buskamuza Now i am using www.sagun/admin/ and my apache version is 2.4 but now magento installation is complete and when i type www.sagun/admin/ and log in... it keep telling that... There has been an error processing your request
Exception printing is disabled by default for security reasons. How i allow the .htaccess directives ??
@sachinsachin ,
AllowOverride All
Then you can also enable displaying errors to see the error on admin page.
For this, add the following to your .htaccess
in Magento root folder:
SetEnv MAGE_MODE developer
For regular use, better removed this setting as it decreases Magento performance.
@buskamuza My problem is solved now. Thank you for helping me out. Can anyone tell me how to add a banner slider on magento 1.9.1.0 ????
@buskamuza Please tell me How to go on Magento Connect Manager. I want to add a Banner Slider on Magento 1.9.1.0
@sachinsachin , there is no Magento Connect for Magento yet. Why are you asking about Magento 1.9.1.0?
@buskamuza ok tell me How to find magento connect manager option?? I want to add a banner slider on my website.
@sachinsachin , there is no Magento connect manager in Magento 2 yet.
@buskamuza then how i add a banner slider on my website ????
@sachinsachin , Magento 2 is in beta stage now, so it may not have some features yet.
@buskamuza ok then send me the link where i can download magento 1 please
ok and How to disable compilation on magento 2 ???? and when i am trying to install magic tool box on magento then it tell me Fatal error: Call to a member function getFieldValue() on a non-object in C:\wamp\www\magento\app\code\Magento\PageCache\Model\App\FrontController\BuiltinPlugin.php on line 92
Hi @sachinsachin this issue was regarding installation process, and not related to any Magento 1 specific questions. Closing this issues.
Starting Magento installation: File permissions check...
Enabling Maintenance Mode...
Installing deployment configuration...
Installing database schema: Schema creation/updates: Module 'Magento_Store':
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory':
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Theme':
Module 'Magento_BundleImportExport':
Module 'Magento_CacheInvalidate':
Module 'Magento_Eav':
Module 'Magento_Customer':
Module 'Magento_CatalogImportExport':
Module 'Magento_Indexer':
Module 'Magento_Cms':
Module 'Magento_Search':
Module 'Magento_Catalog':
Module 'Magento_Rule':
Module 'Magento_CatalogInventory':
Module 'Magento_CheckoutAgreements':
Module 'Magento_Payment':
Module 'Magento_CmsUrlRewrite':
Module 'Magento_Config':
Module 'Magento_ConfigurableImportExport':
Module 'Magento_Msrp':
Module 'Magento_Contact':
Module 'Magento_Cookie':
Module 'Magento_Cron':
Module 'Magento_Widget':
Module 'Magento_Bundle':
Module 'Magento_CustomerImportExport':
Module 'Magento_DesignEditor':
Module 'Magento_Developer':
Module 'Magento_Dhl':
Module 'Magento_Authorization':
Module 'Magento_Downloadable':
Module 'Magento_Quote':
Module 'Magento_Email':
Module 'Magento_Fedex':
Module 'Magento_SalesSequence':
Module 'Magento_Sales':
Module 'Magento_GoogleAnalytics':
Module 'Magento_GoogleOptimizer':
Module 'Magento_GoogleShopping':
Module 'Magento_GroupedImportExport':
Module 'Magento_GroupedProduct':
Module 'Magento_ImportExport':
Module 'Magento_CatalogRule':
Module 'Magento_User':
Module 'Magento_LayeredNavigation':
Module 'Magento_Log':
Module 'Magento_MediaStorage':
Module 'Magento_Checkout':
Module 'Magento_Multishipping':
Module 'Magento_Newsletter':
Module 'Magento_OfflinePayments':
Module 'Magento_SalesRule':
Module 'Magento_PageCache':
Module 'Magento_Captcha':
Module 'Magento_Paypal':
Module 'Magento_Persistent':
Module 'Magento_ProductAlert':
Module 'Magento_GoogleAdwords':
Module 'Magento_Reports':
Module 'Magento_RequireJs':
Module 'Magento_Review':
Module 'Magento_Rss':
Module 'Magento_CatalogWidget':
Module 'Magento_GiftMessage':
Module 'Magento_OfflineShipping':
Module 'Magento_ConfigurableProduct':
Module 'Magento_CatalogSearch':
Module 'Magento_SendFriend': Installing schema.. [ERROR] exception 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'Magento_SendFriend' for key 'PRIMARY'' in /opt/bitnami/apps/magento/htdocs/vendor/magento/zendframework1/library/Zend/Db/Statement/Pdo.php:228 Stack trace:
Next exception 'Zend_Db_Statement_Exception' with message 'SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'Magento_SendFriend' for key 'PRIMARY', query was: INSERT INTO setup_module
(module
, schema_version
) VALUES (?, ?)' in /opt/bitnami/apps/magento/htdocs/vendor/magento/zendframework1/library/Zend/Db/Statement/Pdo.php:235
Stack trace:
Install magento 2.0 beta 16 , show error. not enable xdebug
Hi,
installation incomplete while install magento2 in ubuntu 12.04
when install the module it is asking upgrade Module 'Magento_Customer and it is keep on upgrading but the process will not complete.
Starting Magento installation: File permissions check...
Enabling Maintenance Mode...
Installing deployment configuration...
Installing database schema: Schema creation/updates: Module 'Magento_Store': Installing schema..
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory': Installing schema..
Module 'Magento_Theme': Installing schema..
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav': Installing schema..
Module 'Magento_Customer': Installing schema.. Upgrading schema..
Module 'Magento_BundleImportExport':
Module 'Magento_CacheInvalidate':
Module 'Magento_AdminNotification': Installing schema..
Module 'Magento_Indexer': Installing schema..
Module 'Magento_CatalogImportExport':
Module 'Magento_Cms': Installing schema..
Module 'Magento_Rule':
Module 'Magento_Catalog': Installing schema..
Module 'Magento_Search': Installing schema.. Upgrading schema..
Module 'Magento_CatalogUrlRewrite': Installing schema..
Module 'Magento_Widget': Installing schema..
Module 'Magento_Quote': Installing schema..
Module 'Magento_CheckoutAgreements': Installing schema.. Upgrading schema..
Module 'Magento_SalesSequence': Installing schema..
Module 'Magento_CmsUrlRewrite':
Module 'Magento_Config': Installing schema..
Module 'Magento_ConfigurableImportExport':
Module 'Magento_Msrp':
Module 'Magento_Contact':
Module 'Magento_Cookie':
Module 'Magento_Cron': Installing schema..
Module 'Magento_CurrenModule 'Magento_CustomercySymbol':
Module 'Magento_Bundle': Installing schema..
Module 'Magento_CustomerImportExport':
Module 'Magento_Deploy':
Module 'Magento_Developer':
Module 'Magento_Dhl':
Module 'Magento_Authorization': Installing schema..
Module 'Magento_Downloadable': Installing schema..
Module 'Magento_ImportExport': Installing schema.. Upgrading schema..
Module 'Magento_Payment':
Module 'Magento_Email': Installing schema..
Module 'Magento_User': Installing schema.. Upgrading schema..
Module 'Magento_Fedex':
Module 'Magento_Sales': Installing schema..
Module 'Magento_CatalogInventory': Installing schema..
Module 'Magento_GoogleAnalytics':
Module 'Magento_GoogleOptimizer': Installing schema..
Module 'Magento_GroupedImportExport':
Module 'Magento_GroupedProduct':
Module 'Magento_DownloadableImportExport':
Module 'Magento_Checkout':
Module 'Magento_Integration': Installing schema..
Module 'Magento_LayeredNavigation':
Module 'Magento_MediaStorage':
Module 'Magento_CatalogRule': Installing schema..
Module 'Magento_Multishipping':
Module 'Magento_Newsletter': Installing schema..
Module 'Magento_OfflinePayments':
Module 'Magento_SalesRule': Installing schema..
Module 'Magento_PageCache':
Module 'Magento_Captcha': Installing schema..
Module 'Magento_Paypal': Installing schema..
Module 'Magento_Persistent': Installing schema..
Module 'Magento_ProductAlert': Installing schema..
Module 'Magento_Authorizenet':
Module 'Magento_Reports': Installing schema..
Module 'Magento_RequireJs':
Module 'Magento_Review': Installing schema..
Module 'Magento_Rss':
Module 'Magento_ConfigurableProduct': Installing schema..
Module 'Magento_Braintree':
Module 'Magento_OfflineShipping': Installing schema..
Module 'Magento_GoogleAdwords':
Module 'Magento_CatalogSearch': Installing schema..
Module 'Magento_SendFriend': Installing schema..
Module 'Magento_Ui': Installing schema..
Module 'Magento_Sitemap': Installing schema..
Module 'Magento_CatalogRuleConfigurable':
Module 'Magento_Swagger':
Module 'Magento_Swatches': Installing schema..
Module 'Magento_Tax': Installing schema..
Module 'Magento_TaxImportExport':
Module 'Magento_GiftMessage': Installing schema..
Module 'Magento_Translation': Installing schema..
Module 'Magento_Shipping':
Module 'Magento_Ups':
Module 'Magento_UrlRewrite': Installing schema..
Module 'Magento_EncryptionKey':
Module 'Magento_Usps':
Module 'Magento_Variable': Installing schema..
Module 'Magento_Version':
Module 'Magento_Webapi':
Module 'Magento_Weee': Installing schema..
Module 'Magento_CatalogWidget':
Module 'Magento_Wishlist': Installing schema..
Schema post-updates: Module 'Magento_Store':
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory':
Module 'Magento_Theme':
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav':
Module 'Magento_Customer':
Module 'Magento_BundleImportExport':
Module 'Magento_CacheInvalidate':
Module 'Magento_AdminNotification':
Module 'Magento_Indexer': Running recurring..
Module 'Magento_CatalogImportExport':
Module 'Magento_Cms':
Module 'Magento_Rule':
Module 'Magento_Catalog':
Module 'Magento_Search':
Module 'Magento_CatalogUrlRewrite':
Module 'Magento_Widget':
Module 'Magento_Quote':
Module 'Magento_CheckoutAgreements':
Module 'Magento_SalesSequence':
Module 'Magento_CmsUrlRewrite':
Module 'Magento_Config':
Module 'Magento_ConfigurableImportExport':
Module 'Magento_Msrp':
Module 'Magento_Contact':
Module 'Magento_Cookie':
Module 'Magento_Cron':
Module 'Magento_CurrencySymbol':
Module 'Magento_Bundle':
Module 'Magento_CustomerImportExport':
Module 'Magento_Deploy':
Module 'Magento_Developer':
Module 'Magento_Dhl':
Module 'Magento_Authorization':
Module 'Magento_Downloadable':
Module 'Magento_ImportExport':
Module 'Magento_Payment':
Module 'Magento_Email':
Module 'Magento_User':
Module 'Magento_Fedex':
Module 'Magento_Sales':
Module 'Magento_CatalogInventory':
Module 'Magento_GoogleAnalytics':
Module 'Magento_GoogleOptimizer':
Module 'Magento_GroupedImportExport':
Module 'Magento_GroupedProduct':
Module 'Magento_DownloadableImportExport':
Module 'Magento_Checkout':
Module 'Magento_Integration':
Module 'Magento_LayeredNavigation':
Module 'Magento_MediaStorage':
Module 'Magento_CatalogRule':
Module 'Magento_Multishipping':
Module 'Magento_Newsletter':
Module 'Magento_OfflinePayments':
Module 'Magento_SalesRule':
Module 'Magento_PageCache':
Module 'Magento_Captcha':
Module 'Magento_Paypal':
Module 'Magento_Persistent':
Module 'Magento_ProductAlert':
Module 'Magento_Authorizenet':
Module 'Magento_Reports':
Module 'Magento_RequireJs':
Module 'Magento_Review':
Module 'Magento_Rss':
Module 'Magento_ConfigurableProduct':
Module 'Magento_Braintree':
Module 'Magento_OfflineShipping':
Module 'Magento_GoogleAdwords':
Module 'Magento_CatalogSearch':
Module 'Magento_SendFriend':
Module 'Magento_Ui':
Module 'Magento_Sitemap':
Module 'Magento_CatalogRuleConfigurable':
Module 'Magento_Swagger':
Module 'Magento_Swatches':
Module 'Magento_Tax':
Module 'Magento_TaxImportExport':
Module 'Magento_GiftMessage':
Module 'Magento_Translation':
Module 'Magento_Shipping':
Module 'Magento_Ups':
Module 'Magento_UrlRewrite':
Module 'Magento_EncryptionKey':
Module 'Magento_Usps':
Module 'Magento_Variable':
Module 'Magento_Version':
Module 'Magento_Webapi':
Module 'Magento_Weee':
Module 'Magento_CatalogWidget':
Module 'Magento_Wishlist':
Installing user configuration...
Installing data... Data install/update: Module 'Magento_Store':
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory': Installing data..
Module 'Magento_Theme': Installing data..
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav': Installing data..
Module 'Magento_Customer': Installing data.. Upgrading data..
Here I have mentioned, My configuration file details of app/etc/config.php
<?php return array ( 'modules' => array ( 'Magento_Store' => 1, 'Magento_AdvancedPricingImportExport' => 1, 'Magento_Directory' => 1, 'Magento_Theme' => 1, 'Magento_Backend' => 1, 'Magento_Backup' => 1, 'Magento_Eav' => 1, 'Magento_Customer' => 1, 'Magento_BundleImportExport' => 1, 'Magento_CacheInvalidate' => 1, 'Magento_AdminNotification' => 1, 'Magento_Indexer' => 1, 'Magento_CatalogImportExport' => 1, 'Magento_Cms' => 1, 'Magento_Rule' => 1, 'Magento_Catalog' => 1, 'Magento_Search' => 1, 'Magento_CatalogUrlRewrite' => 1, 'Magento_Widget' => 1, 'Magento_Quote' => 1, 'Magento_CheckoutAgreements' => 1, 'Magento_SalesSequence' => 1, 'Magento_CmsUrlRewrite' => 1, 'Magento_Config' => 1, 'Magento_ConfigurableImportExport' => 1, 'Magento_Msrp' => 1, 'Magento_Contact' => 1, 'Magento_Cookie' => 1, 'Magento_Cron' => 1, 'Magento_CurrencySymbol' => 1, 'Magento_Bundle' => 1, 'Magento_CustomerImportExport' => 1, 'Magento_Deploy' => 1, 'Magento_Developer' => 1, 'Magento_Dhl' => 1, 'Magento_Authorization' => 1, 1,1 Top
Hi,
installation incomplete while install magento2 in ubuntu 12.04
when install the module it is asking upgrade Module 'Magento_Customer and it is keep on upgrading but the process will not complete.
Starting Magento installation: File permissions check...
Enabling Maintenance Mode...
Installing deployment configuration...
Installing database schema: Schema creation/updates: Module 'Magento_Store': Installing schema..
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory': Installing schema..
Module 'Magento_Theme': Installing schema..
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav': Installing schema..
Module 'Magento_Customer': Installing schema.. Upgrading schema..
Module 'Magento_BundleImportExport':
Module 'Magento_CacheInvalidate':
Module 'Magento_AdminNotification': Installing schema..
Module 'Magento_Indexer': Installing schema..
Module 'Magento_CatalogImportExport':
Module 'Magento_Cms': Installing schema..
Module 'Magento_Rule':
Module 'Magento_Catalog': Installing schema..
Module 'Magento_Search': Installing schema.. Upgrading schema..
Module 'Magento_CatalogUrlRewrite': Installing schema..
Module 'Magento_Widget': Installing schema..
Module 'Magento_Quote': Installing schema..
Module 'Magento_CheckoutAgreements': Installing schema.. Upgrading schema..
Module 'Magento_SalesSequence': Installing schema..
Module 'Magento_CmsUrlRewrite':
Module 'Magento_Config': Installing schema..
Module 'Magento_ConfigurableImportExport':
Module 'Magento_Msrp':
Module 'Magento_Contact':
Module 'Magento_Cookie':
Module 'Magento_Cron': Installing schema..
Module 'Magento_CurrenModule 'Magento_CustomercySymbol':
Module 'Magento_Bundle': Installing schema..
Module 'Magento_CustomerImportExport':
Module 'Magento_Deploy':
Module 'Magento_Developer':
Module 'Magento_Dhl':
Module 'Magento_Authorization': Installing schema..
Module 'Magento_Downloadable': Installing schema..
Module 'Magento_ImportExport': Installing schema.. Upgrading schema..
Module 'Magento_Payment':
Module 'Magento_Email': Installing schema..
Module 'Magento_User': Installing schema.. Upgrading schema..
Module 'Magento_Fedex':
Module 'Magento_Sales': Installing schema..
Module 'Magento_CatalogInventory': Installing schema..
Module 'Magento_GoogleAnalytics':
Module 'Magento_GoogleOptimizer': Installing schema..
Module 'Magento_GroupedImportExport':
Module 'Magento_GroupedProduct':
Module 'Magento_DownloadableImportExport':
Module 'Magento_Checkout':
Module 'Magento_Integration': Installing schema..
Module 'Magento_LayeredNavigation':
Module 'Magento_MediaStorage':
Module 'Magento_CatalogRule': Installing schema..
Module 'Magento_Multishipping':
Module 'Magento_Newsletter': Installing schema..
Module 'Magento_OfflinePayments':
Module 'Magento_SalesRule': Installing schema..
Module 'Magento_PageCache':
Module 'Magento_Captcha': Installing schema..
Module 'Magento_Paypal': Installing schema..
Module 'Magento_Persistent': Installing schema..
Module 'Magento_ProductAlert': Installing schema..
Module 'Magento_Authorizenet':
Module 'Magento_Reports': Installing schema..
Module 'Magento_RequireJs':
Module 'Magento_Review': Installing schema..
Module 'Magento_Rss':
Module 'Magento_ConfigurableProduct': Installing schema..
Module 'Magento_Braintree':
Module 'Magento_OfflineShipping': Installing schema..
Module 'Magento_GoogleAdwords':
Module 'Magento_CatalogSearch': Installing schema..
Module 'Magento_SendFriend': Installing schema..
Module 'Magento_Ui': Installing schema..
Module 'Magento_Sitemap': Installing schema..
Module 'Magento_CatalogRuleConfigurable':
Module 'Magento_Swagger':
Module 'Magento_Swatches': Installing schema..
Module 'Magento_Tax': Installing schema..
Module 'Magento_TaxImportExport':
Module 'Magento_GiftMessage': Installing schema..
Module 'Magento_Translation': Installing schema..
Module 'Magento_Shipping':
Module 'Magento_Ups':
Module 'Magento_UrlRewrite': Installing schema..
Module 'Magento_EncryptionKey':
Module 'Magento_Usps':
Module 'Magento_Variable': Installing schema..
Module 'Magento_Version':
Module 'Magento_Webapi':
Module 'Magento_Weee': Installing schema..
Module 'Magento_CatalogWidget':
Module 'Magento_Wishlist': Installing schema..
Schema post-updates: Module 'Magento_Store':
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory':
Module 'Magento_Theme':
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav':
Module 'Magento_Customer':
Module 'Magento_BundleImportExport':
Module 'Magento_CacheInvalidate':
Module 'Magento_AdminNotification':
Module 'Magento_Indexer': Running recurring..
Module 'Magento_CatalogImportExport':
Module 'Magento_Cms':
Module 'Magento_Rule':
Module 'Magento_Catalog':
Module 'Magento_Search':
Module 'Magento_CatalogUrlRewrite':
Module 'Magento_Widget':
Module 'Magento_Quote':
Module 'Magento_CheckoutAgreements':
Module 'Magento_SalesSequence':
Module 'Magento_CmsUrlRewrite':
Module 'Magento_Config':
Module 'Magento_ConfigurableImportExport':
Module 'Magento_Msrp':
Module 'Magento_Contact':
Module 'Magento_Cookie':
Module 'Magento_Cron':
Module 'Magento_CurrencySymbol':
Module 'Magento_Bundle':
Module 'Magento_CustomerImportExport':
Module 'Magento_Deploy':
Module 'Magento_Developer':
Module 'Magento_Dhl':
Module 'Magento_Authorization':
Module 'Magento_Downloadable':
Module 'Magento_ImportExport':
Module 'Magento_Payment':
Module 'Magento_Email':
Module 'Magento_User':
Module 'Magento_Fedex':
Module 'Magento_Sales':
Module 'Magento_CatalogInventory':
Module 'Magento_GoogleAnalytics':
Module 'Magento_GoogleOptimizer':
Module 'Magento_GroupedImportExport':
Module 'Magento_GroupedProduct':
Module 'Magento_DownloadableImportExport':
Module 'Magento_Checkout':
Module 'Magento_Integration':
Module 'Magento_LayeredNavigation':
Module 'Magento_MediaStorage':
Module 'Magento_CatalogRule':
Module 'Magento_Multishipping':
Module 'Magento_Newsletter':
Module 'Magento_OfflinePayments':
Module 'Magento_SalesRule':
Module 'Magento_PageCache':
Module 'Magento_Captcha':
Module 'Magento_Paypal':
Module 'Magento_Persistent':
Module 'Magento_ProductAlert':
Module 'Magento_Authorizenet':
Module 'Magento_Reports':
Module 'Magento_RequireJs':
Module 'Magento_Review':
Module 'Magento_Rss':
Module 'Magento_ConfigurableProduct':
Module 'Magento_Braintree':
Module 'Magento_OfflineShipping':
Module 'Magento_GoogleAdwords':
Module 'Magento_CatalogSearch':
Module 'Magento_SendFriend':
Module 'Magento_Ui':
Module 'Magento_Sitemap':
Module 'Magento_CatalogRuleConfigurable':
Module 'Magento_Swagger':
Module 'Magento_Swatches':
Module 'Magento_Tax':
Module 'Magento_TaxImportExport':
Module 'Magento_GiftMessage':
Module 'Magento_Translation':
Module 'Magento_Shipping':
Module 'Magento_Ups':
Module 'Magento_UrlRewrite':
Module 'Magento_EncryptionKey':
Module 'Magento_Usps':
Module 'Magento_Variable':
Module 'Magento_Version':
Module 'Magento_Webapi':
Module 'Magento_Weee':
Module 'Magento_CatalogWidget':
Module 'Magento_Wishlist':
Installing user configuration...
Installing data... Data install/update: Module 'Magento_Store':
Module 'Magento_AdvancedPricingImportExport':
Module 'Magento_Directory': Installing data..
Module 'Magento_Theme': Installing data..
Module 'Magento_Backend':
Module 'Magento_Backup':
Module 'Magento_Eav': Installing data..
Module 'Magento_Customer': Installing data.. Upgrading data..
Here I have mentioned, My configuration file details of app/etc/config.php
<?php return array ( 'modules' => array ( 'Magento_Store' => 1, 'Magento_AdvancedPricingImportExport' => 1, 'Magento_Directory' => 1, 'Magento_Theme' => 1, 'Magento_Backend' => 1, 'Magento_Backup' => 1, 'Magento_Eav' => 1, 'Magento_Customer' => 1, 'Magento_BundleImportExport' => 1, 'Magento_CacheInvalidate' => 1, 'Magento_AdminNotification' => 1, 'Magento_Indexer' => 1, 'Magento_CatalogImportExport' => 1, 'Magento_Cms' => 1, 'Magento_Rule' => 1, 'Magento_Catalog' => 1, 'Magento_Search' => 1, 'Magento_CatalogUrlRewrite' => 1, 'Magento_Widget' => 1, 'Magento_Quote' => 1, 'Magento_CheckoutAgreements' => 1, 'Magento_SalesSequence' => 1, 'Magento_CmsUrlRewrite' => 1, 'Magento_Config' => 1, 'Magento_ConfigurableImportExport' => 1, 'Magento_Msrp' => 1, 'Magento_Contact' => 1, 'Magento_Cookie' => 1, 'Magento_Cron' => 1, 'Magento_CurrencySymbol' => 1, 'Magento_Bundle' => 1, 'Magento_CustomerImportExport' => 1, 'Magento_Deploy' => 1, 'Magento_Developer' => 1, 'Magento_Dhl' => 1, 'Magento_Authorization' => 1, 1,1 Top
@jebaraj253 , do you still have this issue? Could you, please, clarify what means "the process will not complete"? Do you wait for a long time and nothing happens or it stops with some error? I would assume that it can be a timeout, especially, if you have xDebug enabled (it may slow-down the application significantly). Or there may happen some error, which is not displayed by the wizard.
I'd suggest:
./bin/magento setup:install --db-prefix=test_ --db-host=localhost --db-name=magento --db-user=magento --db-password=magento --base-url=http://your.host/ --backend-frontname=admin --admin-firstname=First --admin-lastname=Last --admin-email=test@m.com --admin-user=admin --admin-password=password --cleanup-database --admin-use-security-key=0
Trying a brand new install - gets to 93% & then get the error in the title - console log is below.