0

我刚刚使用发现扩展方法安装了我的新 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>
4

2 回答 2

2

我有几次因为禁用/卸载组件而禁用了菜单项,然后在升级或安装组件时它没有重新出现。表中可能有一个菜单项#__menu。在表格中搜索组件名称 ( com_helloworld?) 作为标题。应该在那里找到一个项目。确保已发布设置为 1,并且 component_id 与 #__extensions 表中组件的 id 匹配。

于 2013-09-24T20:10:52.603 回答
0

您需要在#__extensions表中为您的组件创建一个新条目。

于 2013-09-24T19:51:20.830 回答