我刚刚使用discover扩展方法创建了我的新joomla3.1 hello world扩展。但安装后我无法在joomla组件菜单中找到扩展名。
我已经尝试过这个链接工作正常。
http://localhost/COM/administrator/index.php?option=com_process
期待有用的回应
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<extension type="component" version="3.1" method="upgrade">
<name>COM_PROCESS_NAME</name>
<author>Arslan Tahir</author>
<creationDate>25 DEC 2013</creationDate>>
<copyright>GPL</copyright>
<license></license>
<auhtorEmail>aaa@outlook.com</auhtorEmail>
<version>1</version>
<description>COM_PROCESS_DESCRIPTION</description>
<administration>
<files>
<filename>index.html</filename>
<filename>process.php</filename>
</files>
<menu>COM_PROCESS_NAME</menu>
</administration>
</extension>
答案 0 :(得分:2)
由于禁用/卸载组件而导致菜单项被禁用,因此我已经有过几次这样的事情,然后在升级或安装组件时它不再出现。可能在#__menu
表中有一个菜单项。在表格中搜索您的组件名称(com_helloworld
?)作为标题。应该在那里找到一个项目。确保published设置为1,并且component_id与#__extensions表中组件的id匹配。
答案 1 :(得分:0)
您需要在 #__ extensions 表格中为您的组件创建新条目。