J2.5 talk:Developing a MVC Component/Developing a Basic Component
From Joomla! Documentation
(Difference between revisions)
(→Component name in manifestfile has to be conform) |
|||
| Line 6: | Line 6: | ||
It will matter at least in the menu manager, where I discovered this problem. | It will matter at least in the menu manager, where I discovered this problem. | ||
| + | |||
| + | == Archive is created for version 1.6 instead of 2.5 == | ||
| + | |||
| + | In the section "''Packaging an installation zip file''", archive file offered as an example (located here: http://joomlacode.org/gf/download/frsrelease/11394/58225/com_helloworld-1.6-part01.zip) contains an XML file which has a line: | ||
| + | |||
| + | '''<extension type="component" version="1.6.0" method="upgrade">''' | ||
| + | |||
| + | instead of | ||
| + | |||
| + | '''<extension type="component" version="2.5.0" method="upgrade">''' | ||
| + | |||
| + | which should be fixed, I guess. | ||
Revision as of 17:46, 17 May 2012
Component name in manifestfile has to be conform
In Joomla 1.6 the component name specified in the manifest file has to follow the pattern 'com_componentname'. So here it should be
<name>com_helloworld</name>
It will matter at least in the menu manager, where I discovered this problem.
Archive is created for version 1.6 instead of 2.5
In the section "Packaging an installation zip file", archive file offered as an example (located here: http://joomlacode.org/gf/download/frsrelease/11394/58225/com_helloworld-1.6-part01.zip) contains an XML file which has a line:
<extension type="component" version="1.6.0" method="upgrade">
instead of
<extension type="component" version="2.5.0" method="upgrade">
which should be fixed, I guess.