Closed
Description
I know that the setup system available since alpha 96 is just at the beginning and you already know some issues about it but I thought to add some in here:
- The setup page is still accessible after installing Magento
- If the setup is a kind of a "standalone" application is there any need for the
Magento_Install
module? - If I install Magento 2 over an existing database (sample data) that already contains some records in the
authorization_role
table (oldadmin_role
table), where the role_nameAdministrators
has an other id beside 1 I cannot login in the backend because the parent role is hardcoded inMagento\Setup\Model\AdminAccount
. - Is there really a need to run the data updates with the
exec
command? It seams to me like it introduces an unnecessary dependency. Some servers may not allow this. If it's necessary, maybe a check should be made and notify the user that the server does not allowexec
. - The install log file is named
install.log
. I think it's better to have a unique name. If I run 2 install processes on the same machine at the same time the file is locked by the first install and I cannot see the progress on my second install. I know this is a rare case, but still....
Activity