为什么我在组件菜单中丢失了我的新joomla hello world扩展名?

时间:2013-09-24 16:22:25

标签: joomla joomla-extensions

我刚刚使用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>

2 个答案:

答案 0 :(得分:2)

由于禁用/卸载组件而导致菜单项被禁用,因此我已经有过几次这样的事情,然后在升级或安装组件时它不再出现。可能在#__menu表中有一个菜单项。在表格中搜索您的组件名称(com_helloworld?)作为标题。应该在那里找到一个项目。确保published设置为1,并且component_id与#__extensions表中组件的id匹配。

答案 1 :(得分:0)

您需要在 #__ extensions 表格中为您的组件创建新条目。