-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
bin/magento module:uninstall never completes #3544
Comments
How long did you wait @andrew-smart? |
I ran another test and so far i have waited 30 minutes without any further output. Not sure how long i should wait but that seems quite excessive :) |
@andrew-smart sorry for the delay, can you please give us more details about your env, like OS, and PHP version, so that we can try to reproduce this. |
@andrew-smart : have you added any repositories to composer.json? I've seen this too, and my theory is that |
@andrew-smart closing this as non-responsive. |
@mazhalai My Apologies. I have not been getting updates from this ticket. @paulerickson Yes this is a custom repo. I built it to test the new uninstall scripts within modules. Your theory is quite interesting but not sure how I can test it. |
Hi everyone @paulerickson As you said , your theory is wright, it demand in background to enter your GitHub credentials to access private repos This is what i get when i run the uninstall command line
|
The solution is to run : |
I have the same problem here, I call the bin/magento module:uninstall module_name and the command prompt stops in "Removing code from Magento codebase" too. Any sollutions or fixes discovered? Obs: All the data to be uninstalled were uninstaled |
Linking this thread to an issue I discovered last week, it might be the same problem: #5797 |
This should be reopened as it persists in 2.1.4. The workaround is Control-C on the command when it hangs at removing code, then run composer update, however this is not a solution. The module:uninstall should work properly otherwise why even have it? So sick of issues like this in magento, I have a notepad filled with workarounds on things that should just work. Test your f'ing code better before releasing it. I'm starting to think CE is just a public beta for their money grab EE. About to recommend a different platform to all my clients. Fed up. |
I've done some debugging, and it seems the problem is with the Magento repository. When calling |
@Dayssam , yes, that solution works if you canceled the |
@mazhalai can this issue be re-opened please? We have the same issue as @andrew-smart initially described. Uninstalling a module will remove the entry from composer.json, and run the database uninstall scripts, but when it attempts to remove the code it hangs with message "removing code from Magento codebase:" . One thing to note is our module has its own composer.json file where it requires and installed another codebase. As I see in vendor/magento/framework/Composer/Remove.php, Magento tries to run 'remove' composer command. FYI manually executing the command "composer remove my/module" works successfully. |
I this fixed in 2.1.7 or 2.1.8 @magento-team ? |
@andidhouse I just try it on 2.1.8 and is not fixed. |
If this issue is not yet fixed, why is it signed as closed? |
Composer stoped in load data from repo.magento.com My auth.json was not correct. This decision helped me
|
Fixed issues: - MAGETWO-97161 Static tests failed on mainline (2.3-develop)
Its 2020 and the issue is still there. Tested on 2.3.3 CE |
I'm on 2.3.5-p2 and the issue is still there. |
Hi all, Thanks to @paulerickson and @Dayssam. Their debugging helped me fix this. I found a solution or maybe a solution with limited scope. The following is my scenario.
Now here is my solution to Uninstall command issue In my {
"http-basic": {
"repo.magento.com": {
"username": "<public-key>",
"password": "<private-key>"
},
"github.com/Jehangir-Wahid/<My-Repository-Name>": {
"username": "<my-github-username>",
"password": "<my-github-password>"
}
}
} After setting it I ran
Maybe it helps some of you people. |
I'm on 2.4.1 and the issue is still there. |
Can confirm, running 2.4.1 also and this bug has been causing us some issues as well. |
How can we get this re-opened? It is definitely still an issue on 2.4.1. I have not tried it yet on 2.4.2. |
It's probably worth opening a new ticket. Tickets which got closed 5 years ago often no longer get attention even if people continue to comment on them. So opening a new ticket with exact steps of how to reproduce is probably a better idea if you want to see a fix for this one day :) |
From what I understand, uninstall scripts require rolling back all the data, deleting tables and so on. I would not recommend using it as Uninstall script is probably the last thing plugin devs look at if they do at all (I have yet to see a commercial plugin that has an uninstall script) . Just go into your composer.json and remove the line for the plugin under "require" and then run composer update. |
Magento calls composer in a self contained bufferedoutput, hiding all the output. This hides that it wants the authentication keys for repo.magento.com. To solve this issue, in your root magento folder you need to add auth.json as a new file, by copying auth.json.sample. Now run the command again. It should work now. |
Hi, We can't wait for magento to solve this for us, as it is neglected for so long and we have to do it on our own. @hostep @pbaum83 @wb-magma @live4soccer7 @tschallacka and @pmonosolo please refer to my solution posted here. Maybe it helps you. |
When auth.json is not found, an FileNotFoundException is thrown. This is to fix issue magento#3544 This will prevent workarounds like described at https://blog.tschallacka.de/2021/05/binmagento-moduleuninstall-never.html
Well technically it isn't a problem. I documented my research here: https://blog.tschallacka.de/2021/05/binmagento-moduleuninstall-never.html and technically this isn't a bug. It's listed un the pre-requisites that you need to create an auth.json https://devdocs.magento.com/guides/v2.4/install-gde/prereq/dev_install.html#authentication-file So if you get this error, you basically skipped a step from he documentation. |
@tschallacka This did not work for me in 2.4.3 CE. So technically this is still very much a bug. |
I added auth.json file, but still stuck in Removing code from Magento codebase. my Magento is version 2.4.3. |
Hi there, Please check each and every step mentioned in my solution. Most probably, you are missing something. Thanks |
Using M2.4.5-p1 and still hanging on "Removing code from Magento codebase:" |
but in the auth.json file, the "key" fields must be with "and <>? Or just with ""? |
Just with "" |
a lot of try, don't work for me :( |
Have you tried my solution? |
SURE! |
Try it and please don't miss a single step in that solution. I hope it works for you. |
I've add my key in auth.json (no github) |
It's 2023 and I have the same issue. I installed a module from a repo which is not mine. Impossible to move along and uninstall it as I get stuck at Removing code from Magento codebase:... I tried to use the credential from Github but since the module that was taken from another repro it doesn't work! Can't believe that I cannot remove a module just like that. Anyone has a solution to this? |
I remember the problem was caused by lack of credentials in a file.
I put those of the market place and those of github, solving the problem.
Focus your efforts on credentials speech
Il giorno ven 7 apr 2023 alle ore 09:53 Henrik ***@***.***>
ha scritto:
… It's 2023 and I have the same issue. I installed a module from a repo
which is not mine. Impossible to move along and uninstall it as I get stuck
at Removing code from Magento codebase:...
I tried to use the credential from Github but since the module that was
taken from another repro it doesn't work!
Can't believe that I cannot remove a module just like that. Anyone has a
solution to this?
—
Reply to this email directly, view it on GitHub
<#3544 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKYBGG6QHRIUNG3REUIWIGTW77BWLANCNFSM4B4KKLHQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
I've tested this on a fresh 2.0.2 installation.
I installed a sample module of mine using composer and then afterwards ran bin/magento module:uninstall Smartie_SampleModule
This is the output;
This is where it gets stuck. The module is removed from the composer.json file but it never gets removed from the vendor dir.
The text was updated successfully, but these errors were encountered: