我刚刚使用我安装的发现扩展方法制作了新的joomla3.1hello 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>发布于 2013-09-24 20:10:52
我有过几次这种情况,因为禁用/卸载组件而禁用了菜单项,然后在组件升级或安装时没有重新出现。在#__menu表中可能有一个菜单项。在表中搜索组件的名称(com_helloworld?)作为标题。应该在那里找到一件东西。确保已发布的设置为1,并且component_id与#__extensions表中的组件的id匹配。
发布于 2013-09-24 19:51:20
您需要在#__extensions表中为您的组件创建一个新条目。
https://stackoverflow.com/questions/18986989
复制相似问题