Manually Removed Joomla Component but Title Still Showing Up in Extension Manager

╄→尐↘猪︶ㄣ 提交于 2019-12-11 02:02:58

问题


I had a component cause a bunch of errors at installation in my Joomla website. I tried the normal way of removing it by visiting the extension manager and clicking uninstall. This did not work, so I visited these two locations and deleted all the files:

../administrator/components/com_badcomponentname

../components/com_badcomponentname

I then went into phpmyadmin and dropped all the tables that were associated with com_badcomponentname.

The only thing that is left is the listing in the extension manager. I want to be 100% done with this component, but the name still shows up. I can disable the listing and that gets it out of the components drop down list in the admin panel. Where can I go to manually remove the reference?


回答1:


You say that you dropped all the tables that were associated with the component, however if it is still showing in the Extension Manager, then go back into PhpMyAdmin, go into the table jos_extensions (jos being the prefix which may be different for you) and remove the reference in there too




回答2:


Ideally you would want to to a search on all tables for the name of the component with or without the prefix com_.

Also inspecting the install SQL files would give you a better idea if you deleted all the associated tables.




回答3:


In my case, based on @Valentin Despa's answer, I grep'd the full SQL dump of the site, and found the stale menu items in the jos_menu table.



来源:https://stackoverflow.com/questions/22014347/manually-removed-joomla-component-but-title-still-showing-up-in-extension-manage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!